diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..3e75bda --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,51 @@ +name: Deploy Blazor App to GitHub Pages + +on: + push: + branches: + - 'main' + workflow_dispatch: + +permissions: + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup .NET SDK + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '9.0.x' + + - name: Publish Blazor WebAssembly + run: dotnet publish NorModifierWeb/NorModifierWeb.csproj -c Release -o publish + + - name: Copy index.html to 404.html (for SPA routing) + run: cp publish/wwwroot/index.html publish/wwwroot/404.html + + - name: Upload artifact for GitHub Pages + uses: actions/upload-pages-artifact@v3 + with: + path: publish/wwwroot + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 4b2c31e..6637b43 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ ################################################################################ /.vs -/PS5 NOR Modifier/bin/ -/PS5 NOR Modifier/obj/ \ No newline at end of file +bin +obj diff --git a/NorModifierLib/Data/BaseError.cs b/NorModifierLib/Data/BaseError.cs new file mode 100644 index 0000000..6964440 --- /dev/null +++ b/NorModifierLib/Data/BaseError.cs @@ -0,0 +1,617 @@ +namespace NorModifierLib.Data; + +/// +/// Base class containing the raw values for error codes retrieved both NOR dumps and UART communication. +/// +public abstract class BaseError +{ + /// + /// The raw error code value. + /// + public abstract uint RawCode { get; } + + /// + /// Unknown, labled as RTC in documentation. + /// + public abstract uint Rtc { get; } + + /// + /// The raw power state value. + /// + public abstract uint RawPowerState { get; } + + /// + /// The raw error state value. + /// + public abstract uint RawBootCause { get; } + + /// + /// The raw sequence number value. + /// + public abstract ushort RawSequenceNumber { get; } + + /// + /// The raw device power management value. + /// + public abstract ushort RawDevicePowerManagement { get; } + + /// + /// The raw chip temperature value. + /// + public abstract ushort RawChipTemperature { get; } + + /// + /// The raw environment temperature value. + /// + public abstract ushort RawEnvironmentTemperature { get; } + + /// + /// Retrieves the description of the error code from the dictionary. + /// + /// The raw error code + /// Description for the error code if it is known + protected static string GetErrorCodeDescription(uint errorCode) + { + // Check if the error code is in the dictionary + if (_errorCodeDescriptions.TryGetValue(errorCode, out var description)) + { + return description; + } + + // Truncate 2 of the least significant bytes and check the second dictionary + if (_secondaryErrorCodeDescriptions.TryGetValue(errorCode >> 16, out var secondaryDescription)) + { + return secondaryDescription; + } + + return "Unknown Error Code"; + } + + public static implicit operator string(BaseError error) => error.ToString(); + public abstract override string ToString(); + + + /// + /// Lookup for when the entire error code is known + /// + protected static readonly Dictionary _errorCodeDescriptions = new() + { + { 0x80000001, "Thermal Sensor Fail - NaN SOC" }, + { 0x80000004, "AC/DC Power Fail" }, + { 0x80000005, "Main SoC CPU Power Fail" }, + { 0x80000006, "Main SoC GFX Power Fail" }, + { 0x80000007, "Main SoC Thrm High Temperature Abnormality" }, + { 0x80000008, "Drive Dead Notify Timeout" }, + { 0x80000009, "AC In Detect(12v)" }, + { 0x8000000A, "VRM HOT Fatal" }, + { 0x8000000B, "Unexpected Thermal Shutdown in state that Fatal OFF is not allowed" }, + { 0x8000000C, "MSoC Temperature Alert" }, + { 0x80000024, "MEMIO(2) Init FAIL(SoC) (?)" }, + { 0x80050000, "VRM CPU (2)" }, + { 0x80060000, "VRM GPU(6)" }, + { 0x80810001, "FORCE_Fatal_Off - PSQ Error" }, + { 0x80810002, "PSQ NVS Access Error" }, + { 0x80810013, "PSQ ScCmd DRAM Init Error" }, + { 0x80810014, "PSQ ScCmd Link Up Failure" }, + { 0x80830000, "Power Group 2 Init Fail (?)" }, + { 0x80870001, "Titania RAM Protect Error" }, + { 0x80870002, "Titania RAM Parity Error" }, + { 0x80870003, "Titania Boot Failed : Couldn't read Chip Revision." }, + { 0x80870004, "Titania Boot Failed : Couldn't read error information." }, + { 0x80870005, "Titania Boot Failed : State Error" }, + { 0x808D0000, "Thermal Shutdown : Main SoC" }, + { 0x808D0001, "Thermal Shutdown : Local Sensor 1" }, + { 0x808D0002, "Thermal Shutdown : Local Sensor 2" }, + { 0x808D0003, "Thermal Shutdown : Local Sensor 3" }, + { 0x808E0000, "EAP_Fail (SSD_CON)" }, + { 0x808E0001, "EAP_Fail (SSD_CON)" }, + { 0x808E0002, "EAP_Fail (SSD_CON)" }, + { 0x808E0003, "EAP_Fail (SSD_CON)" }, + { 0x808E0004, "EAP_Fail (SSD_CON)" }, + { 0x808E0005, "EAP_Fail (SSD_CON) - Sig 1" }, + { 0x808E0006, "EAP_Fail (SSD_CON)" }, + { 0x808E0007, "EAP_Fail (SSD_CON)" }, + { 0x808F0001, "SMCU (SSD_CON > EMC) (?)" }, + { 0x808F0002, "SMCU (SSD_CON > EMC) (?)" }, + { 0x808F0003, "SMCU (SSD_CON > EMC) (?)" }, + { 0x808F00FF, "SMCU (SSD_CON > EMC) (?)" }, + { 0x80C00114, "WatchDog For SoC" }, + { 0x80C00115, "WatchDog For EAP" }, + { 0x80C0012C, "BD Drive Detached" }, + { 0x80C0012D, "EMC Watch Dog Timer Error" }, + { 0x80C0012E, "ADC Error (Button)" }, + { 0x80C0012F, "ADC Error (BD Drive)" }, + { 0x80C00130, "ADC Error (AC In Det)" }, + { 0x80C00131, "USB Over Current" }, + { 0x80C00132, "FAN Storage Access Failed" }, + { 0x80C00133, "USB-BT FW Header Invalid Header" }, + { 0x80C00134, "USB-BT BT Command Error" }, + { 0x80C00135, "USB-BT Memory Malloc Failed" }, + { 0x80C00136, "USB-BT Device Not Found" }, + { 0x80C00137, "USB-BT MISC Error" }, + { 0x80C00138, "Titania Interrupt HW Error" }, + { 0x80C00139, "BD Drive Eject Assert Delayed" }, + { 0x80801101, "RAM GDDR6 1" }, + { 0x80801102, "RAM GDDR6 2" }, + { 0x80801103, "RAM GDDR6 1 2" }, + { 0x80801104, "RAM GDDR6 3" }, + { 0x80801105, "RAM GDDR6 1 3" }, + { 0x80801106, "RAM GDDR6 2 3" }, + { 0x80801107, "RAM GDDR6 1 2 3" }, + { 0x80801108, "RAM GDDR6 4" }, + { 0x80801109, "RAM GDDR6 1 4" }, + { 0x8080110A, "RAM GDDR6 2 4" }, + { 0x8080110B, "RAM GDDR6 1 2 4" }, + { 0x8080110C, "RAM GDDR6 3 4" }, + { 0x8080110D, "RAM GDDR6 1 3 4" }, + { 0x8080110E, "RAM GDDR6 2 3 4" }, + { 0x8080110F, "RAM GDDR6 1 2 3 4" }, + { 0x80801110, "RAM GDDR6 5" }, + { 0x80801111, "RAM GDDR6 1 5" }, + { 0x80801112, "RAM GDDR6 2 5" }, + { 0x80801113, "RAM GDDR6 1 2 5" }, + { 0x80801114, "RAM GDDR6 3 5" }, + { 0x80801115, "RAM GDDR6 1 3 5" }, + { 0x80801116, "RAM GDDR6 2 3 5" }, + { 0x80801117, "RAM GDDR6 1 2 3 5" }, + { 0x80801118, "RAM GDDR6 4 5" }, + { 0x80801119, "RAM GDDR6 1 4 5" }, + { 0x8080111A, "RAM GDDR6 2 4 5" }, + { 0x8080111B, "RAM GDDR6 1 2 4 5" }, + { 0x8080111C, "RAM GDDR6 3 4 5" }, + { 0x8080111D, "RAM GDDR6 1 3 4 5" }, + { 0x8080111E, "RAM GDDR6 2 3 4 5" }, + { 0x8080111F, "RAM GDDR6 1 2 3 4 5" }, + // { 0xFFFFFFFF, "No Error" }, + }; + + /// + /// More 'generic' error codes, where the two least significant bytes are not relevant. + /// + protected static readonly Dictionary _secondaryErrorCodeDescriptions = new() + { + { 0x8005, "VRM CPU (2) (?)" }, + { 0x8006, "VRM GPU(6) (?)" }, + { 0x8080, "Fatal Shutdown by OS request" }, + { 0x8087, "Titania ScCmd Response Error" }, // Actually 808710XX + { 0x8088, "Titania Boot EAP Error" }, // Actually 8088X[A-F]{3} + { 0x8089, "Titania Boot EFC Error" }, // Actually 8089X[A-F]{3} + { 0x808A, "Titania Temperature Error" }, + { 0x808B, "Titania Watch Dog Timer" }, + { 0x808C, "USB Type-C Error" }, + { 0x8090, "Fatal Shutdown - OS CRASH" }, + { 0x8091, "SSD PMIC Error" }, + { 0xC001, "Main SoC Access Error (I2C)" }, + { 0xC002, "Main SoC Access Error (SB-TSI I2C)" }, + { 0xC003, "Main SoC Access Error (SB-RMI)" }, + { 0xC00B, "Serial Flash Access Error" }, + { 0xC00C, "VRM Controller Access Error" }, + { 0xC00D, "PMIC (Subsystem) Access Error" }, + { 0xC010, "Flash Controller Access Error" }, + { 0xC011, "Potentiometer Access Error" }, + { 0xC015, "PCIe Access Error" }, + { 0xC016, "PMIC (SSD) Access Error" }, + { 0xC081, "HDMI Tx Access Error" }, + { 0xC090, "USB Type-C PD Controller Access Error" }, + { 0xC091, "USB Type-C USB/DP Mux Access Error" }, + { 0xC092, "USB Type-C Redriver Access Error" }, + { 0xC0FE, "Dummy" }, + }; + + /// + /// Retrieves the descirption for the first half of the power state from the dictionary. + /// + /// The raw power state + /// Description for the power state if it is known + protected static string GetPowerStateDescriptionA(uint powerState) + { + // Check if the power state is in the dictionary + if (_powerStateDescriptionsA.TryGetValue(powerState, out var description)) + { + return description; + } + + // Mask the least significant nibble and check the secondary lookup + if (_powerStateDesciprtionsSecondaryA.TryGetValue(powerState & 0xF0, out var secondaryDescription)) + { + return secondaryDescription; + } + + return "Unknown Power State"; + } + + /// + /// Lookup for the power state + /// + protected static readonly Dictionary _powerStateDescriptionsA = new() { + { 0x00, "SysReady" }, + { 0x01, "MaOnStby" }, + { 0x20, "NOR" }, + { 0x30, "NOR" }, + { 0x40, "EAP_Rdy" }, + { 0xFF, "HstOsOFF" }, + }; + + /// + /// Certain ranges of power states are not well defined, so we use a secondary lookup to get the description. + /// The least significant nibble is masked out, and the remaining bits are used. + /// + protected static readonly Dictionary _powerStateDesciprtionsSecondaryA = new() { + //0x10-1F - PSP + { 0x10, "PSP" }, + + //0x50-BF - Kernel + { 0x50, "Kernel" }, + { 0x60, "Kernel" }, + { 0x70, "Kernel" }, + { 0x80, "Kernel" }, + { 0x90, "Kernel" }, + { 0xA0, "Kernel" }, + { 0xB0, "Kernel" }, + + //0xC0-FE - IntPrcss + { 0xC0, "IntPrcss" }, + { 0xD0, "IntPrcss" }, + { 0xE0, "IntPrcss" }, + { 0xF0, "IntPrcss" }, + }; + + /// + /// Lookup for the second half of the power state + /// + protected static readonly Dictionary _powerStateDescriptionsB = new() { + { 0x00, "ACIN_L Before Standby" }, + { 0x01, "STANDBY" }, + { 0x02, "PG2_ON" }, + { 0x03, "EFC_ON" }, + { 0x04, "EAP_ON" }, + { 0x05, "SOC_ON" }, + { 0x06, "ERROR_DET" }, + { 0x07, "FATAL_ERRO" }, + { 0x08, "NEVER_BOOT" }, + { 0x09, "FORCE_OFF" }, + { 0x0A, "FORCE_OFF BT Firmware Download" } + }; + + /// + /// Lookup for the boot cause + /// + protected static readonly Dictionary _bootCauseDescriptions = new() + { + { 0x40000000, "DEV UART" }, + { 0x00080000, "BT (Bluetooth)" }, + { 0x00040000, "HDMI-CEC" }, + { 0x00020000, "EAP" }, + { 0x00010000, "SoC" }, + { 0x00000400, "Eject Button" }, + { 0x00000200, "Disc Loaded" }, + { 0x00000100, "Power Button" }, + { 0x00000001, "Boot-Up at power-on" } + }; + + /// + /// Lookup for the sequence number + /// + protected static readonly Dictionary _sequenceDescriptions = new() { + { 0x2002, "EmcBootup" }, + { 0x2067, "EmcBootup" }, + { 0x2064, "EmcBootup, FATAL OFF" }, + { 0x218E, "EmcBootup" }, + { 0x2003, "Subsystem Peripheral Initialize" }, + { 0x2005, "Subsystem Peripheral Initialize" }, + { 0x2004, "Subsystem Peripheral Initialize" }, + { 0x2008, "aEmcTimerIniti" }, + { 0x2009, "aEmcTimerIniti" }, + { 0x200A, "aEmcTimerIniti" }, + { 0x200B, "aEmcTimerIniti" }, + { 0x200C, "aPowerGroup2On 1" }, + { 0x2109, "aPowerGroup2On 1" }, + { 0x200D, "aPowerGroup2On 1" }, + { 0x2011, "aPowerGroup2On 1" }, + { 0x200E, "aPowerGroup2On 1, Subsystem PG2 reset" }, + { 0x200F, "aPowerGroup2On 1" }, + { 0x2010, "aPowerGroup2On 1, Subsystem PG2 reset" }, + { 0x202E, "aPowerGroup2On 1, Subsystem PG2 reset" }, + { 0x2006, "aPowerGroup2On 1, Subsystem PG2 reset" }, + { 0x21AF, "aPowerGroup2On 1" }, + { 0x21B1, "aPowerGroup2On 1" }, + { 0x2014, "aPowerGroup2Off, Flash Controller OFF EFC, Flash Controller OFF EAP, Flash Controller STOP EFC, Flash Controller STOP EAP, FATAL OFF" }, + { 0x202F, "aPowerGroup2Off, FATAL OFF" }, + { 0x2015, "aPowerGroup2Off, FATAL OFF" }, + { 0x2016, "aPowerGroup2Off, Subsystem PG2 reset, FATAL OFF" }, + { 0x202B, "aPowerGroup2Off, FATAL OFF" }, + { 0x2017, "aPowerGroup2Off, FATAL OFF" }, + { 0x210A, "aPowerGroup2Off, FATAL OFF" }, + { 0x2018, "aPowerGroup2Off, FATAL OFF" }, + { 0x2019, "aPowerGroup2Off" }, + { 0x201A, "aSbPcieInitiali" }, + { 0x2030, "aSbPcieInitiali, aSbPcieInitiali 1, FATAL OFF" }, + { 0x2031, "aSbPcieInitiali, aSbPcieInitiali 1, FATAL OFF" }, + { 0x2066, "aSbPcieInitiali 1" }, + { 0x208D, "aEfcBootModeSet, EAP Boot Mode Set" }, + { 0x210B, "aEfcBootModeSet, EAP Boot Mode Set" }, + { 0x210C, "aEfcBootModeSet, EAP Boot Mode Set" }, + { 0x210D, "aEfcBootModeSet" }, + { 0x201D, "Flash Controller ON EFC, Flash Controller ON EAP" }, + { 0x2027, "Flash Controller ON EFC, Flash Controller ON EAP, Flash Controller Soft reset" }, + { 0x2110, "Flash Controller ON EFC, Flash Controller ON EAP" }, + { 0x2033, "Flash Controller ON EFC, Flash Controller ON EAP, Flash Controller Soft reset" }, + { 0x2089, "Flash Controller ON EFC, Flash Controller ON EAP, Flash Controller Soft reset" }, + { 0x2035, "Flash Controller ON EFC, Flash Controller ON EAP, Flash Controller Soft reset, FC NAND Close Not urgent, FC NAND Close Urgent" }, + { 0x201C, "Subsystem PCIe USP Enable" }, + { 0x2029, "Subsystem PCIe DSP Enable, Subsystem PCIe DSP Enable BT DL" }, + { 0x2107, "Subsystem PCIe DSP Enable, Dev WLAN BT PCIE RESET NEGATE, Dev WLAN BT PCIE RESET ASSERT NEGATE" }, + { 0x2159, "Flash Controller Initialization EFC, Flash Controller Initialization EAP" }, + { 0x2045, "Flash Controller Initialization EFC, Flash Controller Initialization EAP" }, + { 0x2038, "Flash Controller Initialization EFC" }, + { 0x2043, "Flash Controller Initialization EFC, Flash Controller Initialization EAP" }, + { 0x2041, "Flash Controller Initialization EFC, Flash Controller Initialization EAP" }, + { 0x2047, "Flash Controller Initialization EAP" }, + { 0x204C, "Flash Controller OFF EFC, Flash Controller STOP EFC" }, + { 0x2108, "Flash Controller OFF EFC, Flash Controller OFF EAP, Flash Controller STOP EFC, Flash Controller STOP EAP, FATAL OFF, Dev WLAN BT PCIE RESET ASSERT, Dev WLAN BT PCIE RESET ASSERT NEGATE" }, + { 0x206D, "Flash Controller OFF EFC, Flash Controller OFF EAP, Flash Controller STOP EFC, Flash Controller STOP EAP, FATAL OFF" }, + { 0x2034, "Flash Controller OFF EFC, Flash Controller OFF EAP, FATAL OFF" }, + { 0x208A, "Flash Controller OFF EFC, Flash Controller OFF EAP, FATAL OFF" }, + { 0x210F, "Flash Controller OFF EFC, Flash Controller OFF EAP, FATAL OFF" }, + { 0x2028, "Flash Controller OFF EFC, Flash Controller OFF EAP, Flash Controller STOP EFC, Flash Controller STOP EAP, FATAL OFF" }, + { 0x201E, "Flash Controller OFF EFC, Flash Controller OFF EAP, FATAL OFF" }, + { 0x2046, "Flash Controller OFF EAP, Flash Controller STOP EFC, Flash Controller STOP EAP" }, + { 0x2048, "Flash Controller STOP EFC, Flash Controller STOP EAP" }, + { 0x204D, "Flash Controller STOP EAP" }, + { 0x2049, "Flash Controller SRAM Keep Enable" }, + { 0x2111, "ACDC 12V ON" }, + { 0x2113, "ACDC 12V ON" }, + { 0x2052, "ACDC 12V ON" }, + { 0x2085, "ACDC 12V ON" }, + { 0x2054, "ACDC 12V ON" }, + { 0x2087, "ACDC 12V ON" }, + { 0x216F, "USB VBUS On, USB VBUS Off, Dev USB VBUS On" }, + { 0x211B, "USB VBUS On, Dev USB VBUS On" }, + { 0x211D, "BD Drive Power On, Dev BD Drive Power On" }, + { 0x203A, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x203D, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2126, "Main SoC Power ON Cold Boot, FATAL OFF" }, + { 0x2128, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x212A, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2135, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF, Dev VBURN OFF" }, + { 0x211F, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x2189, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x218B, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x21B6, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x21B8, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x21BA, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x2023, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2125, "Main SoC Power ON Cold Boot, GDDR6 USB Power On" }, + { 0x2167, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x21C1, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x21C3, "Main SoC Power ON Cold Boot" }, + { 0x2121, "Main SoC Power ON Cold Boot" }, + { 0x21C5, "Main SoC Power ON Cold Boot" }, + { 0x2175, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2133, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2141, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x205F, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x218D, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x21BE, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x21C0, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x21C4, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x2123, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2136, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x2137, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x216D, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit" }, + { 0x2060, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x2061, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x2025, "Main SoC Power ON Cold Boot, Main SoC Power ON S3 Exit, Main SoC Power Off, FATAL OFF" }, + { 0x2127, "Main SoC Reset Release, Cold reset WA" }, + { 0x204A, "Main SoC Reset Release" }, + { 0x2129, "Main SoC Reset Release, Cold reset WA" }, + { 0x21A3, "Main SoC Reset Release, USB VBUS On 2, Dev USBA1 VBUS On" }, + { 0x21A5, "Main SoC Reset Release, USB VBUS On 2, Dev USBA2 VBUS On" }, + { 0x21A7, "Main SoC Reset Release, USB VBUS On 2, Dev USBA3 VBUS On" }, + { 0x21A9, "Main SoC Reset Release, USB VBUS On 2, Dev USBA1 VBUS On" }, + { 0x21AB, "Main SoC Reset Release, USB VBUS On 2, Dev USBA2 VBUS On" }, + { 0x21AD, "Main SoC Reset Release, USB VBUS On 2, Dev USBA3 VBUS On" }, + { 0x212F, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF" }, + { 0x2169, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF" }, + { 0x2161, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF" }, + { 0x21B3, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF" }, + { 0x21B5, "Main SoC Reset Release" }, + { 0x213C, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x213D, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x213F, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x2050, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x2083, "Main SoC Reset Release" }, + { 0x2187, "Main SoC Reset Release" }, + { 0x2195, "Main SoC Reset Release" }, + { 0x2197, "Main SoC Reset Release" }, + { 0x2155, "Main SoC Reset Release" }, + { 0x205C, "Main SoC Reset Release, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x217F, "Main SoC Reset Release, Cold reset WA" }, + { 0x212B, "MSOC Reset Moni High, Main SoC Power Off, FATAL OFF" }, + { 0x2157, "MSOC Reset Moni High, Main SoC Power Off, FATAL OFF" }, + { 0x208F, "Main SoC Power Off, FATAL OFF" }, + { 0x2040, "Main SoC Power Off, FATAL OFF, FC NAND Close Not urgent" }, + { 0x2156, "Main SoC Power Off, FATAL OFF" }, + { 0x2196, "Main SoC Thermal Moni Stop, Main SoC Power Off, FATAL OFF" }, + { 0x2198, "Main SoC Thermal Moni Stop, Main SoC Power Off, FATAL OFF" }, + { 0x2188, "Main SoC Thermal Moni Stop, Main SoC Power Off, FATAL OFF" }, + { 0x2084, "Main SoC Thermal Moni Stop, Main SoC Power Off, FATAL OFF" }, + { 0x2051, "Main SoC Thermal Moni Stop, Main SoC Power Off, FATAL OFF, Cold reset WA" }, + { 0x211E, "BD Drive Power Off, FATAL OFF, Dev BD Drive Power Off" }, + { 0x211C, "USB VBUS Off, FATAL OFF" }, + { 0x2114, "ACDC 12V Off, FATAL OFF" }, + { 0x2112, "ACDC 12V Off, FATAL OFF" }, + { 0x207A, "ACDC 12V Off" }, + { 0x2086, "ACDC 12V Off, FATAL OFF" }, + { 0x2053, "ACDC 12V Off, FATAL OFF" }, + { 0x2088, "ACDC 12V Off, FATAL OFF" }, + { 0x2055, "ACDC 12V Off, FATAL OFF" }, + { 0x204B, "FC NAND Close Not urgent, FC NAND Close Urgent, FATAL OFF" }, + { 0x2042, "FC NAND Close Not urgent, FC NAND Close Urgent" }, + { 0x2044, "FC NAND Close Not urgent, FC NAND Close Urgent" }, + { 0x2024, "FATAL OFF" }, + { 0x2152, "USB OC Moni de assert, FATAL OFF" }, + { 0x2122, "FATAL OFF" }, + { 0x21AA, "FATAL OFF, USB OC Moni de assert 2, Dev USBA1 VBUS Off" }, + { 0x21AC, "FATAL OFF, USB OC Moni de assert 2, Dev USBA2 VBUS Off" }, + { 0x21AE, "FATAL OFF, USB OC Moni de assert 2, Dev USBA3 VBUS Off" }, + { 0x21A4, "FATAL OFF, USB VBUS Off 2, Dev USBA1 VBUS Off" }, + { 0x21A6, "FATAL OFF, USB VBUS Off 2, Dev USBA2 VBUS Off" }, + { 0x21A8, "FATAL OFF, USB VBUS Off 2, Dev USBA3 VBUS Off" }, + { 0x218C, "FATAL OFF" }, + { 0x218A, "FATAL OFF" }, + { 0x2120, "FATAL OFF" }, + { 0x2118, "FATAL OFF, Dev HDMI 5V Power Off" }, + { 0x2073, "FATAL OFF, HDMI CECStop" }, + { 0x2075, "FATAL OFF, HDMI CECStop, HDMIStop" }, + { 0x2079, "FATAL OFF, HDMI CECStop" }, + { 0x2071, "FATAL OFF, HDMI CECStop" }, + { 0x204F, "FATAL OFF, HDMI CECStop" }, + { 0x2022, "FATAL OFF, HDMI CECStop" }, + { 0x2116, "FATAL OFF, HDMI CECStop" }, + { 0x208C, "FATAL OFF" }, + { 0x2165, "FATAL OFF" }, + { 0x2164, "FATAL OFF" }, + { 0x216C, "FATAL OFF" }, + { 0x21B2, "FATAL OFF" }, + { 0x21B0, "FATAL OFF" }, + { 0x2012, "Stop SFlash DMA, FATAL OFF" }, + { 0x2091, "Local Temp.3 OFF, FATAL OFF" }, + { 0x2057, "Local Temp.3 OFF, FATAL OFF" }, + { 0x217E, "Fan Servo Parameter Reset, FATAL OFF" }, + { 0x2105, "WLAN Module Reset, FATAL OFF, WM Reset, Dev WLAN BT RESET ASSERT, Dev WLAN BT RESET ASSERT NEGATE" }, + { 0x2092, "FATAL OFF" }, + { 0x212D, "EAP Reset Moni de assert" }, + { 0x212E, "EAP Reset Moni Assert, FATAL OFF" }, + { 0x205D, "EAP Reset Moni Assert, Main SoC Power Off, FATAL OFF" }, + { 0x213B, "EAP Reset Moni Assert, Main SoC Power Off, FATAL OFF" }, + { 0x205E, "FAN CONTROL Parameter Reset" }, + { 0x2065, "EMC SoC Handshake ST" }, + { 0x2151, "USB OC Moni Assert" }, + { 0x2068, "HDMI Standby, HDMIStop" }, + { 0x2106, "WLAN Module USB Enable, WLAN Module Reset, WM Reset, Dev WLAN BT RESET NEGATE, Dev WLAN BT RESET ASSERT NEGATE" }, + { 0x217B, "WLAN Module Reset, BT WAKE Disabled, WM Reset, Dev WLAN BT RESET ASSERT, Dev WLAN BT RESET ASSERT NEGATE" }, + { 0x215A, "1GbE NIC Reset de assert" }, + { 0x215B, "1GbE NIC Reset assert" }, + { 0x2115, "HDMI CECStart, CECStart" }, + { 0x2021, "HDMI CECStart" }, + { 0x204E, "HDMI CECStart" }, + { 0x2070, "HDMI CECStart, CECStop" }, + { 0x2078, "HDMI CECStart, CECStop" }, + { 0x206E, "HDMI CECStart, CECStart" }, + { 0x2074, "HDMI CECStart" }, + { 0x2072, "HDMI CECStart" }, + { 0x2077, "HDMIStop, CECStop" }, + { 0x215F, "MDCDC ON" }, + { 0x2160, "MDCDC Off" }, + { 0x208E, "Titania2 GPIO Glitch Issue WA" }, + { 0x216E, "Check AC IN DETECT" }, + { 0x2170, "Check BD DETECT" }, + { 0x2173, "GPI SW Open" }, + { 0x2174, "GPI SW Close" }, + { 0x2102, "Devkit IO Expander Initialize" }, + { 0x2177, "Salina PMIC Register Initialize" }, + { 0x2178, "Disable AC IN DETECT" }, + { 0x2179, "BT WAKE Enabled" }, + { 0x2094, "Stop PCIePLL NoSS part" }, + { 0x217A, "Titania PMIC Register Initialize" }, + { 0x203B, "Setup FC for BTFW DL" }, + { 0x2039, "Setup FC for BTFW DL" }, + { 0x217C, "BTFW Download" }, + { 0x2095, "Telstar ROM Boot Wait" }, + { 0x201B, "Stop PCIePLL SS NOSS part, FATAL OFF" }, + { 0x2082, "Stop PCIePLL SS part" }, + { 0x2013, "Stop Subsystem PG2 Bus Error Detection(DDR4 BufferOverflow)" }, + { 0x2056, "Local Temp.3 ON" }, + { 0x2090, "Local Temp.3 ON" }, + { 0x2180, "FAN Control Start at Restmode during US" }, + { 0x2181, "FAN Control Start at Restmode during US" }, + { 0x2182, "FAN Control Start at Restmode during US" }, + { 0x2193, "FAN Control Start at Restmode during US" }, + { 0x2183, "FAN Control Stop at Restmode during USB" }, + { 0x2184, "FAN Control Stop at Restmode during USB" }, + { 0x2185, "FAN Control Stop at Restmode during USB" }, + { 0x2194, "FAN Control Stop at Restmode during USB" }, + { 0x2186, "Read Titania PMIC Registe" }, + { 0x219B, "I2C Open" }, + { 0x219C, "I2C Open" }, + { 0x219D, "I2C Open" }, + { 0x219E, "I2C Open" }, + { 0x2199, "I2C Open" }, + { 0x219A, "I2C Open" }, + { 0x21A0, "Drive FAN Control Stop" }, + { 0x219F, "Drive FAN Control Stop" }, + { 0x21A1, "Drive FAN Control Start" }, + { 0x21A2, "Drive FAN Control Start" }, + { 0x2117, "Dev HDMI 5V Power On" }, + { 0x2134, "Dev VBURN ON" }, + // { 0xFFFF, "Unknown SeqNo" } + }; + + /// + /// The error code description. + /// + public string Code => GetErrorCodeDescription(RawCode); + + // Unused padding - also not present in errors retrieved from UART + // private byte[] _padding => errorBytes[24..32]; + + // There are two 'halves' of the power state. + // 0x00AA00BB - where AA is the first half and BB is the second half. + // To split these into uint16, we need to mask the first half with 0x00FF0000 and shift it right by 16 bits. + // For the second half, we can simply mask everything but the least significant byte. + // + // We do this instead of having two separate uint16 so that the RawPowerState can be used elsewhere + + /// + /// The description for the first half of the power state. + /// + public string PowerStateA => GetPowerStateDescriptionA((RawPowerState & 0x00FF0000) >> 16); + + /// + /// The description for the second half of the power state. + /// + public string PowerStateB => _powerStateDescriptionsB.TryGetValue(RawPowerState & 0x000000FF, out var description) ? description : "Unknown Power State"; + + + /// + /// The description for the boot cause. + /// + public string BootCause => _bootCauseDescriptions.TryGetValue(RawBootCause, out var description) ? description : "Unknown Boot Cause"; + + /// + /// The description for the sequence number. + /// + public string SequenceNumber => _sequenceDescriptions.TryGetValue(RawSequenceNumber, out var description) ? description : "Unknown Sequence Number"; + + /// + /// The HDMI power state at the time the error was logged. + /// + public bool HdmiPower => (RawDevicePowerManagement & 0x10) != 0; + /// + /// The BluRay disk drive power state at the time the error was logged. + /// + public bool BddPower => (RawDevicePowerManagement & 0x08) != 0; + /// + /// The HDMI-CEC power state at the time the error was logged. + /// + public bool HdmiCecPower => (RawDevicePowerManagement & 0x04) != 0; + /// + /// The USB power state at the time the error was logged. + /// + public bool UsbPower => (RawDevicePowerManagement & 0x02) != 0; + /// + /// The WiFi power state at the time the error was logged. + /// + public bool WifiPower => (RawDevicePowerManagement & 0x01) != 0; + + /// + /// The SoC temperature at the time the error was logged. + /// + public string ChipTemperature => $"{RawChipTemperature / 256.0f:F2}°C"; + + /// + /// The environment temperature at the time the error was logged. + /// + public string EnvironmentTemperature => $"{RawEnvironmentTemperature / 256.0f:F2}°C"; +} diff --git a/NorModifierLib/Data/ErrorCode.cs b/NorModifierLib/Data/ErrorCode.cs new file mode 100644 index 0000000..8f06d45 --- /dev/null +++ b/NorModifierLib/Data/ErrorCode.cs @@ -0,0 +1,32 @@ +namespace NorModifierLib.Data +{ + /// + /// Represents the properties of an error code. + /// + /// The raw string of the error as read from the device. + [Obsolete("Use NorError instead")] + public class ErrorCode(string errorCode) + { + //OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80:27 + public string FirstPart => errorCode[3..11]; + public string SecondPart => errorCode[12..20]; + public string ThirdPart => errorCode[21..29]; + public string FourthPart => errorCode[30..38]; + public string FifthPart => errorCode[39..47]; + public string SixthPart => errorCode[48..52]; + public string SeventhPart => errorCode[53..57]; + public string EighthPart => errorCode[58..62]; + public string NinthPart => errorCode[63..67]; + public string Checksum => errorCode[^2..]; + + /// + /// Validates the checksum of the error code as retrieved from the device against the calculated checksum. + /// + public bool ChecksumValid => Checksum == Helpers.CalculateChecksum(errorCode[..^3]); + + /// + /// Gets the error code as a byte array. + /// + public byte[] ErrorBytes => Convert.FromHexString(errorCode[3..^3].Replace(" ", string.Empty)); + } +} diff --git a/NorModifierLib/Data/Helpers.cs b/NorModifierLib/Data/Helpers.cs new file mode 100644 index 0000000..2ecd1a6 --- /dev/null +++ b/NorModifierLib/Data/Helpers.cs @@ -0,0 +1,64 @@ +using System.Text; + +namespace NorModifierLib.Data; + +/// +/// Helper class to calculate checksums and create transmittable commands. +/// +public static class Helpers +{ + /// + /// Creates a transmittable command with the checksum + /// + /// The command to transmit to the device + /// The full command including checksum to be transmitted to the device + public static string CreateTransmittableCommand(string command) + { + var sum = CalculateChecksum(command); + + return $"{command}:{sum}"; + } + + /// + /// Calculates the checksum for the given string + /// + /// The string to be checksummed + /// The calculated checksum of the input string + public static string CalculateChecksum(string input) + { + var sum = input.Sum(x => (int)x); + + return $"{(sum & 0xFF):X2}"; + } + + /// + /// Gets the ASCII string from the string of hex bytes + /// + /// The hex string representation of the bytes + /// ASCII encoded string + /// + [Obsolete("Use Encoding.ASCII.GetString instead.")] + public static string HexStringToString(string hexString) + { + var bytes = Convert.FromHexString(hexString); + return Encoding.ASCII.GetString(bytes, 0, bytes.Length); + } + + /// + /// Returns all found indexes of the pattern in the source byte array + /// + /// The source byte array + /// The pattern to search for + /// + [Obsolete("Use known offsets instead.")] + public static IEnumerable PatternAt(byte[] source, byte[] pattern) + { + int maxStart = source.Length - pattern.Length + 1; + + return Enumerable + .Range(0, maxStart) + .Where(x => pattern + .Select((y, z) => source[x + z] == y) + .All(match => match)); + } +} diff --git a/NorModifierLib/Data/NorError.cs b/NorModifierLib/Data/NorError.cs new file mode 100644 index 0000000..1fce5db --- /dev/null +++ b/NorModifierLib/Data/NorError.cs @@ -0,0 +1,24 @@ +namespace NorModifierLib.Data; + +/// +/// Represents a NOR error. +/// +/// The raw bytes of the error as read from the device. +public class NorError(byte[] errorBytes) : BaseError() +{ + public override uint RawCode => BitConverter.ToUInt32(errorBytes.AsSpan()[0..4]); + public override uint Rtc => BitConverter.ToUInt32(errorBytes.AsSpan()[4..8]); + public override uint RawPowerState => BitConverter.ToUInt32(errorBytes.AsSpan()[8..12]); + public override uint RawBootCause => BitConverter.ToUInt32(errorBytes.AsSpan()[12..16]); + public override ushort RawSequenceNumber => BitConverter.ToUInt16(errorBytes.AsSpan()[16..18]); + public override ushort RawDevicePowerManagement => BitConverter.ToUInt16(errorBytes.AsSpan()[18..20]); + public override ushort RawChipTemperature => BitConverter.ToUInt16(errorBytes.AsSpan()[20..22]); + public override ushort RawEnvironmentTemperature => BitConverter.ToUInt16(errorBytes.AsSpan()[22..24]); + + public override string ToString() + { + return Enumerable.Range(0, (errorBytes.Length + 4 - 1) / 4) + .Select(x => Convert.ToHexString([.. errorBytes.Skip(x * 4).Take(4)])) + .Aggregate((current, next) => current + " " + next); + } +} diff --git a/NorModifierLib/Data/NorInfo.cs b/NorModifierLib/Data/NorInfo.cs new file mode 100644 index 0000000..3a04ef8 --- /dev/null +++ b/NorModifierLib/Data/NorInfo.cs @@ -0,0 +1,20 @@ +using NorModifierLib.Enumerators; + +namespace NorModifierLib.Data; + +/// +/// Represents the properties extracted from a NOR file. +/// +public class NorInfo +{ + public string Path { get; set; } = string.Empty; + public Edition Edition { get; set; } + public string Region { get; set; } = string.Empty; + public string ModelInfo { get; set; } = string.Empty; + public string ConsoleSerialNumber { get; set; } = string.Empty; + public string MotherboardSerialNumber { get; set; } = string.Empty; + public string Model { get; set; } = string.Empty; + public string WiFiMac { get; set; } = string.Empty; + public string LanMac { get; set; } = string.Empty; + public IEnumerable Errors { get; set; } = []; +} diff --git a/NorModifierLib/Data/UartError.cs b/NorModifierLib/Data/UartError.cs new file mode 100644 index 0000000..a60df08 --- /dev/null +++ b/NorModifierLib/Data/UartError.cs @@ -0,0 +1,26 @@ +using System.Buffers.Binary; + +namespace NorModifierLib.Data; + +/// +/// Represents a UART error. +/// +/// The raw bytes of the error as read from the device. +public class UartError(byte[] errorBytes) : BaseError() +{ + public override uint RawCode => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt32(errorBytes.AsSpan()[0..4])); + public override uint Rtc => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt32(errorBytes.AsSpan()[4..8])); + public override uint RawPowerState => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt32(errorBytes.AsSpan()[8..12])); + public override uint RawBootCause => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt32(errorBytes.AsSpan()[12..16])); + public override ushort RawSequenceNumber => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt16(errorBytes.AsSpan()[16..18])); + public override ushort RawDevicePowerManagement => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt16(errorBytes.AsSpan()[18..20])); + public override ushort RawChipTemperature => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt16(errorBytes.AsSpan()[20..22])); + public override ushort RawEnvironmentTemperature => BinaryPrimitives.ReverseEndianness(BitConverter.ToUInt16(errorBytes.AsSpan()[22..24])); + + public override string ToString() + { + return Enumerable.Range(0, (errorBytes.Length + 4 - 1) / 4) + .Select(x => Convert.ToHexString([.. errorBytes.Skip(x * 4).Take(4)])) + .Aggregate((current, next) => current + " " + next); + } +} diff --git a/NorModifierLib/Enumerators/Edition.cs b/NorModifierLib/Enumerators/Edition.cs new file mode 100644 index 0000000..96c75f4 --- /dev/null +++ b/NorModifierLib/Enumerators/Edition.cs @@ -0,0 +1,11 @@ +namespace NorModifierLib.Enumerators; + +/// +/// Enumeration for the different editions of the device. +/// +public enum Edition +{ + Disc, + Digital, + Slim, +} diff --git a/NorModifierLib/Enumerators/EnumExtensions.cs b/NorModifierLib/Enumerators/EnumExtensions.cs new file mode 100644 index 0000000..3e98834 --- /dev/null +++ b/NorModifierLib/Enumerators/EnumExtensions.cs @@ -0,0 +1,32 @@ +namespace NorModifierLib.Enumerators; + +/// +/// Extenion methods for the enumeration. +/// +public static class EnumExtensions +{ + /// + /// Converts the enumeration to a byte array. + /// + /// The Edition to convert to a byte array. + /// + /// Thrown if the Edition provided does not have matching bytes. + /// + public static byte[] GetBytes(this Edition edition) + { + byte[] retVal = edition switch + { + Edition.Disc => [0x22, 0x02, 0x01, 0x01], + Edition.Digital => [0x22, 0x03, 0x01, 0x01], + Edition.Slim => [0x22, 0x01, 0x01, 0x01], + _ => throw new ArgumentOutOfRangeException(nameof(edition), edition, "Unknown edition") + }; + + if (retVal.Length != 4) + { + throw new InvalidOperationException("Invalid length of Edition byte array"); + } + + return retVal; + } +} diff --git a/NorModifierLib/Exceptions/NorReadException.cs b/NorModifierLib/Exceptions/NorReadException.cs new file mode 100644 index 0000000..dc70e47 --- /dev/null +++ b/NorModifierLib/Exceptions/NorReadException.cs @@ -0,0 +1,8 @@ +namespace NorModifierLib.Exceptions; + +/// +/// Exception thrown when there is an error reading the NOR dump. +/// +/// The error message. +/// The underlying exception that triggered this exception. +public class NorReadException(string message, Exception innerException) : Exception(message, innerException) { } diff --git a/NorModifierLib/Exceptions/NorWriteException.cs b/NorModifierLib/Exceptions/NorWriteException.cs new file mode 100644 index 0000000..c5de7c3 --- /dev/null +++ b/NorModifierLib/Exceptions/NorWriteException.cs @@ -0,0 +1,8 @@ +namespace NorModifierLib.Exceptions; + +/// +/// Exception thrown when there is an error wrtiting the NOR dump. +/// +/// The error message. +/// The underlying exception that triggered this exception. +public class NorWriteException(string message, Exception innerException) : Exception(message, innerException) { } diff --git a/NorModifierLib/Exceptions/UartResponseInvalidException.cs b/NorModifierLib/Exceptions/UartResponseInvalidException.cs new file mode 100644 index 0000000..2936058 --- /dev/null +++ b/NorModifierLib/Exceptions/UartResponseInvalidException.cs @@ -0,0 +1,8 @@ +namespace NorModifierLib.Exceptions; + +/// +/// Exception thrown when the response from the UART device is invalid. +/// +/// The error message. +/// +public class UartResponseInvalidException(string message) : Exception(message) { } diff --git a/NorModifierLib/Interfaces/INorService.cs b/NorModifierLib/Interfaces/INorService.cs new file mode 100644 index 0000000..28b9c27 --- /dev/null +++ b/NorModifierLib/Interfaces/INorService.cs @@ -0,0 +1,16 @@ +using NorModifierLib.Data; +using NorModifierLib.Enumerators; + +namespace NorModifierLib.Interfaces; + +/// +/// Interface for a service used to read and write NOR dumps. +/// +public interface INorService +{ + public NorInfo ReadNor(string filePath); + public void SetEdition(NorInfo NOR, Edition edition); + public void SetConsoleSerial(NorInfo NOR, string serial); + public void SetMotherboardSerial(NorInfo NOR, string serial); + public void SetModel(NorInfo NOR, string model); +} diff --git a/NorModifierLib/Interfaces/ISerialPort.cs b/NorModifierLib/Interfaces/ISerialPort.cs new file mode 100644 index 0000000..3265d09 --- /dev/null +++ b/NorModifierLib/Interfaces/ISerialPort.cs @@ -0,0 +1,10 @@ +namespace NorModifierLib.Interfaces; + +/// +/// Interface for a service to communicate with the UART over a serial port. +/// +public interface ISerialPort +{ + public Task WriteLineAsync(string data); + public Task ReadLineAsync(); +} diff --git a/NorModifierLib/Interfaces/IUartService.cs b/NorModifierLib/Interfaces/IUartService.cs new file mode 100644 index 0000000..502ed0e --- /dev/null +++ b/NorModifierLib/Interfaces/IUartService.cs @@ -0,0 +1,12 @@ +using NorModifierLib.Data; + +namespace NorModifierLib.Interfaces; + +/// +/// Interface for a service used to read and clear UART errors. +/// +public interface IUartService +{ + public Task ClearErrorsAsync(ISerialPort serialPort); + public Task> GetErrorsAsync(ISerialPort serialPort); +} diff --git a/NorModifierLib/NorModifierLib.csproj b/NorModifierLib/NorModifierLib.csproj new file mode 100644 index 0000000..219eb62 --- /dev/null +++ b/NorModifierLib/NorModifierLib.csproj @@ -0,0 +1,15 @@ + + + + net9.0 + enable + enable + + + + + + + + + diff --git a/NorModifierLib/Services/ErrorCodeService.cs b/NorModifierLib/Services/ErrorCodeService.cs new file mode 100644 index 0000000..4e18b3b --- /dev/null +++ b/NorModifierLib/Services/ErrorCodeService.cs @@ -0,0 +1,50 @@ +using System.Xml.Linq; +using Microsoft.Extensions.Logging; + +namespace NorModifierLib.Services; + +/// +/// A service for communicating with the error code database. +/// +/// ILogger interface to receive log data. +/// A HttpClient to download the error code database from the web. +public class ErrorCodeService(ILogger logger, HttpClient client) +{ + private XDocument _xml = null!; + + private const string DatabaseUri = "http://uartcodes.com/xml.php"; + + /// + /// Parses the error code database and returns the description of the error code + /// + /// The error code retrieved from the device + /// A string description of the error code or a generic message if the error code was not found + public async Task ParseError(string errorCode) + { + // Load the database if it hasn't been loaded yet + if (_xml == null) + { + logger.LogInformation("Loading error code database from {DatabaseUri}", DatabaseUri); + + try + { + using var stream = await client.GetStreamAsync(DatabaseUri); + _xml = XDocument.Load(stream); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to load error code database from {DatabaseUri}", DatabaseUri); + throw; + } + } + + var match = _xml.Descendants("errorCode") + .FirstOrDefault(x => x.Element("ErrorCode")?.Value == errorCode); + + string description = match?.Element("Description")?.Value ?? "Error Description Not Found"; + + logger.LogInformation("Parsed error code {ErrorCode}: {Description}", errorCode, description); + + return description; + } +} diff --git a/NorModifierLib/Services/NorService.cs b/NorModifierLib/Services/NorService.cs new file mode 100644 index 0000000..6c62d28 --- /dev/null +++ b/NorModifierLib/Services/NorService.cs @@ -0,0 +1,488 @@ +using System.IO.Hashing; +using System.Text; +using Microsoft.Extensions.Logging; +using NorModifierLib.Data; +using NorModifierLib.Enumerators; +using NorModifierLib.Exceptions; +using NorModifierLib.Interfaces; + +namespace NorModifierLib.Services; + +/// +/// Service for reading and modifying NOR files. +/// +/// ILogger interface to receive log data +public class NorService(ILogger logger) : INorService +{ + private const uint _knownHeaderChecksum = 0xdbff5c9d; + private const long _editionOffsetOne = 0x1c7010; + private const long _editionOffsetTwo = 0x1c7030; + private const long _serialOffset = 0x1c7210; + private const long _modelOffset = 0x1c7230; + private const long _moboSerialOffset = 0x1C7200; + private const long _wifiMacOffset = 0x1C73C0; + private const long _lanMacOffset = 0x1C4020; + private const long _logStartOffset = 0x1CE100; + private const long _logEndOffset = 0x1CEC70; + private const int _logEntrySize = 32 * 8; // uint32 * 8 + + /// + /// Reads the NOR file and extracts properties such as edition, region, console serial number, motherboard serial number, model, WiFi MAC address, and LAN MAC address. + /// + /// The path to the NOR dump file + /// A NORInfo containing the NOR properties + /// Thrown if the dump file cannot be found + /// Thrown if a property cannot be read from the dump file + /// Thrown if the dump header checksum validation fails + public NorInfo ReadNor(string filePath) + { + if (!File.Exists(filePath)) + { + logger.LogError("NOR file does not exist at provided path."); + throw new FileNotFoundException("NOR file does not exist at provided path.", filePath); + } + + BinaryReader reader; + try + { + reader = new BinaryReader(new FileStream(filePath, FileMode.Open)); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR file could not be opened."); + + throw new NorReadException("NOR file could not be opened.", ex); + } + + // Read the header and validate that this is a NOR file\ + uint headerChecksum; + try + { + reader.BaseStream.Position = 0; + var bytes = reader.ReadBytes(32); + headerChecksum = Crc32.HashToUInt32(bytes); + + logger.LogInformation("NOR header data: {Header}:{Checksum}", bytes, headerChecksum); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR header extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR header extraction failed.", ex); + } + + if (_knownHeaderChecksum != headerChecksum) + { + logger.LogError("NOR header checksum does not match expected value. Expected: {Expected}, Actual: {Actual}", _knownHeaderChecksum, headerChecksum); + + reader.Close(); + reader.Dispose(); + + throw new InvalidDataException($"NOR header checksum does not match expected value. Expected: {_knownHeaderChecksum}, Actual: {headerChecksum}"); + } + + // Get the edition from the NOR + string editionOne; + string editionTwo; + try + { + reader.BaseStream.Position = _editionOffsetOne; + var bytes = reader.ReadBytes(12); + editionOne = Convert.ToHexString(bytes); + + reader.BaseStream.Position = _editionOffsetTwo; + bytes = reader.ReadBytes(12); + editionTwo = Convert.ToHexString(bytes); + + logger.LogInformation("NOR edition data: {EditionOne}-{EditionTwo}", editionOne, editionTwo); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR edition extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR edition extraction failed.", ex); + } + + Edition edition; + try + { + edition = (editionOne, editionTwo) switch + { + var versions when versions.editionOne.Contains("22020101") => Edition.Disc, + var versions when versions.editionTwo.Contains("22030101") => Edition.Digital, + var versions when versions.editionOne.Contains("22010101") || versions.editionTwo.Contains("22010101") => Edition.Slim, + (_, _) => throw new InvalidDataException($"NOR edition offsets did not match any known edition data. Offset One: {editionOne}. Offset Two: {editionTwo}") + }; + } + catch (Exception ex) + { + logger.LogError(ex, "NOR edition parsing failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR edition parsing failed.", ex); + } + + logger.LogInformation("Detected edition: {Edition}", edition); + + string model; + try + { + reader.BaseStream.Position = _modelOffset; + var bytes = reader.ReadBytes(9); + model = Encoding.ASCII.GetString(bytes); + + logger.LogInformation("NOR variant data: {Variant}", model); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR model extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR model extraction failed.", ex); + } + + var region = model[^3..] switch + { + "00A" => "Japan", + "00B" => "Japan", + "01A" => "US, Canada, (North America)", + "01B" => "US, Canada, (North America)", + "15A" => "US, Canada, (North America)", + "15B" => "US, Canada, (North America)", + "02A" => "Australia / New Zealand, (Oceania)", + "02B" => "Australia / New Zealand, (Oceania)", + "03A" => "United Kingdom / Ireland", + "03B" => "United Kingdom / Ireland", + "04A" => "Europe / Middle East / Africa", + "04B" => "Europe / Middle East / Africa", + "05A" => "South Korea", + "05B" => "South Korea", + "06A" => "Southeast Asia / Hong Kong", + "06B" => "Southeast Asia / Hong Kong", + "07A" => "Taiwan", + "07B" => "Taiwan", + "08A" => "Russia, Ukraine, India, Central Asia", + "08B" => "Russia, Ukraine, India, Central Asia", + "09A" => "Mainland China", + "09B" => "Mainland China", + "11A" => "Mexico, Central America, South America", + "11B" => "Mexico, Central America, South America", + "14A" => "Mexico, Central America, South America", + "14B" => "Mexico, Central America, South America", + "16A" => "Europe / Middle East / Africa", + "16B" => "Europe / Middle East / Africa", + "18A" => "Singapore, Korea, Asia", + "18B" => "Singapore, Korea, Asia", + _ => "Unknown Region" + }; + + logger.LogInformation("Detected region: {Region}", region); + + string serial; + try + { + reader.BaseStream.Position = _serialOffset; + var bytes = reader.ReadBytes(17); + serial = Encoding.ASCII.GetString(bytes).TrimEnd('\0'); + + logger.LogInformation("Console serial number: {Serial}", serial); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR console serial number extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR console serial number extraction failed.", ex); + } + + string motherboardSerial; + try + { + reader.BaseStream.Position = _moboSerialOffset; + var bytes = reader.ReadBytes(16); + motherboardSerial = Encoding.ASCII.GetString(bytes).TrimEnd('\0'); + + logger.LogInformation("Motherboard serial number: {Serial}", motherboardSerial); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR motherboard serial number extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR motherboard serial number extraction failed.", ex); + } + + string wifiMac; + try + { + reader.BaseStream.Position = _wifiMacOffset; + var bytes = reader.ReadBytes(6); + wifiMac = BitConverter.ToString(bytes); + + logger.LogInformation("WiFi MAC address: {Mac}", wifiMac); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR WiFi MAC address extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR WiFi MAC address extraction failed.", ex); + } + + string lanMac; + try + { + reader.BaseStream.Position = _lanMacOffset; + var bytes = reader.ReadBytes(6); + lanMac = BitConverter.ToString(bytes); + + logger.LogInformation("LAN MAC address: {Mac}", lanMac); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR LAN MAC address extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR LAN MAC address extraction failed.", ex); + } + + var errors = new List(); + try + { + reader.BaseStream.Position = _logStartOffset; + + for (int i = 0; reader.BaseStream.Position <= _logEndOffset - _logEntrySize; i++) + { + var bytes = reader.ReadBytes(_logEntrySize); + + if (BitConverter.ToUInt32(bytes.AsSpan()[0..8]) == 0xFFFFFFFF) + { + logger.LogInformation("NOR log entry {i} is empty, ending log read.", i); + break; + } + + errors.Add(new NorError(bytes)); + + logger.LogInformation("Log entry {i}: {Log}", i, bytes); + } + } + catch (Exception ex) + { + logger.LogError(ex, "NOR log extraction failed."); + + reader.Close(); + reader.Dispose(); + + throw new NorReadException("NOR log extraction failed.", ex); + } + + reader.Close(); + reader.Dispose(); + + return new() + { + Path = filePath, + Edition = edition, + Region = region, + ConsoleSerialNumber = serial, + MotherboardSerialNumber = motherboardSerial, + Model = model, + WiFiMac = wifiMac, + LanMac = lanMac, + Errors = errors, + }; + } + + /// + /// Sets the console edition in the NOR file. + /// + /// The NORInfo object for the NOR file. + /// The edition to set in the NOR file. + public void SetEdition(NorInfo NOR, Edition edition) + { + var editionBytes = edition.GetBytes(); + + using var writer = OpenNOR(NOR.Path); + try + { + writer.BaseStream.Position = _editionOffsetOne; + writer.Write(editionBytes); + writer.BaseStream.Position = _editionOffsetTwo; + writer.Write(editionBytes); + + logger.LogInformation("Wrote console edition: {Edition}", edition); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to write console edition at the provided offsets."); + throw new NorWriteException("Failed to write console edition at the provided offsets.", ex); + } + finally + { + writer.Flush(); + writer.Close(); + writer.Dispose(); + } + } + + /// + /// Sets the console serial number in the NOR file. + /// + /// The NORInfo object for the NOR file. + /// The serial to set in the NOR file. + public void SetConsoleSerial(NorInfo NOR, string serial) + { + var bytes = Encoding.ASCII.GetBytes(serial); + var paddedBytes = new byte[17]; + + if (bytes.Length > 17) + { + logger.LogError("Console serial number is too long. Maximum length is 17 bytes."); + throw new ArgumentException("Console serial number is too long. Maximum length is 17 bytes.", nameof(serial)); + } + + Array.Copy(bytes, paddedBytes, bytes.Length); + logger.LogInformation("Attempting to write the console serial number: {Serial}-{Bytes}", serial, paddedBytes); + + using var writer = OpenNOR(NOR.Path); + try + { + writer.BaseStream.Position = _serialOffset; + writer.Write(paddedBytes); + + logger.LogInformation("Wrote console serial number: {Serial}", paddedBytes); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to write console serial number at the provided offset."); + throw new NorWriteException("Failed to write console serial number at the provided offset.", ex); + } + finally + { + writer.Flush(); + writer.Close(); + writer.Dispose(); + } + } + + /// + /// Sets the motherboard serial number in the NOR file. + /// + /// + /// + /// + public void SetMotherboardSerial(NorInfo NOR, string serial) + { + var bytes = Encoding.ASCII.GetBytes(serial); + var paddedBytes = new byte[16]; + + if (bytes.Length > 16) + { + logger.LogError("Motherboard serial number is too long. Maximum length is 16 bytes."); + throw new ArgumentException("Motherboard serial number is too long. Maximum length is 16 bytes.", nameof(serial)); + } + + Array.Copy(bytes, paddedBytes, bytes.Length); + logger.LogInformation("Attempting to write the motherboard serial number: {Serial}-{Bytes}", serial, paddedBytes); + + using var writer = OpenNOR(NOR.Path); + try + { + writer.BaseStream.Position = _moboSerialOffset; + writer.Write(paddedBytes); + + logger.LogInformation("Wrote motherboard serial number: {Serial}", paddedBytes); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to write motherboard serial number at the provided offset."); + throw new NorWriteException("Failed to write motherboard serial number at the provided offset.", ex); + } + finally + { + writer.Flush(); + writer.Close(); + writer.Dispose(); + } + } + + /// + /// Sets the model in the NOR file. + /// + /// The NORInfo object for the NOR file. + /// The model to set in the NOR file. + public void SetModel(NorInfo NOR, string model) + { + var bytes = Encoding.ASCII.GetBytes(model); + var paddedBytes = new byte[9]; + + if (bytes.Length > 9) + { + logger.LogError("Model number is too long. Maximum length is 9 bytes."); + throw new ArgumentException("Model number is too long. Maximum length is 9 bytes.", nameof(model)); + } + + Array.Copy(bytes, paddedBytes, bytes.Length); + logger.LogInformation("Attempting to write the model number: {Model}-{Bytes}", model, paddedBytes); + + using var writer = OpenNOR(NOR.Path); + try + { + writer.BaseStream.Position = _modelOffset; + writer.Write(paddedBytes); + + logger.LogInformation("Wrote model number: {Model}", paddedBytes); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to write model number at the provided offset."); + throw new NorWriteException("Failed to write model number at the provided offset.", ex); + } + finally + { + writer.Flush(); + writer.Close(); + writer.Dispose(); + } + } + + /// + /// Opens the NOR file for reading and writing. + /// + /// The path to the dump file + /// A BinaryWriter for the dump file + /// Thrown when the dump file cannot be read + private BinaryWriter OpenNOR(string filePath) + { + BinaryWriter writer; + try + { + writer = new BinaryWriter(new FileStream(filePath, FileMode.Open)); + } + catch (Exception ex) + { + logger.LogError(ex, "NOR file could not be opened."); + throw new NorReadException("NOR file could not be opened.", ex); + } + + return writer; + } +} diff --git a/NorModifierLib/Services/UartService.cs b/NorModifierLib/Services/UartService.cs new file mode 100644 index 0000000..c8d5775 --- /dev/null +++ b/NorModifierLib/Services/UartService.cs @@ -0,0 +1,85 @@ +using Microsoft.Extensions.Logging; +using NorModifierLib.Data; +using NorModifierLib.Exceptions; +using NorModifierLib.Interfaces; + +namespace NorModifierLib.Services; + +/// +/// Service for UART communication. +/// +/// ILogger interface to receive log data. +public class UartService(ILogger logger) : IUartService +{ + /// + /// Clears the error codes from the device + /// + /// An ISerialPort object that facilitates serial communication with the device + public async Task ClearErrorsAsync(ISerialPort serialPort) + { + var command = "errlog clear"; + var transmitCommand = Helpers.CreateTransmittableCommand(command); + + await serialPort.WriteLineAsync(transmitCommand); + + logger.LogInformation("Transmitted command: {Command}", transmitCommand); + logger.LogInformation("Cleared error codes"); + } + + /// + /// Gets the error codes from the device + /// + /// An ISerialPort object that facilitates serial communication with the device + /// The errors read from the UART + public async Task> GetErrorsAsync(ISerialPort serialPort) + { + var retVal = new List(); + for (var i = 0; i <= 255; i++) + { + var command = $"errlog {i}"; + var transmitCommand = Helpers.CreateTransmittableCommand(command); + + await serialPort.WriteLineAsync(transmitCommand); + var response = await serialPort.ReadLineAsync(); + + logger.LogInformation("Transmitted command: {Command}", transmitCommand); + + // End of the error list + if (string.Equals("NG", response[..2], StringComparison.InvariantCultureIgnoreCase)) + { + logger.LogInformation("Received NG response, end of the error list."); + break; + } + + // Unknown response + if (!string.Equals("OK", response[..2], StringComparison.InvariantCultureIgnoreCase)) + { + logger.LogError("Unexpected response received. Expected response to begin with 'OK', but got: {Response}.", response); + throw new UartResponseInvalidException($"Unexpected response received. Expected response to begin with 'OK', but got: {response}."); + } + + // Invalid response + if (response.Length != 70) + { + logger.LogError("Invalid response length. Expected 70 characters, but got: {Length}. Response: {Response}.", response.Length, response); + throw new UartResponseInvalidException($"Invalid response length. Expected 70 characters, but got: {response.Length}. Response {response}"); + } + + var responseChecksum = response[^2..]; + var calculatedChecksum = Helpers.CalculateChecksum(response[..^3]); + + // Response validation checksum did not match + if (!string.Equals(responseChecksum, calculatedChecksum, StringComparison.InvariantCultureIgnoreCase)) + { + logger.LogError("Invalid response checksum: Expected: {Expected}, but got {Calculated}. Response: {Response}.", responseChecksum, calculatedChecksum, response); + throw new UartResponseInvalidException($"Invalid response checksum: Expected: {responseChecksum}, but got {calculatedChecksum}. Response: {response}."); + } + + logger.LogInformation("Received response: {Response}.", response); + var errorBytes = Convert.FromHexString(response[12..^3].Replace(" ", string.Empty)); + retVal.Add(new(errorBytes)); + } + + return retVal; + } +} diff --git a/NorModifierWeb/App.razor b/NorModifierWeb/App.razor new file mode 100644 index 0000000..6fd3ed1 --- /dev/null +++ b/NorModifierWeb/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/NorModifierWeb/Data/WebSerialPort.cs b/NorModifierWeb/Data/WebSerialPort.cs new file mode 100644 index 0000000..cb096e1 --- /dev/null +++ b/NorModifierWeb/Data/WebSerialPort.cs @@ -0,0 +1,79 @@ +using Microsoft.JSInterop; +using NorModifierLib.Interfaces; +using NorModifierWeb.Exceptions; + +namespace NorModifierWeb.Data; + +/// +/// A service for communicating with the Web Serial API. +/// +/// ILogger interface to receive log data. +/// JavaScript runtime interface for the browser session. +public sealed class WebSerialPort(ILogger logger, IJSRuntime jsRuntime) : ISerialPort +{ + /// + /// Checks if the Web Serial API is supported in the current browser. + /// + /// A Task representing the JavaScript promise for the Web Serial API support check. True if the browser supports Web Serial and false otherwise. + public async Task IsSupported() => await jsRuntime.InvokeAsync("serialIsSupported"); + + /// + /// Requests a web serial port from the user and opens it with a baud rate of 115200. + /// + /// A Task representing the JavaScript promise for the Web Serial port open operation. True if the port was successfully opened and false otherwise. + public async Task OpenAsync() + { + if(!await jsRuntime.InvokeAsync("serialRequestPort")) + { + logger.LogInformation("Web serial port request was denied by the user"); + return false; + } + + if(!await jsRuntime.InvokeAsync("serialOpen", 115200)) + { + logger.LogInformation("Web serial port open failed"); + return false; + } + + logger.LogInformation("Web serial port opened successfully"); + return true; + } + + /// + /// Closes the web serial port. + /// + /// A Task representing the JavaScript promise for the Web Serial port close operation. + public async Task CloseAsync() + { + await jsRuntime.InvokeVoidAsync("serialClose"); + logger.LogInformation("Closed web serial port"); + } + + /// + /// Reads a line from the web serial port. + /// + /// A Task representing the JavaScript promise for the Web Serial port read line operation. + public async Task ReadLineAsync() + { + var line = await jsRuntime.InvokeAsync("serialRead"); + logger.LogInformation("Read line from web serial port: {Line}", line); + return line; + } + + /// + /// Writes a line to the web serial port. The line is terminated with a newline character. + /// + /// The data to be written to the serial port. + /// A Task representing the JavaScript promise for the Wweb Serial port write operation. + /// Thrown when the write operation fails for any reason. + public async Task WriteLineAsync(string data) + { + if (!await jsRuntime.InvokeAsync("serialWrite", $"{data}\n")) + { + logger.LogError("Web serial port write failed"); + throw new WebSerialWriteException("Web serial port write failed"); + } + + logger.LogInformation("Wrote line to web serial port: {Data}", data); + } +} diff --git a/NorModifierWeb/Exceptions/WebSerialWriteException.cs b/NorModifierWeb/Exceptions/WebSerialWriteException.cs new file mode 100644 index 0000000..0ee4210 --- /dev/null +++ b/NorModifierWeb/Exceptions/WebSerialWriteException.cs @@ -0,0 +1,7 @@ +namespace NorModifierWeb.Exceptions; + +/// +/// Exception thrown when there is an error writing to the web serial port. +/// +/// The error message. +public class WebSerialWriteException(string message) : Exception(message) { } diff --git a/NorModifierWeb/Layout/MainLayout.razor b/NorModifierWeb/Layout/MainLayout.razor new file mode 100644 index 0000000..55484c2 --- /dev/null +++ b/NorModifierWeb/Layout/MainLayout.razor @@ -0,0 +1,23 @@ +@inherits LayoutComponentBase + + + + + + + + + + + NOR Modifier Web + + + + + NOR + UART + + + @Body + + diff --git a/NorModifierWeb/NorModifierWeb.csproj b/NorModifierWeb/NorModifierWeb.csproj new file mode 100644 index 0000000..457de5c --- /dev/null +++ b/NorModifierWeb/NorModifierWeb.csproj @@ -0,0 +1,23 @@ + + + + net9.0 + enable + enable + + + + + + + + + + + + + + + + + diff --git a/NorModifierWeb/NorModifierWeb.csproj.user b/NorModifierWeb/NorModifierWeb.csproj.user new file mode 100644 index 0000000..9ff5820 --- /dev/null +++ b/NorModifierWeb/NorModifierWeb.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/NorModifierWeb/Pages/Home.razor b/NorModifierWeb/Pages/Home.razor new file mode 100644 index 0000000..f078c2d --- /dev/null +++ b/NorModifierWeb/Pages/Home.razor @@ -0,0 +1,233 @@ +@page "/" + +@using NorModifierLib.Interfaces +@using NorModifierLib.Data + + + + + + + + + Upload NOR + + + + + + + Download Modified NOR + + + + + + + + + + Disc + Digital + Slim + + + + + + + + + + + + + + + + + + + + + + + + No errors. + + + Error + RTC + Power State + Boot Cause + Device Power + Sequence Number + Env Temp + SoC Temp + + + + @($"{context.RawCode:X8}") + @context.Code + + + @($"{context.Rtc:X8}") + @context.Rtc + + + @($"{context.RawPowerState:X8}") + @context.PowerStateA - @context.PowerStateB + + + @($"{context.RawBootCause:X8}") + @context.BootCause + + + @($"{context.RawDevicePowerManagement:X4}") +
+ HDMI + BDD + HDMI-CEC + USB + WiFi +
+
+ + @($"{context.RawSequenceNumber:X4}") + @context.SequenceNumber + + + @($"{context.RawEnvironmentTemperature:X4}") + @context.EnvironmentTemperature + + + @($"{context.RawChipTemperature:X4}") + @context.ChipTemperature + +
+
+ +
+ +@code +{ + [Inject] + private ILogger logger { get; set; } = default!; + + [Inject] + private IJSRuntime jsRuntime { get; set; } = default!; + + [Inject] + private INorService norService { get; set; } = default!; + + [Inject] + private IDialogService dialogService { get; set; } = default!; + + private string TempPath => Path.Combine(Path.GetTempPath(), "nor.bin"); + + private bool disable { get; set; } = true; + private NorInfo _norInfo = new(); + private Dictionary _showRawError = new(); + + /// + /// Uploads a NOR dump, validates it, then reads error logs and properties. + /// + /// The NOR dump uploaded from the browser. + /// A Task for the upload and NOR read operation. + private async Task UploadFile(IBrowserFile file) + { + // Limit the file size to 3MB. This is a bit of overhead for the 2MB NOR dumps. + if (file.Size > 3 * 1024 * 1024) + { + await dialogService.ShowMessageBox("Error", "The selected file is too large. NOR dumps should be 2MB in size.", "OK"); + return; + } + + // Copy the uploaded file to a temporary location, then read the NOR dump. If an exeception is thrown, log it and show an error message. + try + { + using var uploadStream = file.OpenReadStream(3 * 1024 * 1024); + using var binaryWriter = new BinaryWriter(new FileStream(TempPath, FileMode.Create)); + using var fileStream = binaryWriter.BaseStream; + + await uploadStream.CopyToAsync(fileStream); + + binaryWriter.Flush(); + binaryWriter.Close(); + + _norInfo = norService.ReadNor(TempPath); + disable = false; + } + catch (FileNotFoundException ex) + { + logger.LogError(ex, "File not found: {FilePath}", TempPath); + await dialogService.ShowMessageBox("Error", "Internal error.", "OK"); + } + catch (InvalidDataException ex) + { + logger.LogError(ex, "NOR file header checksum validation failed."); + await dialogService.ShowMessageBox("Error", "The selected file does not appear to be a valid NOR dump.", "OK"); + } + catch (NorReadException ex) + { + logger.LogError(ex, "NOR file read error."); + await dialogService.ShowMessageBox("Error", "The selected file was unable to be read. It may be corrupt.", "OK"); + } + catch (Exception ex) + { + logger.LogError(ex, "Unknown error reading NOR."); + await dialogService.ShowMessageBox("Error", "Internal error.", "OK"); + } + } + + /// + /// Modifies the local copy of the NOR dump using the specified proeprties, then initiates a download to the client of the modified NOR dump. + /// + /// A Task for the modify and download NOR operation. + private async Task DownloadNor() + { + // Modify the NOR dump using the specified properties. If an exception is thrown, log it and show an error message. + try + { + norService.SetEdition(_norInfo, _norInfo.Edition); + norService.SetModel(_norInfo, _norInfo.Model); + norService.SetConsoleSerial(_norInfo, _norInfo.ConsoleSerialNumber); + norService.SetMotherboardSerial(_norInfo, _norInfo.MotherboardSerialNumber); + } + catch (FileNotFoundException ex) + { + logger.LogError(ex, "File not found: {FilePath}", TempPath); + await dialogService.ShowMessageBox("Error", "Internal error.", "OK"); + } + catch (ArgumentException ex) + { + logger.LogError(ex, "A NOR property failed validation."); + await dialogService.ShowMessageBox("Error", "One or more entered values was invalid for writing to the NOR.", "OK"); + } + catch (NorWriteException ex) + { + logger.LogError(ex, "NOR file write error."); + await dialogService.ShowMessageBox("Error", "The NOR was unable to be modified. It may be corrupt.", "OK"); + } + catch (Exception ex) + { + logger.LogError(ex, "Unknown error writing NOR."); + await dialogService.ShowMessageBox("Error", "Internal error.", "OK"); + } + + // Attempt to download the modified NOR dump. If an exception is thrown, log it and show an error message. + try + { + using var binaryReader = new BinaryReader(new FileStream(TempPath, FileMode.Open)); + using var fileStream = binaryReader.BaseStream; + using var streamRef = new DotNetStreamReference(fileStream); + + await jsRuntime.InvokeVoidAsync("downloadFileFromStream", "nor.bin", streamRef); + } + catch (Exception ex) + { + logger.LogError(ex, "Error creating NOR download."); + await dialogService.ShowMessageBox("Error", "Internal error.", "OK"); + } + } +} \ No newline at end of file diff --git a/NorModifierWeb/Pages/Uart.razor b/NorModifierWeb/Pages/Uart.razor new file mode 100644 index 0000000..63bef19 --- /dev/null +++ b/NorModifierWeb/Pages/Uart.razor @@ -0,0 +1,165 @@ +@page "/uart" + +@using NorModifierLib.Interfaces +@using NorModifierLib.Data +@using NorModifierWeb.Data + + + This browser does not support the WebSerial API. + + + + + + Read Errors from UART + + + + + Clear Errors from UART + + + + + + + + + No errors. + + + Error + RTC + Power State + Boot Cause + Device Power + Sequence Number + Env Temp + SoC Temp + + + + @($"{context.RawCode:X8}") + @context.Code + + + @($"{context.Rtc:X8}") + @context.Rtc + + + @($"{context.RawPowerState:X8}") + @context.PowerStateA - @context.PowerStateB + + + @($"{context.RawBootCause:X8}") + @context.BootCause + + + @($"{context.RawDevicePowerManagement:X4}") +
+ HDMI + BDD + HDMI-CEC + USB + WiFi +
+
+ + @($"{context.RawSequenceNumber:X4}") + @context.SequenceNumber + + + @($"{context.RawEnvironmentTemperature:X4}") + @context.EnvironmentTemperature + + + @($"{context.RawChipTemperature:X4}") + @context.ChipTemperature + +
+
+
+ +@code +{ + [Inject] + private ILogger logger { get; set; } = default!; + + [Inject] + private IDialogService dialogService { get; set; } = default!; + + [Inject] + private WebSerialPort serialPort { get; set; } = default!; + + [Inject] + private IUartService uartService { get; set; } = default!; + + private bool _serialSupported; + + private IEnumerable _errors = []; + private Dictionary _showRawError = new(); + + protected override async Task OnInitializedAsync() + { + _serialSupported = await serialPort.IsSupported(); + } + + /// + /// Attempts to open the web serial port and read the error messages from the UART. + /// + /// A Task for the error read operation. + private async Task ReadErrors() + { + // Attempt to open the web serial port, if unsuccessful, show an error message and return + if (!await serialPort.OpenAsync()) + { + await dialogService.ShowMessageBox("Error", "Failed to open serial port.", "OK"); + return; + } + + // Attempt to read the error messages from the UART, if unsuccessful, log the error and show an error message + try + { + _errors = await uartService.GetErrorsAsync(serialPort); + } + catch (Exception ex) + { + logger.LogError(ex, "Error reading UART errors"); + await dialogService.ShowMessageBox("Error", "Failed to read errors from UART.", "OK"); + } + finally + { + await serialPort.CloseAsync(); + } + } + + /// + /// Attempts to open the web se rial port and clear the error messages from the UART. + /// + /// A Task for the error clear operation. + private async Task ClearErrors() + { + // Attempt to open the web serial port, if unsuccessful, show an error message and return + if (!await serialPort.OpenAsync()) + { + await dialogService.ShowMessageBox("Error", "Failed to connect to UART.", "OK"); + return; + } + + // Attempt to clear the error messages from the UART, if unsuccessful, log the error and show an error message + try + { + await uartService.ClearErrorsAsync(serialPort); + await dialogService.ShowMessageBox("Success", "Error log has been cleared.", "OK"); + } + catch (Exception ex) + { + logger.LogError(ex, "Error clearing UART errors"); + await dialogService.ShowMessageBox("Error", "Failed to clear errors from UART.", "OK"); + } + finally + { + await serialPort.CloseAsync(); + } + } +} \ No newline at end of file diff --git a/NorModifierWeb/Program.cs b/NorModifierWeb/Program.cs new file mode 100644 index 0000000..1bfd163 --- /dev/null +++ b/NorModifierWeb/Program.cs @@ -0,0 +1,20 @@ +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using NorModifierWeb; +using MudBlazor.Services; +using NorModifierLib.Interfaces; +using NorModifierLib.Services; +using NorModifierWeb.Data; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.RootComponents.Add("#app"); +builder.RootComponents.Add("head::after"); + +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); +builder.Services.AddMudServices(); + +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); + +await builder.Build().RunAsync(); diff --git a/NorModifierWeb/Properties/launchSettings.json b/NorModifierWeb/Properties/launchSettings.json new file mode 100644 index 0000000..cab22f6 --- /dev/null +++ b/NorModifierWeb/Properties/launchSettings.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "http://localhost:5141", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7129;http://localhost:5141", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/NorModifierWeb/_Imports.razor b/NorModifierWeb/_Imports.razor new file mode 100644 index 0000000..ea6791d --- /dev/null +++ b/NorModifierWeb/_Imports.razor @@ -0,0 +1,15 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using NorModifierWeb +@using NorModifierWeb.Layout +@using MudBlazor +@using NorModifierLib.Data +@using NorModifierLib.Enumerators +@using NorModifierLib.Exceptions +@using NorModifierLib.Services \ No newline at end of file diff --git a/NorModifierWeb/wwwroot/css/app.css b/NorModifierWeb/wwwroot/css/app.css new file mode 100644 index 0000000..7bc88b2 --- /dev/null +++ b/NorModifierWeb/wwwroot/css/app.css @@ -0,0 +1,88 @@ +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid red; +} + +.validation-message { + color: red; +} + +#blazor-error-ui { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.loading-progress { + position: relative; + display: block; + width: 8rem; + height: 8rem; + margin: 20vh auto 1rem auto; +} + + .loading-progress circle { + fill: none; + stroke: #e0e0e0; + stroke-width: 0.6rem; + transform-origin: 50% 50%; + transform: rotate(-90deg); + } + + .loading-progress circle:last-child { + stroke: #1b6ec2; + stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; + transition: stroke-dasharray 0.05s ease-in-out; + } + +.loading-progress-text { + position: absolute; + text-align: center; + font-weight: bold; + inset: calc(20vh + 3.25rem) 0 auto 0.2rem; +} + + .loading-progress-text:after { + content: var(--blazor-load-percentage-text, "Loading"); + } + +code { + color: #c02d76; +} + +.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder { + color: var(--bs-secondary-color); + text-align: end; +} + +.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder { + text-align: start; +} \ No newline at end of file diff --git a/NorModifierWeb/wwwroot/icon-192.png b/NorModifierWeb/wwwroot/icon-192.png new file mode 100644 index 0000000..166f56d Binary files /dev/null and b/NorModifierWeb/wwwroot/icon-192.png differ diff --git a/NorModifierWeb/wwwroot/index.html b/NorModifierWeb/wwwroot/index.html new file mode 100644 index 0000000..4c8ecfe --- /dev/null +++ b/NorModifierWeb/wwwroot/index.html @@ -0,0 +1,48 @@ + + + + + + + NorModifierWeb + + + + + + + + +
+ + + + +
+
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + + + diff --git a/NorModifierWeb/wwwroot/js/serial.js b/NorModifierWeb/wwwroot/js/serial.js new file mode 100644 index 0000000..9a4b143 --- /dev/null +++ b/NorModifierWeb/wwwroot/js/serial.js @@ -0,0 +1,86 @@ +var serialPort; + +function serialIsSupported() { + return navigator.serial ? true : false; +} + +async function serialRequestPort() { + try { + serialPort = await navigator.serial.requestPort(); + return true; + } + catch (err) { + console.error("Serial request error:", err); + return false; + } +} + +async function serialOpen(baudRate) { + try { + await serialPort.open({ baudRate: baudRate }); + //await serialPort.setSignals({ rts: true }); + return true; + } + catch (err) { + console.error("Serial open error:", err); + return false; + } +} + +async function serialClose() { + await serialPort.close(); +} + +async function serialWrite(text) { + let writer; + let writableStreamClosed; + try { + const textEncoder = new TextEncoderStream(); + writableStreamClosed = textEncoder.readable.pipeTo(serialPort.writable); + writer = textEncoder.writable.getWriter(); + + await writer.write(text); + return true; + } catch (err) { + console.error("Serial write error:", err); + } finally { + if (writer) { + await writer.close(); + await writableStreamClosed; + writer.releaseLock(); + } + } + + return false; +} + +async function serialRead() { + const textDecoder = new TextDecoderStream(); + const readableStreamClosed = serialPort.readable.pipeTo(textDecoder.writable); + const reader = textDecoder.readable.getReader(); + + let buffer = ''; + + try { + while (true) { + const { value, done } = await reader.read(); + if (done) break; + + buffer += value; + + const match = buffer.match(/(.*?)(\r\n|\n|\r)/); + if (match) { + return match[1].trim(); + } + } + } catch (err) { + console.error("Serial read error:", err); + } finally { + await reader.cancel(); + reader.releaseLock(); + try { await readableStreamClosed; } catch (_) { } + } + + return null; +} + diff --git a/PS5 NOR Modifier Standalone.zip b/PS5 NOR Modifier Standalone.zip deleted file mode 100644 index aa007f1..0000000 Binary files a/PS5 NOR Modifier Standalone.zip and /dev/null differ diff --git a/PS5 NOR Modifier.sln b/PS5 NOR Modifier.sln index 1cfcbf0..bc16f3c 100644 --- a/PS5 NOR Modifier.sln +++ b/PS5 NOR Modifier.sln @@ -5,6 +5,14 @@ VisualStudioVersion = 17.3.32901.215 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PS5 NOR Modifier", "PS5 NOR Modifier\PS5 NOR Modifier.csproj", "{BBBF9E78-9480-436A-92F1-B5B8943BCDEF}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UART-CL By TheCod3r", "UART-CL By TheCod3r\UART-CL By TheCod3r.csproj", "{5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UART-CL Tests", "UART-CL Tests\UART-CL Tests.csproj", "{0E155073-52EB-4771-A9CB-E6FD7DC42D2E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NorModifierLib", "NorModifierLib\NorModifierLib.csproj", "{5E047A92-075B-4C7F-87CA-B708320F80A9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NorModifierWeb", "NorModifierWeb\NorModifierWeb.csproj", "{677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +29,38 @@ Global {BBBF9E78-9480-436A-92F1-B5B8943BCDEF}.Release|Any CPU.Build.0 = Release|Any CPU {BBBF9E78-9480-436A-92F1-B5B8943BCDEF}.Release|x86.ActiveCfg = Release|x86 {BBBF9E78-9480-436A-92F1-B5B8943BCDEF}.Release|x86.Build.0 = Release|x86 + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Debug|x86.ActiveCfg = Debug|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Debug|x86.Build.0 = Debug|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Release|Any CPU.Build.0 = Release|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Release|x86.ActiveCfg = Release|Any CPU + {5BFC3B50-FB68-9995-F3B4-D8498BD3C7E1}.Release|x86.Build.0 = Release|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Debug|x86.ActiveCfg = Debug|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Debug|x86.Build.0 = Debug|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Release|Any CPU.Build.0 = Release|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Release|x86.ActiveCfg = Release|Any CPU + {0E155073-52EB-4771-A9CB-E6FD7DC42D2E}.Release|x86.Build.0 = Release|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Debug|x86.ActiveCfg = Debug|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Debug|x86.Build.0 = Debug|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Release|Any CPU.Build.0 = Release|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Release|x86.ActiveCfg = Release|Any CPU + {5E047A92-075B-4C7F-87CA-B708320F80A9}.Release|x86.Build.0 = Release|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Debug|Any CPU.Build.0 = Debug|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Debug|x86.ActiveCfg = Debug|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Debug|x86.Build.0 = Debug|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Release|Any CPU.ActiveCfg = Release|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Release|Any CPU.Build.0 = Release|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Release|x86.ActiveCfg = Release|Any CPU + {677BEA2B-3A03-CA22-A4A6-DB26F4EB8238}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PS5 NOR Modifier/obj/Debug/PS5 NOR Modifier.1.0.0.nuspec b/PS5 NOR Modifier/obj/Debug/PS5 NOR Modifier.1.0.0.nuspec deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs b/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs deleted file mode 100644 index fea4009..0000000 --- a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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::System.Windows.Forms; diff --git a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers b/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.pdb b/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.pdb deleted file mode 100644 index f8c1564..0000000 Binary files a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5 NOR Modifier.pdb and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources b/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources deleted file mode 100644 index 6a510da..0000000 Binary files a/PS5 NOR Modifier/obj/Debug/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/PS5 NOR Modifier/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll deleted file mode 100644 index 4ad4a84..0000000 Binary files a/PS5 NOR Modifier/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/PS5 NOR Modifier.csproj.nuget.g.targets b/PS5 NOR Modifier/obj/PS5 NOR Modifier.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/PS5 NOR Modifier/obj/PS5 NOR Modifier.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/Release/PS5 NOR Modifier.1.0.0.nuspec b/PS5 NOR Modifier/obj/Release/PS5 NOR Modifier.1.0.0.nuspec deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs deleted file mode 100644 index bc66c1f..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyTitleAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache deleted file mode 100644 index ff84b70..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0905e048a579f1f5fc3c914c9da10ab85fe3fde8 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9fcb696..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,16 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net6.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = PS5_NOR_Modifier -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs deleted file mode 100644 index fea4009..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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::System.Windows.Forms; diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.assets.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.assets.cache deleted file mode 100644 index 0467a85..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.assets.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache deleted file mode 100644 index 1ec9007..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.CopyComplete b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache deleted file mode 100644 index c28ee7e..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -104dc47a7cc9b677169d69d0e9fa6a9cb683770b diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.FileListAbsolute.txt b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.FileListAbsolute.txt deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache deleted file mode 100644 index 011eb67..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json deleted file mode 100644 index cf56685..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - } - } - }, - "libraries": { - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "path": "runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "path": "system.io.ports/8.0.0", - "hashPath": "system.io.ports.8.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json deleted file mode 100644 index de0f4d1..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\TheCod3r\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\TheCod3r\\.nuget\\packages", - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.dll deleted file mode 100644 index 4cb46d2..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache deleted file mode 100644 index 0bb648c..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -99fa3dff72da2458eca15640e2752da056b417db diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources deleted file mode 100644 index ea60496..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources b/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources deleted file mode 100644 index 6a510da..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll deleted file mode 100644 index 4ad4a84..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/apphost.exe b/PS5 NOR Modifier/obj/Release/net6.0-windows/apphost.exe deleted file mode 100644 index 6ae8207..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/apphost.exe and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/ref/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/ref/PS5 NOR Modifier.dll deleted file mode 100644 index f3fcf32..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/ref/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/refint/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/refint/PS5 NOR Modifier.dll deleted file mode 100644 index f3fcf32..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/refint/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/Launcher.exe b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/Launcher.exe deleted file mode 100644 index 73c8193..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/Launcher.exe and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfo.cs b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfo.cs deleted file mode 100644 index bc66c1f..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyTitleAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfoInputs.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfoInputs.cache deleted file mode 100644 index ff84b70..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0905e048a579f1f5fc3c914c9da10ab85fe3fde8 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 13e6fc9..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net6.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.EnableSingleFileAnalyzer = true -build_property.EnableTrimAnalyzer = -build_property.IncludeAllContentForSelfExtract = -build_property.RootNamespace = PS5_NOR_Modifier -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GlobalUsings.g.cs b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GlobalUsings.g.cs deleted file mode 100644 index fea4009..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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::System.Windows.Forms; diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.assets.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.assets.cache deleted file mode 100644 index e433d10..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.assets.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.AssemblyReference.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.AssemblyReference.cache deleted file mode 100644 index 2534fbf..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.AssemblyReference.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.CoreCompileInputs.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.CoreCompileInputs.cache deleted file mode 100644 index a63b506..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -2c3e6b4db1f3da8984ca8a19c2a95eea05ad8946 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.FileListAbsolute.txt b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.FileListAbsolute.txt deleted file mode 100644 index ac8fa88..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,17 +0,0 @@ -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\Release\net6.0-windows\win-x86\PS5 NOR Modifier.deps.json -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\Release\net6.0-windows\win-x86\PS5 NOR Modifier.runtimeconfig.json -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\Release\net6.0-windows\win-x86\PS5 NOR Modifier.exe -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\Release\net6.0-windows\win-x86\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5_NOR_Modifier.Form1.resources -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5_NOR_Modifier.Properties.Resources.resources -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.csproj.GenerateResource.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\refint\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\Release\net6.0-windows\win-x86\ref\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\Release\net6.0-windows\win-x86\PS5 NOR Modifier.dll.config diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.GenerateResource.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.GenerateResource.cache deleted file mode 100644 index 763b37f..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.csproj.GenerateResource.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.dll deleted file mode 100644 index 72b71d1..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.genruntimeconfig.cache b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.genruntimeconfig.cache deleted file mode 100644 index 9ae42aa..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5 NOR Modifier.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -03033781f3ceaeed8a47a5830e6f428743683b75 diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Form1.resources b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Form1.resources deleted file mode 100644 index e0d4c59..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Form1.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Properties.Resources.resources b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Properties.Resources.resources deleted file mode 100644 index 6a510da..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PS5_NOR_Modifier.Properties.Resources.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.c10d7b956b.txt b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.c10d7b956b.txt deleted file mode 100644 index 095a3ab..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.c10d7b956b.txt +++ /dev/null @@ -1,7 +0,0 @@ -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\PS5 NOR Modifier.pdb -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\D3DCompiler_47_cor3.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\PenImc_cor3.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\PresentationNative_cor3.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\vcruntime140_cor3.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\wpfgfx_cor3.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\publish\PS5 NOR Modifier.exe diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.cdbd6ff0f2.txt b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.cdbd6ff0f2.txt deleted file mode 100644 index 85b5c7e..0000000 --- a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/PublishOutputs.cdbd6ff0f2.txt +++ /dev/null @@ -1,2 +0,0 @@ -C:\Users\TheCod3r\Desktop\PS5 NOR Modifier\PS5 NOR Modifier.dll.config -C:\Users\TheCod3r\Desktop\PS5 NOR Modifier\PS5 NOR Modifier.exe diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/apphost.exe b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/apphost.exe deleted file mode 100644 index 6ae8207..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/apphost.exe and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/ref/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/ref/PS5 NOR Modifier.dll deleted file mode 100644 index e509324..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/ref/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/refint/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/refint/PS5 NOR Modifier.dll deleted file mode 100644 index e509324..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/refint/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/singlefilehost.exe b/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/singlefilehost.exe deleted file mode 100644 index eb37e47..0000000 Binary files a/PS5 NOR Modifier/obj/Release/net6.0-windows/win-x86/singlefilehost.exe and /dev/null differ diff --git a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.dgspec.json b/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.dgspec.json deleted file mode 100644 index 909f38b..0000000 --- a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.dgspec.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj": {} - }, - "projects": { - "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj", - "projectName": "PS5 NOR Modifier", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\obj\\publish\\win-x86\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0-windows" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0-windows7.0": { - "targetAlias": "net6.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0-windows7.0": { - "targetAlias": "net6.0-windows", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - }, - "Microsoft.WindowsDesktop.App.WindowsForms": { - "privateAssets": "none" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x86": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.props b/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.props deleted file mode 100644 index b67618a..0000000 --- a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\TheCod3r\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.3.0 - - - - - - \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.targets b/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/PS5 NOR Modifier/obj/publish/win-x86/PS5 NOR Modifier.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/publish/win-x86/project.assets.json b/PS5 NOR Modifier/obj/publish/win-x86/project.assets.json deleted file mode 100644 index 9ee596c..0000000 --- a/PS5 NOR Modifier/obj/publish/win-x86/project.assets.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0-windows7.0": {}, - "net6.0-windows7.0/win-x86": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net6.0-windows7.0": [] - }, - "packageFolders": { - "C:\\Users\\TheCod3r\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj", - "projectName": "PS5 NOR Modifier", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\obj\\publish\\win-x86\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0-windows" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0-windows7.0": { - "targetAlias": "net6.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0-windows7.0": { - "targetAlias": "net6.0-windows", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - }, - "Microsoft.WindowsDesktop.App.WindowsForms": { - "privateAssets": "none" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x86": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/publish/win-x86/project.nuget.cache b/PS5 NOR Modifier/obj/publish/win-x86/project.nuget.cache deleted file mode 100644 index c15dcc5..0000000 --- a/PS5 NOR Modifier/obj/publish/win-x86/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "KP7zNsXGSxUI5pN9/uep4EIphIH8T+HL4hDOXVOZ5++3JFZ/X3CgEOy/h4ItGNOaCjno3vrhm8IrkhwZmviI3Q==", - "success": true, - "projectFilePath": "C:\\Users\\TheCod3r\\source\\repos\\PS5 NOR Modifier\\PS5 NOR Modifier\\PS5 NOR Modifier.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs deleted file mode 100644 index 10edafb..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyTitleAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache deleted file mode 100644 index d2e8afb..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -eb25b2fe1471df89aadd004687d45f0dcd63d87b diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9fcb696..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,16 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net6.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = PS5_NOR_Modifier -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\ diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs deleted file mode 100644 index fea4009..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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::System.Windows.Forms; diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.assets.cache b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.assets.cache deleted file mode 100644 index 2d3d32c..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.assets.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache deleted file mode 100644 index 2534fbf..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.deps.json b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.deps.json deleted file mode 100644 index fbeaac4..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.deps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": {} - }, - "libraries": {} -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json deleted file mode 100644 index 524b977..0000000 --- a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\TheCod3r\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\TheCod3r\\.nuget\\packages", - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configProperties": { - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll deleted file mode 100644 index 4ad4a84..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs deleted file mode 100644 index bc66c1f..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyTitleAttribute("PS5 NOR Modifier")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache deleted file mode 100644 index ff84b70..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0905e048a579f1f5fc3c914c9da10ab85fe3fde8 diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9fcb696..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,16 +0,0 @@ -is_global = true -build_property.ApplicationManifest = -build_property.StartupObject = -build_property.ApplicationDefaultFont = -build_property.ApplicationHighDpiMode = -build_property.ApplicationUseCompatibleTextRendering = -build_property.ApplicationVisualStyles = -build_property.TargetFramework = net6.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = PS5_NOR_Modifier -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs deleted file mode 100644 index fea4009..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.GlobalUsings.g.cs +++ /dev/null @@ -1,10 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Drawing; -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::System.Windows.Forms; diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.assets.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.assets.cache deleted file mode 100644 index 836e0fa..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.assets.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache deleted file mode 100644 index 1ec9007..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.AssemblyReference.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.CopyComplete b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache deleted file mode 100644 index 85f52b9..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3bc8272a48016ce5bd6e96dc4aa389ea09dcbfce diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.FileListAbsolute.txt b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.FileListAbsolute.txt deleted file mode 100644 index 603618c..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,26 +0,0 @@ -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\PS5 NOR Modifier.exe -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\PS5 NOR Modifier.dll.config -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\PS5 NOR Modifier.deps.json -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\PS5 NOR Modifier.runtimeconfig.json -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\bin\x86\Release\net6.0-windows\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5_NOR_Modifier.Form1.resources -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5_NOR_Modifier.Properties.Resources.resources -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.csproj.GenerateResource.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.csproj.CopyComplete -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\refint\PS5 NOR Modifier.dll -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\PS5 NOR Modifier.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\PS5 NOR Modifier\PS5 NOR Modifier\obj\x86\Release\net6.0-windows\ref\PS5 NOR Modifier.dll diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache deleted file mode 100644 index 0d65b4f..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.csproj.GenerateResource.cache and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json deleted file mode 100644 index cf56685..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.deps.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - } - } - }, - "libraries": { - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "path": "runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "path": "system.io.ports/8.0.0", - "hashPath": "system.io.ports.8.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json deleted file mode 100644 index de0f4d1..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.designer.runtimeconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "6.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\TheCod3r\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\TheCod3r\\.nuget\\packages", - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.dll deleted file mode 100644 index 1e15952..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache deleted file mode 100644 index 0bb648c..0000000 --- a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5 NOR Modifier.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -99fa3dff72da2458eca15640e2752da056b417db diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources deleted file mode 100644 index 3efb567..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Form1.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources deleted file mode 100644 index 6a510da..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/PS5_NOR_Modifier.Properties.Resources.resources and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll deleted file mode 100644 index 4ad4a84..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/apphost.exe b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/apphost.exe deleted file mode 100644 index 6ae8207..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/apphost.exe and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/ref/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/ref/PS5 NOR Modifier.dll deleted file mode 100644 index 92521d1..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/ref/PS5 NOR Modifier.dll and /dev/null differ diff --git a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/refint/PS5 NOR Modifier.dll b/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/refint/PS5 NOR Modifier.dll deleted file mode 100644 index 92521d1..0000000 Binary files a/PS5 NOR Modifier/obj/x86/Release/net6.0-windows/refint/PS5 NOR Modifier.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/Commands/NorCommands.cs b/UART-CL By TheCod3r/Commands/NorCommands.cs new file mode 100644 index 0000000..60b13fa --- /dev/null +++ b/UART-CL By TheCod3r/Commands/NorCommands.cs @@ -0,0 +1,278 @@ +using Spectre.Console; +using Spectre.Console.Cli; +using NorModifierLib.Enumerators; +using System.ComponentModel; +using Microsoft.Extensions.Logging; +using NorModifierLib.Services; +using NorModifierLib.Data; + +namespace UART_CL_By_TheCod3r.Commands; + +public class NorCommands(ILogger logger, NorService norService) : Command +{ + public class Settings : CommandSettings + { + [CommandArgument(0, "")] + [Description("Path to the NOR dump file")] + public string Path { get; set; } = string.Empty; + + [CommandOption("-e|--edition ")] + [Description("Change the edition of the NOR dump (Disc, Digital, or Slim)")] + public Edition? Edition { get; set; } + + [CommandOption("-s|--serial ")] + [Description("Change the console serial number")] + public string? ConsoleSerial { get; set; } + + [CommandOption("-m|--motherboardSerial ")] + [Description("Change the motherboard serial number")] + public string? MotherboardSerial { get; set; } + + [CommandOption("-o|--model ")] + [Description("Change the model")] + public string? Model { get; set; } + } + + public override int Execute(CommandContext context, Settings settings) + { + AnsiConsole.WriteLine(); + logger.LogInformation("Executing NOR command with settings: {Settings}", settings); + + NorInfo norInfo; + try + { + norInfo = norService.ReadNor(settings.Path); + } + catch + { + logger.LogError("Failed to read NOR dump file."); + AnsiConsole.MarkupLine("[red]Failed to read NOR dump file. See log for details.[/]"); + return -1; + } + + var table = new Table() + { + Title = new TableTitle("NOR Properties"), + }; + var redStyle = new Style(Color.Red); + var blueStyle = new Style(Color.Blue); + var greenStyle = new Style(Color.Green); + + // No properties are going to be changed, so just display the current NOR properties + if (settings.Edition is null && + settings.ConsoleSerial is null && + settings.MotherboardSerial is null && + settings.Model is null) + { + logger.LogInformation("Displaying NOR properties without modification."); + + table.AddColumn(new TableColumn("Property").Centered()); + table.AddColumn(new TableColumn("Value").Centered()); + + table.AddRow(new Text[] { + new("PS5 Version", redStyle), + new(norInfo.Edition.ToString(), blueStyle), + }); + table.AddRow(new Text[] { + new("Model", redStyle), + new(norInfo.Model, blueStyle), + }); + table.AddRow(new Text[] { + new("Serial", redStyle), + new(norInfo.ConsoleSerialNumber, blueStyle), + }); + table.AddRow(new Text[] { + new("Motherboard Serial", redStyle), + new(norInfo.MotherboardSerialNumber, blueStyle), + }); + table.AddRow(new Text[] { + new("WiFi MAC Addr", redStyle), + new(norInfo.WiFiMac, blueStyle), + }); + table.AddRow(new Text[] { + new("LAN MAC Addr", redStyle), + new(norInfo.LanMac, blueStyle), + }); + + AnsiConsole.Write(table); + AnsiConsole.WriteLine(); + + // Display top 5 log entries + var logTable = new Table() + { + Title = new TableTitle("Error Log"), + }; + + logTable.AddColumn(new TableColumn("Error").Centered()); + logTable.AddColumn(new TableColumn("RTC").Centered()); + logTable.AddColumn(new TableColumn("Power State").Centered()); + logTable.AddColumn(new TableColumn("Boot Cause").Centered()); + logTable.AddColumn(new TableColumn("Device Power").Centered()); + logTable.AddColumn(new TableColumn("Sequence Number").Centered()); + logTable.AddColumn(new TableColumn("Env Temp").Centered()); + logTable.AddColumn(new TableColumn("SoC Temp").Centered()); + + var errors = norInfo.Errors.Take(5); + + if (!errors.Any()) + { + logTable.AddRow(new Text("No Errors", greenStyle)); + } + + foreach (var error in errors) + { + logTable.AddRow([new Text($"{error.RawCode:X8}", blueStyle).Centered(), + new Text($"{error.Rtc:X8}", blueStyle).Centered(), + new Text($"{error.RawPowerState:X8}", blueStyle).Centered(), + new Text($"{error.RawBootCause:X8}", blueStyle).Centered(), + new Text($"{error.RawDevicePowerManagement:X4}", blueStyle).Centered(), + new Text($"{error.RawSequenceNumber:X4}", blueStyle).Centered(), + new Text($"{error.RawEnvironmentTemperature:X4}", blueStyle).Centered(), + new Text($"{error.RawChipTemperature:X4}", blueStyle).Centered(), + ]); + logTable.AddRow([ + new Text(error.Code, greenStyle), + new Text(string.Empty), + new Text($"{error.PowerStateA}-{error.PowerStateB}", greenStyle), + new Text(error.BootCause, greenStyle), + new Markup($"[{(error.HdmiPower ? """green""" : """red""")}]HDMI[/] " + + $"[{(error.BddPower ? """green""" : """red""")}]BDD[/] " + + $"[{(error.HdmiCecPower ? """green""" : """red""")}]HDMI-CEC[/] " + + $"[{(error.UsbPower ? """green""" : """red""")}]USB[/] " + + $"[{(error.WifiPower ? """green""" : """red""")}]WiFi[/]"), + new Text(error.SequenceNumber.Replace(", ", Environment.NewLine), greenStyle), + new Text(error.EnvironmentTemperature, greenStyle), + new Text(error.ChipTemperature, greenStyle), + ]); + logTable.AddEmptyRow(); + } + + AnsiConsole.Write(logTable); + + return 0; + } + + if (settings.Edition is Edition edition) + { + logger.LogInformation("Setting edition to {Edition}", edition); + + try + { + norService.SetEdition(norInfo, edition); + } + catch + { + logger.LogError("Failed to set edition."); + AnsiConsole.MarkupLine("[red]Failed to set edition. See log for details.[/]"); + return -1; + } + + AnsiConsole.MarkupLine("[green]Successfully set edition.[/]"); + } + + if (settings.ConsoleSerial is string serial) + { + logger.LogInformation("Setting console serial to {Serial}", serial); + + try + { + norService.SetConsoleSerial(norInfo, serial); + } + catch + { + logger.LogError("Failed to set console serial."); + AnsiConsole.MarkupLine("[red]Failed to set console serial. See log for details.[/]"); + return -1; + } + + AnsiConsole.MarkupLine("[green]Successfully set console serial.[/]"); + } + + if (settings.MotherboardSerial is string motherboardSerial) + { + logger.LogInformation("Setting motherboard serial to {MotherboardSerial}", motherboardSerial); + + try + { + norService.SetMotherboardSerial(norInfo, motherboardSerial); + } + catch + { + logger.LogError("Failed to set motherboard serial."); + AnsiConsole.MarkupLine("[red]Failed to set motherboard serial. See log for details.[/]"); + return -1; + } + + AnsiConsole.MarkupLine("[green]Successfully set motherboard serial.[/]"); + } + + if (settings.Model is string model) + { + logger.LogInformation("Setting model to {Model}", model); + + try + { + norService.SetModel(norInfo, model); + } + catch + { + logger.LogError("Failed to set model."); + AnsiConsole.MarkupLine("[red]Failed to set model. See log for details.[/]"); + return -1; + } + + AnsiConsole.MarkupLine("[green]Successfully set model.[/]"); + } + + NorInfo modifiedNorInfo; + try + { + modifiedNorInfo = norService.ReadNor(settings.Path); + } + catch + { + logger.LogError("Failed to read modified NOR dump file."); + AnsiConsole.MarkupLine("[red]Failed to read modified NOR dump file. See log for details.[/]"); + return -1; + } + + table.AddColumn(new TableColumn("Property").Centered()); + table.AddColumn(new TableColumn("Original Value").Centered()); + table.AddColumn(new TableColumn("Modified Value").Centered()); + + table.AddRow(new Text[] { + new("PS5 Version", redStyle), + new(norInfo.Edition.ToString(), blueStyle), + new(modifiedNorInfo.Edition.ToString(), greenStyle), + }); + table.AddRow(new Text[] { + new("Model", redStyle), + new(norInfo.Model, blueStyle), + new(modifiedNorInfo.Model, greenStyle), + }); + table.AddRow(new Text[] { + new("Serial", redStyle), + new(norInfo.ConsoleSerialNumber, blueStyle), + new(modifiedNorInfo.ConsoleSerialNumber, greenStyle), + }); + table.AddRow(new Text[] { + new("Motherboard Serial", redStyle), + new(norInfo.MotherboardSerialNumber, blueStyle), + new(modifiedNorInfo.MotherboardSerialNumber, greenStyle), + }); + table.AddRow(new Text[] { + new("WiFi MAC Addr", redStyle), + new(norInfo.WiFiMac, blueStyle), + new(modifiedNorInfo.WiFiMac, greenStyle), + }); + table.AddRow(new Text[] { + new("LAN MAC Addr", redStyle), + new(norInfo.LanMac, blueStyle), + new(modifiedNorInfo.LanMac, greenStyle), + }); + + AnsiConsole.Write(table); + + return 0; + } +} diff --git a/UART-CL By TheCod3r/Commands/UartCommands.cs b/UART-CL By TheCod3r/Commands/UartCommands.cs new file mode 100644 index 0000000..d4b2fd8 --- /dev/null +++ b/UART-CL By TheCod3r/Commands/UartCommands.cs @@ -0,0 +1,126 @@ +using System.ComponentModel; +using Microsoft.Extensions.Logging; +using Spectre.Console; +using Spectre.Console.Cli; +using NorModifierLib.Data; +using NorModifierLib.Services; +using UART_CL_By_TheCod3r.Data; + +namespace UART_CL_By_TheCod3r.Commands; + +public class UartCommands(ILogger logger, UartService uartService, ErrorCodeService errorCodeService) : AsyncCommand +{ + public class Settings : CommandSettings + { + [CommandArgument(0, "")] + [Description("The serial port to use for UART commands")] + public string Path { get; set; } = string.Empty; + + [CommandOption("-c|--clear")] + [Description("Clear error codes from the device")] + public bool? Clear { get; set; } + } + + public override async Task ExecuteAsync(CommandContext context, Settings settings) + { + logger.LogInformation("Executing UART command with settings: {Settings}", settings); + + SerialPort serialPort; + try + { + serialPort = new SerialPort(settings.Path); + serialPort.Open(); + } + catch (Exception ex) + { + logger.LogError(ex, "Failed to open serial port: {Path}", settings.Path); + AnsiConsole.MarkupLineInterpolated($"[red]Failed to open serial port: {settings.Path}. See log for details.[/]"); + return -1; + } + + // Clear errors flag specified + if (settings.Clear is true) + { + try + { + await uartService.ClearErrorsAsync(serialPort); + logger.LogInformation("Cleared errors."); + AnsiConsole.MarkupLine("[green]Cleared errors.[/]"); + } + catch + { + logger.LogError("Failed to clear errors."); + AnsiConsole.MarkupLine("[red]Failed to clear errors. See log for details.[/]"); + return -1; + } + } + + // No option/flag specified, default behavior is list errors + IEnumerable errors; + try + { + errors = await uartService.GetErrorsAsync(serialPort); + } + catch + { + logger.LogError("Failed to get errors."); + AnsiConsole.MarkupLine("[red]Failed to get errors. See log for details.[/]"); + return -1; + } + + // Display top 5 log entries + var logTable = new Table() + { + Title = new TableTitle("Error Log"), + }; + var redStyle = new Style(Color.Red); + var blueStyle = new Style(Color.Blue); + var greenStyle = new Style(Color.Green); + + logTable.AddColumn(new TableColumn("Error").Centered()); + logTable.AddColumn(new TableColumn("RTC").Centered()); + logTable.AddColumn(new TableColumn("Power State").Centered()); + logTable.AddColumn(new TableColumn("Boot Cause").Centered()); + logTable.AddColumn(new TableColumn("Device Power").Centered()); + logTable.AddColumn(new TableColumn("Sequence Number").Centered()); + logTable.AddColumn(new TableColumn("Env Temp").Centered()); + logTable.AddColumn(new TableColumn("SoC Temp").Centered()); + + if (!errors.Any()) + { + logTable.AddRow(new Text("No Errors", greenStyle)); + } + + foreach (var error in errors) + { + logTable.AddRow([new Text($"{error.RawCode:X8}", blueStyle).Centered(), + new Text($"{error.Rtc:X8}", blueStyle).Centered(), + new Text($"{error.RawPowerState:X8}", blueStyle).Centered(), + new Text($"{error.RawBootCause:X8}", blueStyle).Centered(), + new Text($"{error.RawDevicePowerManagement:X4}", blueStyle).Centered(), + new Text($"{error.RawSequenceNumber:X4}", blueStyle).Centered(), + new Text($"{error.RawEnvironmentTemperature:X4}", blueStyle).Centered(), + new Text($"{error.RawChipTemperature:X4}", blueStyle).Centered(), + ]); + logTable.AddRow([ + new Text(error.Code, greenStyle), + new Text(string.Empty), + new Text($"{error.PowerStateA}-{error.PowerStateB}", greenStyle), + new Text(error.BootCause, greenStyle), + new Markup($"[{(error.HdmiPower ? """green""" : """red""")}]HDMI[/] " + + $"[{(error.BddPower ? """green""" : """red""")}]BDD[/] " + + $"[{(error.HdmiCecPower ? """green""" : """red""")}]HDMI-CEC[/] " + + $"[{(error.UsbPower ? """green""" : """red""")}]USB[/] " + + $"[{(error.WifiPower ? """green""" : """red""")}]WiFi[/]"), + new Text(error.SequenceNumber.Replace(", ", Environment.NewLine), greenStyle), + new Text(error.EnvironmentTemperature, greenStyle), + new Text(error.ChipTemperature, greenStyle), + ]); + logTable.AddEmptyRow(); + } + + AnsiConsole.Write(logTable); + + return 0; + } +} diff --git a/UART-CL By TheCod3r/Core/TypeRegistrar.cs b/UART-CL By TheCod3r/Core/TypeRegistrar.cs new file mode 100644 index 0000000..ec2686c --- /dev/null +++ b/UART-CL By TheCod3r/Core/TypeRegistrar.cs @@ -0,0 +1,29 @@ +using Microsoft.Extensions.DependencyInjection; +using Spectre.Console.Cli; + +namespace UART_CL_By_TheCod3r.Core; + +public class TypeRegistrar(IServiceCollection builder) : ITypeRegistrar +{ + public ITypeResolver Build() + { + return new TypeResolver(builder.BuildServiceProvider()); + } + + public void Register(Type service, Type implementation) + { + builder.AddSingleton(service, implementation); + } + + public void RegisterInstance(Type service, object implementation) + { + builder.AddSingleton(service, implementation); + } + + public void RegisterLazy(Type service, Func func) + { + ArgumentNullException.ThrowIfNull(func); + + builder.AddSingleton(service, (provider) => func()); + } +} diff --git a/UART-CL By TheCod3r/Core/TypeResolver.cs b/UART-CL By TheCod3r/Core/TypeResolver.cs new file mode 100644 index 0000000..9d9b629 --- /dev/null +++ b/UART-CL By TheCod3r/Core/TypeResolver.cs @@ -0,0 +1,24 @@ +using Spectre.Console.Cli; + +namespace UART_CL_By_TheCod3r.Core; + +public sealed class TypeResolver(IServiceProvider provider) : ITypeResolver, IDisposable +{ + public object? Resolve(Type? type) + { + if (type is null) + { + return null; + } + + return provider.GetService(type); + } + + public void Dispose() + { + if (provider is IDisposable disposable) + { + disposable.Dispose(); + } + } +} diff --git a/UART-CL By TheCod3r/Data/SerialPort.cs b/UART-CL By TheCod3r/Data/SerialPort.cs new file mode 100644 index 0000000..a4bbaa2 --- /dev/null +++ b/UART-CL By TheCod3r/Data/SerialPort.cs @@ -0,0 +1,58 @@ +using NorModifierLib.Interfaces; + +namespace UART_CL_By_TheCod3r.Data; + +public class SerialPort(string portName) : ISerialPort, IDisposable +{ + private bool disposedValue; + + public string PortName => portName; + + private System.IO.Ports.SerialPort _serialPort = default!; + + public void Open() + { + _serialPort = new(portName) + { + BaudRate = 115200, + RtsEnable = true + }; + _serialPort.Open(); + } + + public void Close() + { + _serialPort.Close(); + } + + // This is a hacky workaround as the Web Serial APIs are async and this is not + public async Task ReadLineAsync() + { + return _serialPort.ReadLine(); + } + + public async Task WriteLineAsync(string data) + { + _serialPort.WriteLine(data); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + _serialPort.Dispose(); + } + + disposedValue = true; + } + } + + public void Dispose() + { + // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method + Dispose(disposing: true); + GC.SuppressFinalize(this); + } +} diff --git a/UART-CL By TheCod3r/Help/CustomHelpProvider.cs b/UART-CL By TheCod3r/Help/CustomHelpProvider.cs new file mode 100644 index 0000000..e787ebb --- /dev/null +++ b/UART-CL By TheCod3r/Help/CustomHelpProvider.cs @@ -0,0 +1,85 @@ +using Spectre.Console.Cli.Help; +using Spectre.Console.Cli; +using Spectre.Console.Rendering; +using Spectre.Console; + +namespace UART_CL_By_TheCod3r.Help; + +/// +/// Custom help provider for the application that generates the footer +/// +/// +public class CustomHelpProvider(ICommandAppSettings settings) : HelpProvider(settings) +{ + public override IEnumerable GetFooter(ICommandModel model, ICommandInfo? command) + { + var style = new Style(Color.Yellow, Color.Default, Decoration.None); + + return [ + Text.NewLine, + new Markup("INFO:", style), + Text.NewLine, + new Markup(" UARL-CL is designed with simplicity in mind. This command line application makes it quick and easy to obtain error codes from your PlayStation 5 console."), + Text.NewLine, + Text.NewLine, + new Markup(" UART stands for Universal Asynchronous Receiver-Transmitter. UART allows you to send and receive commands to any compatible serial communications device."), + Text.NewLine, + Text.NewLine, + new Markup(" The PlayStation 5 has UART functionality built in. Unfortunately Sony don't make it easy to understand what is happening with the machine when you request " + + "error codes, which is why this application exists. UART-CL is a command-line spin off to the PS5 NOR and UART tool for Windows, which allows you to communicate " + + "via serial to your PlayStation 5. You can grab error codes from the system at the click of a button (well, a few clicks) and the software will automatically " + + "check the error codes received and attempt to convert them into plain text."), + Text.NewLine, + Text.NewLine, + new Markup(" This is done by splitting the error codes up into useful sections and then comparing those error codes against a database of codes collected by the repair " + + "community. If the code exists in the database, the application will automatically grab the error details and output them for you on the screen so you can figure " + + "out your next move."), + Text.NewLine, + Text.NewLine, + new Markup(" [blue]Where does the database come from?[/]"), + Text.NewLine, + new Markup(" The database is downloaded on first launch from uartcodes.com/xml.php. The download page is hosted by \"TheCod3r\" for free and is simply a PHP script which " + + "fetches all known error codes from the uartcodes.com database and converts them into an XML document. An XML document makes it quick and easy to work with and " + + "it's a more elegant solution to provide a database which doesn't rely on an internet connection. It can also be updated whenever you like, free of charge."), + Text.NewLine, + Text.NewLine, + new Markup(" [blue]How do I use this to fix my PS5?[/]"), + Text.NewLine, + new Markup(" You'll need a compatible serial communication (UART) device first of all. Most devices that have a transmit, receive, and ground pin and that can provide 3.3v" + + "instead of 5v should work, and you can buy one for a few bucks on eBay, Amazon or AliExpress."), + Text.NewLine, + Text.NewLine, + new Markup(" Once you have a compatible device, you'll need to:"), + Text.NewLine, + new Markup(" - Solder the transmit pin on the device to the receive pin on the PS5."), + Text.NewLine, + new Markup(" - Solder the receive pin on the device to the transmit pin on the PS5."), + Text.NewLine, + new Markup(" - Solder ground on the device to ground on the PS5."), + Text.NewLine, + new Markup(" - Connect the PS5 power chord to the PS5 power supply (do not turn on the console)"), + Text.NewLine, + new Markup(" - Use this software and select either option 1, 2 or 3 to run commands."), + Text.NewLine, + new Markup(" - Choose your device from the list of available devices."), + Text.NewLine, + new Markup(" - Let the software do the rest. Then working out a plan for the actual repair is up to you. We can't do everything ;)"), + Text.NewLine, + Text.NewLine, + new Markup(" As a personal note from myself (TheCod3r). I want to thank you for trusting my software. I'm an electronics technician primarily and I write code for fun " + + "(ironic since my name is TheCod3r, I know!). I would also like to thank the following people for inspiring me:"), + Text.NewLine, + new Markup(" Louis Rossmann, FightToRepair.org, Jessa Jones (iPad Rehab), Andy-Man (PS5 Wee Tools), my YouTube viewers, my Patreon supporters and my mom!"), + Text.NewLine, + Text.NewLine, + new Markup(" #FuckBwE"), + Text.NewLine, + new Markup(" Be sure to use the hashtag. It really pisses him off!"), + Text.NewLine, + Text.NewLine, + new Markup(" If you want to say thanks, you can buy me a coffee."), + Text.NewLine, + new Markup(" [link]https://www.streamelements.com/thecod3r/tip[/]"), + ]; + } +} diff --git a/UART-CL By TheCod3r/Program.cs b/UART-CL By TheCod3r/Program.cs new file mode 100644 index 0000000..032bf01 --- /dev/null +++ b/UART-CL By TheCod3r/Program.cs @@ -0,0 +1,48 @@ +using Microsoft.Extensions.DependencyInjection; +using NReco.Logging.File; +using Spectre.Console.Cli; +using UART_CL_By_TheCod3r.Commands; +using UART_CL_By_TheCod3r.Core; +using UART_CL_By_TheCod3r.Help; +using NorModifierLib.Services; + +var logFile = Path.Combine(AppContext.BaseDirectory, "log.txt"); + +// Configure services - logging, http client, and custom services +var services = new ServiceCollection(); + +services.AddLogging(builder => +{ + builder.AddFile(logFile, false); +}); + +services.AddHttpClient(); + +services.AddSingleton(); +services.AddSingleton(); +services.AddSingleton(); + +var registrar = new TypeRegistrar(services); + +// Configure and run the application +var app = new CommandApp(registrar); + +app.Configure(config => +{ + config.Settings.ApplicationName = "UART-CL"; + + config.AddCommand("nor") + .WithDescription("View and modify NOR dumps. Will read and display NOR properties when no options are specified.") + .WithExample("nor", "./nor.bin") + .WithExample("nor", "./nor.bin", "--serial AJ11111111"); + config.AddCommand("uart") + .WithDescription("Read and clear errors from the console UART. Will read and display errors when no options are specified.") + .WithExample("uart", "COM3") + .WithExample("uart", "COM3", "--clear") + .WithExample("uart", "/dev/ttyUSB0") + .WithExample("uart", "/dev/ttyUSB0", "--clear"); + + config.SetHelpProvider(new CustomHelpProvider(config.Settings)); +}); + +app.Run(args); \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml b/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml rename to UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml index bd9b02b..21f09ec 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml @@ -1,39 +1,39 @@ - + - - - 2 - 1.1.0.* - True - Release - True - False - true - True - Disk - True - False - True - False - Any CPU - UART-CL - bin\Release\net6.0\publish\ - bin\Release\net6.0\publish\ - TheCod3r - ClickOnce - False - True - win-x64 - True - (none) - False - net6.0 - False - Foreground - False - Publish.html - True|2024-04-28T21:23:14.6592026Z; - +--> + + + 2 + 1.1.0.* + True + Release + True + False + true + True + Disk + True + False + True + False + Any CPU + UART-CL + bin\Release\net6.0\publish\ + bin\Release\net6.0\publish\ + TheCod3r + ClickOnce + False + True + win-x64 + True + (none) + False + net6.0 + False + Foreground + False + Publish.html + True|2024-04-28T21:23:14.6592026Z; + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user b/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user rename to UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user index 06d5275..c76ec2a 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/ClickOnceProfile.pubxml.user @@ -1,10 +1,10 @@ - + - - - True|2024-04-28T21:28:11.6019250Z;True|2024-04-28T22:23:14.6592026+01:00; - - +--> + + + True|2024-04-28T21:28:11.6019250Z;True|2024-04-28T22:23:14.6592026+01:00; + + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml index 6a06ec5..de94b23 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml @@ -1,18 +1,18 @@ - + - - - Release - Any CPU - bin\Release\net6.0\publish\linux-x64\ - FileSystem - <_TargetId>Folder - net6.0 - linux-x64 - true - true - false - +--> + + + Release + Any CPU + bin\Release\net6.0\publish\linux-x64\ + FileSystem + <_TargetId>Folder + net6.0 + linux-x64 + true + true + false + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user index 49493e8..c09c61c 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -1,6 +1,6 @@ - + - +--> + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml index 6a06ec5..de94b23 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml @@ -1,18 +1,18 @@ - + - - - Release - Any CPU - bin\Release\net6.0\publish\linux-x64\ - FileSystem - <_TargetId>Folder - net6.0 - linux-x64 - true - true - false - +--> + + + Release + Any CPU + bin\Release\net6.0\publish\linux-x64\ + FileSystem + <_TargetId>Folder + net6.0 + linux-x64 + true + true + false + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user index 95a4630..29cc499 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile1.pubxml.user @@ -1,10 +1,10 @@ - + - - - True|2024-04-28T21:03:32.2559262Z;True|2024-04-27T00:21:15.8137671+01:00; - - +--> + + + True|2024-04-28T21:03:32.2559262Z;True|2024-04-27T00:21:15.8137671+01:00; + + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml index 34d5e59..154e035 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml @@ -1,13 +1,13 @@ - + - - - Release - Any CPU - bin\Release\net6.0\publish\ - FileSystem - <_TargetId>Folder - +--> + + + Release + Any CPU + bin\Release\net6.0\publish\ + FileSystem + <_TargetId>Folder + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user similarity index 97% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user rename to UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user index 2dd8787..e9ea52e 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user +++ b/UART-CL By TheCod3r/Properties/PublishProfiles/FolderProfile2.pubxml.user @@ -1,6 +1,6 @@ - + - +--> + diff --git a/UART-CL By TheCod3r/Properties/launchSettings.json b/UART-CL By TheCod3r/Properties/launchSettings.json new file mode 100644 index 0000000..26dc1a7 --- /dev/null +++ b/UART-CL By TheCod3r/Properties/launchSettings.json @@ -0,0 +1,7 @@ +{ + "profiles": { + "UART-CL By TheCod3r": { + "commandName": "Project" + } + } +} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Terminal.ico b/UART-CL By TheCod3r/Terminal.ico similarity index 100% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/Terminal.ico rename to UART-CL By TheCod3r/Terminal.ico diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj b/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj new file mode 100644 index 0000000..187f80f --- /dev/null +++ b/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj @@ -0,0 +1,44 @@ + + + + Exe + net9.0 + UART_CL_By_TheCod3r + enable + enable + Terminal.ico + False + UART-CL + + + + embedded + + + + embedded + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=./ + + + + + + + + + + + + + + + + + + + + + diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user b/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user similarity index 98% rename from UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user rename to UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user index 3ef4fb8..dd2ad5f 100644 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user +++ b/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj.user @@ -1,6 +1,6 @@ - - - - <_LastSelectedProfileId>C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\Properties\PublishProfiles\ClickOnceProfile.pubxml - + + + + <_LastSelectedProfileId>C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\Properties\PublishProfiles\ClickOnceProfile.pubxml + \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r.sln b/UART-CL By TheCod3r/UART-CL By TheCod3r.sln deleted file mode 100644 index 9ba637f..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.3.32901.215 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UART-CL By TheCod3r", "UART-CL By TheCod3r\UART-CL By TheCod3r.csproj", "{8B5DA648-23A0-4C54-A0D2-F6B5E326F308}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8B5DA648-23A0-4C54-A0D2-F6B5E326F308}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8B5DA648-23A0-4C54-A0D2-F6B5E326F308}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8B5DA648-23A0-4C54-A0D2-F6B5E326F308}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8B5DA648-23A0-4C54-A0D2-F6B5E326F308}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {BAD6A308-3F90-4873-A39E-365E07239E9B} - EndGlobalSection -EndGlobal diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/Program.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/Program.cs deleted file mode 100644 index aa87133..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/Program.cs +++ /dev/null @@ -1,1894 +0,0 @@ -using System; -using System.Diagnostics; -using System.Threading; -using System.Drawing; -using System.IO; -using System.IO.Ports; -using Colorful; -using System.Net; -using System.Management; -using System.Xml; -using System.Text; -using System.Text.RegularExpressions; -using System.Globalization; - -#region Reminders (remove before publishing) -// Add check inside sub menu to confirm that the selected .bin file is a valid PS5 dump -#endregion - -// Set the name of the application -string appTitle = "UART-CL by TheCod3r"; - -bool showMenu = false; - -// Set the application title -System.Console.Title = appTitle; - -#region Checksum generation -static string CalculateChecksum(string str) -{ - // Math stuff. I don't understand it either! - int sum = 0; - foreach (char c in str) - { - sum += (int)c; - } - return str + ":" + (sum & 0xFF).ToString("X2"); -} -#endregion - -#region Hex conversions -static string HexStringToString(string hexString) -{ - if (hexString == null || (hexString.Length & 1) == 1) - { - throw new ArgumentException(); - } - var sb = new StringBuilder(); - for (var i = 0; i < hexString.Length; i += 2) - { - var hexChar = hexString.Substring(i, 2); - sb.Append((char)Convert.ToByte(hexChar, 16)); - } - return sb.ToString(); -} - -static IEnumerable PatternAt(byte[] source, byte[] pattern) -{ - for (int i = 0; i < source.Length; i++) - { - if (source.Skip(i).Take(pattern.Length).SequenceEqual(pattern)) - { - yield return i; - } - } -} - -static byte[] ConvertHexStringToByteArray(string hexString) -{ - if (hexString.Length % 2 != 0) - { - throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, "The binary key cannot have an odd number of digits: {0}", hexString)); - } - - byte[] data = new byte[hexString.Length / 2]; - for (int index = 0; index < data.Length; index++) - { - string byteValue = hexString.Substring(index * 2, 2); - data[index] = Convert.ToByte(byteValue, 16); // Parse hex string directly - } - - return data; -} -#endregion - -#region Error parsing (via XML database) - -// When fetching errors from the PS5 we want to be able to convert the received codes into readable text to make it easier -// for the user to understand what the problem is. By the time this function is called we should have an up to date XML -// database to compare error codes with. -static string ParseErrors(string errorCode) -{ - string results = ""; - - try - { - // Check if the XML file exists - if (File.Exists("errorDB.xml")) - { - // Load the XML file - XmlDocument xmlDoc = new XmlDocument(); - xmlDoc.Load("errorDB.xml"); - - // Get the root node - XmlNode root = xmlDoc.DocumentElement; - - // Check if the root node is - if (root.Name == "errorCodes") - { - // No error was found in the database - if (root.ChildNodes.Count == 0) - { - results = "No result found for error code " + errorCode; - } - else - { - // Loop through each errorCode node - foreach (XmlNode errorCodeNode in root.ChildNodes) - { - // Check if the node is - if (errorCodeNode.Name == "errorCode") - { - // Get ErrorCode and Description - string errorCodeValue = errorCodeNode.SelectSingleNode("ErrorCode").InnerText; - string description = errorCodeNode.SelectSingleNode("Description").InnerText; - - // Check if the current error code matches the requested error code - if (errorCodeValue == errorCode) - { - // Output the results - results = "Error code: " + errorCodeValue + Environment.NewLine + "Description: " + description; - break; // Exit the loop after finding the matching error code - } - } - } - } - } - else - { - results = "Error: Invalid XML database file. Please reconfigure the application, redownload the offline database, or uncheck the option to use the offline database."; - } - } - else - { - results = "Error: Local XML file not found."; - } - } - catch (Exception ex) - { - results = "Error: " + ex.Message; - } - - return results; -} - -#endregion - -#region Obtian the friendly name of the available COM ports -static string GetFriendlyName(string portName) -{ - // Declare the friendly name variable for later use - string friendlyName = portName; - // We'll wrap this in a try loop simply because this isn't available on all platforms - try - { - // This is basically an SQL query. Let's search for the details of the ports based on the port name - // Again, this is just for Windows based devices - using (var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE Name LIKE '%" + portName + "%'")) - { - // Loop through and output the friendly name - foreach (var port in searcher.Get()) - { - friendlyName = port["Name"].ToString(); - } - } - } - // Catch errors. This would probably only happen on Linux systems - catch(Exception ex) - { - // If there is an error, we'll just declare that we don't know the name of the port - friendlyName = "Unknown Port Name"; - } - // Send the friendly name (or unknown port name string) back to the main code for output - return friendlyName; -} -#endregion - -#region Console header -static void ShowHeader() -{ - // This is the header. - System.Console.Clear(); - Colorful.Console.WriteAscii("UART-CL v1.0.0.0"); - Colorful.Console.WriteAscii("by TheCod3r"); - System.Console.WriteLine(""); - System.Console.WriteLine(""); - System.Console.WriteLine("UART-CL is a command line UART tool to assist in the diagnosis and repair of PlayStation 5 consoles using UART."); - System.Console.WriteLine("For more information on how to connect to UART you can use the options below or read the ReadMe."); - System.Console.WriteLine(""); -} -#endregion - -#region Check if error database exists -// Let's check and see if the database exists. If not, download it! -if (!System.IO.File.Exists("errorDB.xml")) -{ - ShowHeader(); - System.Console.WriteLine("Downloading latest database file. Please wait..."); - - bool success = DownloadDatabase("http://uartcodes.com/xml.php", "errorDB.xml"); - - if (success) - { - System.Console.WriteLine("Database downloaded successfully..."); - showMenu = true; - } - else - { - System.Console.WriteLine("Could not download the latest database file. Please ensure you're connected to the internet!"); - Environment.Exit(0); - } -} -else -{ - // The database file exists. Continue to the main menu - showMenu = true; -} -#endregion - -#region URL Handling - -// Let's create a function that will allow us to download the latest version of the database if we have access to the internet. -static bool DownloadDatabase(string url, string savePath) -{ - using (WebClient client = new WebClient()) - { - try - { - client.DownloadFile(url, savePath); - return true; - } - catch (Exception ex) - { - return false; - } - } -} - -// Function to open a new URL in the default browser -static void OpenUrl(string url) -{ - // Let's wait two seconds first - Thread.Sleep(2000); - // Wrap this in a try loop so we don't get any unexpected crashes - try - { - Process.Start(new ProcessStartInfo - { - FileName = url, - UseShellExecute = true - }); - } - catch (Exception ex) - { - // Catch any errors and let the user know - System.Console.WriteLine($"Error opening URL: {ex.Message}"); - } -} - -#endregion - -#region Map suffixes to regions (for console variant) -// Define a dictionary to map suffixes to regions -Dictionary regionMap = new Dictionary -{ - { "00A", "Japan" }, - { "00B", "Japan" }, - { "01A", "US, Canada, (North America)" }, - { "01B", "US, Canada, (North America)" }, - { "15A", "US, Canada, (North America)" }, - { "15B", "US, Canada, (North America)" }, - { "02A", "Australia / New Zealand, (Oceania)" }, - { "02B", "Australia / New Zealand, (Oceania)" }, - { "03A", "United Kingdom / Ireland" }, - { "03B", "United Kingdom / Ireland" }, - { "04A", "Europe / Middle East / Africa" }, - { "04B", "Europe / Middle East / Africa" }, - { "05A", "South Korea" }, - { "05B", "South Korea" }, - { "06A", "Southeast Asia / Hong Kong" }, - { "06B", "Southeast Asia / Hong Kong" }, - { "07A", "Taiwan" }, - { "07B", "Taiwan" }, - { "08A", "Russia, Ukraine, India, Central Asia" }, - { "08B", "Russia, Ukraine, India, Central Asia" }, - { "09A", "Mainland China" }, - { "09B", "Mainland China" }, - { "11A", "Mexico, Central America, South America" }, - { "11B", "Mexico, Central America, South America" }, - { "14A", "Mexico, Central America, South America" }, - { "14B", "Mexico, Central America, South America" }, - { "16A", "Europe / Middle East / Africa" }, - { "16B", "Europe / Middle East / Africa" }, - { "18A", "Singapore, Korea, Asia" }, - { "18B", "Singapore, Korea, Asia" } -}; -#endregion - -#region Display main menu -// Show the menu if showMenu is set to true -while (showMenu) -{ - showMenu = MainMenu(appTitle, regionMap); -} -#endregion - -#region Display sub menu for working with BIOS files -static void RunSubMenu(string appTitle, Dictionary regionMap) -{ - string pathToDump = ""; - bool subMenuRunning = true; - - while (subMenuRunning) - { - // Check to see if we are working with a file. If so, add it to the app title so the user is aware... - if(!string.IsNullOrEmpty(pathToDump)) - { - System.Console.Title = appTitle + " - Working with file: " + pathToDump; - } - - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("In order to work with a BIOS dump file, you will need to load it into memory first."); - System.Console.WriteLine("Be sure to choose a file to work with by choosing option 1 before choosing any other option..."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("Choose an option:"); - System.Console.ResetColor(); - System.Console.ForegroundColor = ConsoleColor.Green; - System.Console.WriteLine("1. Load a BIOS dump (.bin)"); - System.Console.ResetColor(); - System.Console.WriteLine("2. View BIOS information"); - System.Console.WriteLine("3. Convert to Digital edition"); - System.Console.WriteLine("4. Convert to Disc edition"); - System.Console.WriteLine("5. Convert to Slim edition"); - System.Console.WriteLine("6. Change serial number"); - System.Console.WriteLine("7. Change motherboard serial number"); - System.Console.WriteLine("8. Change console model number"); - System.Console.WriteLine("X. Return to previous menu"); - System.Console.Write("\nEnter your choice: "); - switch (System.Console.ReadLine()) - { - #region Load a dump file - case "1": - System.Console.WriteLine("In order to work with a BIOS file, you must first choose a file to work with."); - System.Console.WriteLine("This needs to be a valid .bin file containing your BIOS dump file."); - System.Console.WriteLine("You will need to know the full file path of your .bin file in order to continue."); - System.Console.WriteLine(); - - string userInput; - do - { - System.Console.Write("Enter the full file path (type 'exit' to quit): "); - userInput = System.Console.ReadLine().Trim(); // Trim to remove any leading/trailing whitespace - - if (string.IsNullOrWhiteSpace(userInput)) - { - System.Console.WriteLine("Invalid input. File path cannot be blank."); - } - else if (userInput.Equals("exit", StringComparison.OrdinalIgnoreCase)) - { - // User wants to return to the sub-menu - break; // Exit the current method and return to the sub-menu - } - else if (!File.Exists(userInput)) - { - System.Console.WriteLine("The file path you entered does not exist. Please enter the path to a valid .bin file."); - } - else if (Path.GetExtension(userInput) != ".bin") - { - System.Console.WriteLine("The file you provided is not a .bin file. Please enter a valid .bin file path."); - } - else - { - // User provided a valid .bin file path, you can proceed with it - pathToDump = userInput; - long length = new System.IO.FileInfo(pathToDump).Length; - System.Console.WriteLine("Selected file: " + pathToDump + " - File Size: " + length.ToString() + " bytes (" + length / 1024 / 1024 + "MB)"); - Thread.Sleep(1000); - break; // Exit the loop - } - } while (true); - break; - #endregion - #region View BIOS information - case "2": - // First check to confirm that we've selected a file to work with - if(!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - // Let's try and get some information from the .bin file - long lengthBytes = new System.IO.FileInfo(pathToDump).Length; // File size of the .bin file in bytes - long lengthMB = lengthBytes / 1024 / 1024; // File size of the .bin file in MB - - // First, declare some variables to store for later use - string PS5Version; - string ConsoleModelInfo; - string ModelInfo; - string ConsoleSerialNumber; - string MotherboardSerialNumber; - string ConsoleModel; - string WiFiMac; - string LANMac; - - // Set the offsets of the BIN file - long offsetOne = 0x1c7010; - long offsetTwo = 0x1c7030; - long serialOffset = 0x1c7210; - long variantOffset = 0x1c7226; - long moboSerialOffset = 0x1C7200; - long WiFiMacOffset = 0x1C73C0; - long LANMacOffset = 0x1C4020; - - // Declare the offset values (set them to null for now) - string offsetOneValue = null; - string offsetTwoValue = null; - string serialValue = null; - string variantValue = null; - string moboSerialValue = null; - string WiFiMacValue = null; - string LANMacValue = null; - - #region Get PS5 version - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = offsetOne; - //Read the offset - offsetOneValue = BitConverter.ToString(reader.ReadBytes(12)).Replace("-", null); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - offsetOneValue = null; - } - - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = offsetOne; - //Read the offset - offsetTwoValue = BitConverter.ToString(reader.ReadBytes(12)).Replace("-", null); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - offsetTwoValue = null; - } - - if (offsetOneValue.Contains("22020101")) - { - PS5Version = "Disc Edition"; - } - else if (offsetTwoValue.Contains("22030101")) - { - PS5Version = "Digital Edition"; - } - else if (offsetOneValue.Contains("22010101") || offsetTwoValue.Contains("22010101")) - { - PS5Version = "Slim Edition"; - } - else - { - PS5Version = "Unknown Model"; - } - #endregion - - #region Get console model and region - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = variantOffset; - variantValue = BitConverter.ToString(reader.ReadBytes(19)).Replace("-", null).Replace("FF", null); - } - } - catch - { - // Catch any exceptions and ignore, setting variantValue to null - } - - ConsoleModelInfo = HexStringToString(variantValue); - - string region = "Unknown Region"; - if (ConsoleModelInfo != null && ConsoleModelInfo.Length >= 3) - { - string suffix = ConsoleModelInfo.Substring(ConsoleModelInfo.Length - 3); - if (regionMap.ContainsKey(suffix)) - { - region = regionMap[suffix]; - } - } - - ModelInfo = HexStringToString(variantValue) + " - " + region; - #endregion - - #region Get Console Serial Number - - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = serialOffset; - //Read the offset - serialValue = BitConverter.ToString(reader.ReadBytes(17)).Replace("-", null); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - serialValue = null; - } - - - - if (serialValue != null) - { - ConsoleSerialNumber = HexStringToString(serialValue); - ConsoleSerialNumber = HexStringToString(serialValue); - - } - else - { - ConsoleSerialNumber = "Unknown S/N"; - } - - #endregion - - #region Get Motherboard Serial Number - - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = moboSerialOffset; - //Read the offset - moboSerialValue = BitConverter.ToString(reader.ReadBytes(16)).Replace("-", null); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - moboSerialValue = null; - } - - - - if (moboSerialValue != null) - { - MotherboardSerialNumber = HexStringToString(moboSerialValue); - } - else - { - MotherboardSerialNumber = "Unknown S/N"; - } - - #endregion - - #region Extract WiFi Mac Address - - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = WiFiMacOffset; - //Read the offset - WiFiMacValue = BitConverter.ToString(reader.ReadBytes(6)); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - WiFiMacValue = null; - } - - if (WiFiMacValue != null) - { - WiFiMac = WiFiMacValue; - } - else - { - WiFiMac = "Unknown Mac Address"; - } - - #endregion - - #region Extract LAN Mac Address - - try - { - BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open)); - //Set the position of the reader - reader.BaseStream.Position = LANMacOffset; - //Read the offset - LANMacValue = BitConverter.ToString(reader.ReadBytes(6)); - reader.Close(); - } - catch - { - // Obviously this value is invalid, so null the value and move on - LANMacValue = null; - } - - if (LANMacValue != null) - { - LANMac = LANMacValue; - } - else - { - LANMac = "Unknown Mac Address"; - } - - #endregion - - #region Start show data for the BIOS dump - // Start showing the data we've found to the user - System.Console.WriteLine("File size: " + lengthBytes + " bytes (" + lengthMB + "MB)"); // The file size of the .bin file - System.Console.WriteLine("PS5 Version: " + PS5Version); // Show the version info (disc/digital/slim) - System.Console.WriteLine("Console Model: " + ModelInfo); // Show the console variant (CFI-XXXX) - System.Console.WriteLine("Console Serial Number: " + ConsoleSerialNumber); // Show the serial number. This serial is the one the disc drive would use - System.Console.WriteLine("Motherboard Serial Number: " + MotherboardSerialNumber); // Show the serial number to the motherboard. This is different to the console serial - System.Console.WriteLine("WiFi Mac Address: " + WiFiMac); // WiFi mac address - System.Console.WriteLine("LAN Mac Address: " + LANMac); // LAN mac address - // Just a blank line - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - #endregion - break; - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - #endregion - #region Convert to "Digital" edition - case "3": - // First check to confirm that we've selected a file to work with - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - bool confirmed = false; - while (!confirmed) - { - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Are you sure you want to set the console as \"Digital\" edition?"); - System.Console.ResetColor(); - - System.Console.WriteLine("Type 'yes' to confirm or 'no' to cancel."); - - string changeConfirmation = System.Console.ReadLine().Trim().ToLower(); - - // Check user input - if (changeConfirmation == "yes") - { - string PS5Version; // String to store the PS5 version - - // Declare offsets to obtain current version info - long offsetOne = 0x1c7010; - long offsetTwo = 0x1c7030; - string offsetOneValue = null; - string offsetTwoValue = null; - - // Get PS5 version - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = offsetOne; - offsetOneValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - - reader.BaseStream.Position = offsetTwo; - offsetTwoValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - } - } - catch (Exception ex) - { - // Handle any exceptions that occur while reading the file - System.Console.WriteLine("Error reading the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - - if (offsetOneValue.Contains("22030101") || offsetTwoValue.Contains("22030101")) - { - // The BIOS file already contains digital edition flags - System.Console.WriteLine("The .bin file you're working with is already a digital edition. No changes are needed."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - - confirmed = true; - break; - } - else - { - // Modify the values to set the file as "Digital Edition" - try - { - byte[] find = ConvertHexStringToByteArray(Regex.Replace("22010101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace = ConvertHexStringToByteArray(Regex.Replace("22030101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - byte[] bytes = File.ReadAllBytes(pathToDump); - foreach (int index in PatternAt(bytes, find)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - byte[] find2 = ConvertHexStringToByteArray(Regex.Replace("22020101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace2 = ConvertHexStringToByteArray(Regex.Replace("22030101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - foreach (int index in PatternAt(bytes, find2)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace2[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - System.Console.WriteLine("Your BIOS file has been updated successfully. The new .bin file will now report to"); - System.Console.WriteLine("the PlayStation 5 as a 'digital edition' console."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - catch (Exception ex) - { - // Handle any exceptions that occur while writing to the file - System.Console.WriteLine("Error updating the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - } - } - else if (changeConfirmation == "no") - { - // User cancelled. Break the loop and go back to the menu! - confirmed = true; - break; - } - else - { - System.Console.WriteLine("Invalid input. Please type 'yes' to confirm or 'no' to cancel."); - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - - #endregion - #region Convert to "Disc" edition - case "4": - // First check to confirm that we've selected a file to work with - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - bool confirmed = false; - while (!confirmed) - { - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Are you sure you want to set the console as \"Disc\" edition?"); - System.Console.ResetColor(); - - System.Console.WriteLine("Type 'yes' to confirm or 'no' to cancel."); - - string changeConfirmation = System.Console.ReadLine().Trim().ToLower(); - - // Check user input - if (changeConfirmation == "yes") - { - string PS5Version; // String to store the PS5 version - - // Declare offsets to obtain current version info - long offsetOne = 0x1c7010; - long offsetTwo = 0x1c7030; - string offsetOneValue = null; - string offsetTwoValue = null; - - // Get PS5 version - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = offsetOne; - offsetOneValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - - reader.BaseStream.Position = offsetTwo; - offsetTwoValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - } - } - catch (Exception ex) - { - // Handle any exceptions that occur while reading the file - System.Console.WriteLine("Error reading the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - - if (offsetOneValue.Contains("22020101") || offsetTwoValue.Contains("22020101")) - { - // The BIOS file already contains disc edition flags - System.Console.WriteLine("The .bin file you're working with is already a disc edition. No changes are needed."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - - confirmed = true; - break; - } - else - { - // Modify the values to set the file as "Disc Edition" - try - { - byte[] find = ConvertHexStringToByteArray(Regex.Replace("22010101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace = ConvertHexStringToByteArray(Regex.Replace("22020101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - byte[] bytes = File.ReadAllBytes(pathToDump); - foreach (int index in PatternAt(bytes, find)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - byte[] find2 = ConvertHexStringToByteArray(Regex.Replace("22030101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace2 = ConvertHexStringToByteArray(Regex.Replace("22020101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - foreach (int index in PatternAt(bytes, find2)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace2[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - System.Console.WriteLine("Your BIOS file has been updated successfully. The new .bin file will now report to"); - System.Console.WriteLine("the PlayStation 5 as a 'disc edition' console."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - catch (Exception ex) - { - // Handle any exceptions that occur while writing to the file - System.Console.WriteLine("Error updating the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - } - } - else if (changeConfirmation == "no") - { - // User cancelled. Break the loop and go back to the menu! - confirmed = true; - break; - } - else - { - System.Console.WriteLine("Invalid input. Please type 'yes' to confirm or 'no' to cancel."); - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - #endregion - #region Convert to "Slim" edition - case "5": - // First check to confirm that we've selected a file to work with - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - bool confirmed = false; - while (!confirmed) - { - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Are you sure you want to set the console as \"Slim\" edition?"); - System.Console.ResetColor(); - - System.Console.WriteLine("Type 'yes' to confirm or 'no' to cancel."); - - string changeConfirmation = System.Console.ReadLine().Trim().ToLower(); - - // Check user input - if (changeConfirmation == "yes") - { - string PS5Version; // String to store the PS5 version - - // Declare offsets to obtain current version info - long offsetOne = 0x1c7010; - long offsetTwo = 0x1c7030; - string offsetOneValue = null; - string offsetTwoValue = null; - - // Get PS5 version - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = offsetOne; - offsetOneValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - - reader.BaseStream.Position = offsetTwo; - offsetTwoValue = BitConverter.ToString(reader.ReadBytes(4)).Replace("-", string.Empty); - } - } - catch (Exception ex) - { - // Handle any exceptions that occur while reading the file - System.Console.WriteLine("Error reading the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - - if (offsetOneValue.Contains("22010101") || offsetTwoValue.Contains("22010101")) - { - // The BIOS file already contains slim edition flags - System.Console.WriteLine("The .bin file you're working with is already a slim edition. No changes are needed."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - - confirmed = true; - break; - } - else - { - // Modify the values to set the file as "Slim Edition" - try - { - byte[] find = ConvertHexStringToByteArray(Regex.Replace("22020101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace = ConvertHexStringToByteArray(Regex.Replace("22010101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - byte[] bytes = File.ReadAllBytes(pathToDump); - foreach (int index in PatternAt(bytes, find)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - byte[] find2 = ConvertHexStringToByteArray(Regex.Replace("22030101", "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace2 = ConvertHexStringToByteArray(Regex.Replace("22010101", "0x|[ ,]", string.Empty).Normalize().Trim()); - - foreach (int index in PatternAt(bytes, find2)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace2[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - System.Console.WriteLine("Your BIOS file has been updated successfully. The new .bin file will now report to"); - System.Console.WriteLine("the PlayStation 5 as a 'slim edition' console."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - catch (Exception ex) - { - // Handle any exceptions that occur while writing to the file - System.Console.WriteLine("Error updating the binary file: " + ex.Message); - System.Console.WriteLine("Please try again! Press Enter to continue..."); - System.Console.ReadLine(); - confirmed = true; - break; - } - } - } - else if (changeConfirmation == "no") - { - // User cancelled. Break the loop and go back to the menu! - confirmed = true; - break; - } - else - { - System.Console.WriteLine("Invalid input. Please type 'yes' to confirm or 'no' to cancel."); - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - #endregion - #region Change serial number - case "6": - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - // Create a true false to allow us to loop until the user changes the serial or cancels the operation - bool jobDone = false; - - while (!jobDone) - { - // Set the serial number offset and value - long serialOffset = 0x1c7210; - string oldSerial = null; - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - //Set the position of the reader - reader.BaseStream.Position = serialOffset; - //Read the offset - oldSerial = Encoding.UTF8.GetString(reader.ReadBytes(17)); - } - } - catch - { - // Obviously this value is invalid, so null the value and move on - oldSerial = null; - } - - bool newSerialValid = false; - while (!newSerialValid) - { - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Enter the new serial number you would like to save (type 'exit' to exit): "); - System.Console.ResetColor(); - - string newSerial = System.Console.ReadLine().Trim(); - - if (newSerial == "") - { - // The serial number is blank - System.Console.WriteLine("Invalid serial number entered. The new serial should be characters and letters."); - } - else if (newSerial == oldSerial) - { - System.Console.WriteLine("The new serial number matches the old serial number. Please enter a different value and try again..."); - } - else if (newSerial == "exit") - { - jobDone = true; - break; - } - else - { - try - { - byte[] existingFile; - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - // Get the contents of the dump into memory - existingFile = reader.ReadBytes((int)reader.BaseStream.Length); - } - - byte[] oldSerialBytes = Encoding.UTF8.GetBytes(oldSerial); - byte[] newSerialBytes = Encoding.UTF8.GetBytes(newSerial); - - // Ensure the new serial number is either padded or truncated to fit 17 characters - byte[] newSerialBytesPadded = new byte[17]; - Array.Copy(newSerialBytes, newSerialBytesPadded, Math.Min(newSerialBytes.Length, 17)); - - // Find the index of the old serial number in the file - int index = PatternAt(existingFile, oldSerialBytes).FirstOrDefault(); - - if (index != -1) - { - // Replace the old serial number with the new one - for (int i = 0; i < newSerialBytesPadded.Length; i++) - { - existingFile[index + i] = newSerialBytesPadded[i]; - } - - // Write modified bytes back to the file - using (BinaryWriter writer = new BinaryWriter(new FileStream(pathToDump, FileMode.Create))) - { - writer.Write(existingFile); - } - - System.Console.WriteLine("SUCCESS: The new serial number has been updated successfully. Press enter to continue..."); - System.Console.ReadLine(); - jobDone = true; - break; - } - else - { - System.Console.WriteLine("Failed to find the old serial number in the file. Aborting..."); - jobDone = true; - } - } - catch (System.ArgumentException ex) - { - // Something went wrong. Notify the user - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("An error occurred while attempting to make changes to your dump file. Please try again."); - System.Console.ResetColor(); - } - } - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - #endregion - #region Change motherboard serial number - case "7": - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - // Declare variables to store console serial - long moboOffset = 0x1C7200; - string moboValue = null; - string MotherboardSerial; - - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = moboOffset; - moboValue = BitConverter.ToString(reader.ReadBytes(16)).Replace("-", null); - } - } - catch - { - // Catch any exceptions and ignore, setting MotherboardSerial to null - } - - MotherboardSerial = HexStringToString(moboValue); - - if (!string.IsNullOrEmpty(moboValue) != null && !string.IsNullOrEmpty(MotherboardSerial)) - { - // Create a loop to prevent the app from returning to the main menu - bool isDone = false; - while (!isDone) - { - // Show the current motherboard serial to the user - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Current motherboard serial: " + MotherboardSerial); - System.Console.ResetColor(); - - // Ask the user to enter the new serial number - System.Console.WriteLine("Please enter a new motherboard serial number (type 'exit' to go back): "); - - string newSerial = System.Console.ReadLine(); - - if (string.IsNullOrEmpty(newSerial)) - { - // The user did not enter a valid string - System.Console.WriteLine("Please enter a valid model number to continue..."); - } - else if (newSerial.Length != 16) - { - // The entered serial number is an invalid length - System.Console.WriteLine("The new motherboard serial you entered is invalid. The motherboard serial should be exactly 16 characters in length."); - } - else if (newSerial == "exit") - { - // The user wants to exit this menu - isDone = true; - break; - } - else - { - // Everything seems OK. Now we can change the serial number - try - { - byte[] oldSerial = Encoding.UTF8.GetBytes(MotherboardSerial); - string oldSerialHex = Convert.ToHexString(oldSerial); - - byte[] newSerialBytes = Encoding.UTF8.GetBytes(newSerial); - string newSerialHex = Convert.ToHexString(newSerialBytes); - - byte[] find = ConvertHexStringToByteArray(Regex.Replace(oldSerialHex, "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace = ConvertHexStringToByteArray(Regex.Replace(newSerialHex, "0x|[ ,]", string.Empty).Normalize().Trim()); - - byte[] bytes = File.ReadAllBytes(pathToDump); - foreach (int index in PatternAt(bytes, find)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - System.Console.WriteLine("The new motherboard serial number you entered been saved successfully."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - isDone = true; - break; - - } - catch (System.ArgumentException ex) - { - System.Console.WriteLine("An error occurred while writing to the BIOS dump. Please try again..." + ex.Message); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - isDone = true; - break; - } - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("Could not parse your selected .bin file. Please ensure your selected file is a valid PlayStation 5 file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - #endregion - #region Change console model - case "8": - - if (!string.IsNullOrEmpty(pathToDump)) // If the pathToDump string isn't empty or null, we can try and work with it - { - // Declare variables to store console model - long variantOffset = 0x1c7226; - string variantValue = null; - string ConsoleModel; - - try - { - using (BinaryReader reader = new BinaryReader(new FileStream(pathToDump, FileMode.Open))) - { - reader.BaseStream.Position = variantOffset; - variantValue = BitConverter.ToString(reader.ReadBytes(19)).Replace("-", null).Replace("FF", null); - } - } - catch - { - // Catch any exceptions and ignore, setting variantValue to null - } - - ConsoleModel = HexStringToString(variantValue); - - if(!string.IsNullOrEmpty(variantValue) != null && !string.IsNullOrEmpty(ConsoleModel)) - { - // Create a loop to prevent the app from returning to the main menu - bool isDone = false; - while (!isDone) - { - // Show the current model to the user - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Current model: " + ConsoleModel); - System.Console.ResetColor(); - - // Ask the user to enter the new model - System.Console.WriteLine("Please enter the model you would like to set your dump file to (type 'exit' to go back): "); - - string newModel = System.Console.ReadLine(); - - if (string.IsNullOrEmpty(newModel)) - { - // The user did not enter a valid string - System.Console.WriteLine("Please enter a valid model number to continue..."); - } else if (newModel.Length < 9) - { - // The entered model is an invalid length - System.Console.WriteLine("The new model you entered is invalid. The model should be 9 characters long starting with 'CFI-', followed by 4 numbers and a letter."); - }else if (!newModel.StartsWith("CFI-")) - { - System.Console.WriteLine("The new model you entered is invalid. The model should be 9 characters long starting with 'CFI-', followed by 4 numbers and a letter."); - }else if (newModel == "exit") - { - // The user wants to exit this menu - isDone = true; - break; - } - else - { - // Everything seems OK. Now we can change the model - try - { - byte[] oldModel = Encoding.UTF8.GetBytes(ConsoleModel); - string oldModelHex = Convert.ToHexString(oldModel); - - byte[] newModelBytes = Encoding.UTF8.GetBytes(newModel); - string newModelHex = Convert.ToHexString(newModelBytes); - - byte[] find = ConvertHexStringToByteArray(Regex.Replace(oldModelHex, "0x|[ ,]", string.Empty).Normalize().Trim()); - byte[] replace = ConvertHexStringToByteArray(Regex.Replace(newModelHex, "0x|[ ,]", string.Empty).Normalize().Trim()); - - byte[] bytes = File.ReadAllBytes(pathToDump); - foreach (int index in PatternAt(bytes, find)) - { - for (int i = index, replaceIndex = 0; i < bytes.Length && replaceIndex < replace.Length; i++, replaceIndex++) - { - bytes[i] = replace[replaceIndex]; - } - File.WriteAllBytes(pathToDump, bytes); - } - - System.Console.WriteLine("The new console model you chose has been saved successfully."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - isDone = true; - break; - - } - catch (System.ArgumentException ex) - { - System.Console.WriteLine("An error occurred while writing to the BIOS dump. Please try again..." + ex.Message); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - isDone = true; - break; - } - } - } - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("Could not parse your selected .bin file. Please ensure your selected file is a valid PlayStation 5 file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - - } - else - { - // No file has been selected. Let the user know - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("You must select a .bin file to read before proceeding. Please select a valid .bin file and try again."); - System.Console.ResetColor(); - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - break; - } - break; - #endregion - #region Exit sub menu - // I put two cases here for the exit option, one for capital "X" and one for lower case. - case "X": - // We should reset the app title first! - System.Console.Title = appTitle; - subMenuRunning = false; - break; - case "x": - // We should reset the app title first! - System.Console.Title = appTitle; - subMenuRunning = false; - break; - #endregion - } - } - -} - #endregion - -#region Main -static bool MainMenu(string appTitle, Dictionary regionMap) -{ - - System.Console.Clear(); - ShowHeader(); - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.WriteLine("Choose an option:"); - System.Console.ResetColor(); - System.Console.WriteLine("1. Get error codes from PS5"); - System.Console.WriteLine("2. Clear error codes on PS5"); - System.Console.WriteLine("3. Enter custom UART command"); - System.Console.WriteLine("4. BIOS Dump Tools"); - System.Console.WriteLine("5. View readme guide"); - // Thanks for leaving this here! - System.Console.ForegroundColor = ConsoleColor.Green; - System.Console.WriteLine("6. Buy TheCod3r a coffee"); - System.Console.ResetColor(); - System.Console.WriteLine("7. Update error database"); - System.Console.WriteLine("X. Exit application"); - System.Console.ForegroundColor = ConsoleColor.Red; - System.Console.Write("\nEnter your choice: "); - System.Console.ResetColor(); - - #region Menu Options - switch (System.Console.ReadLine()) - { - #region Get Error Codes From PS5 - case "1": - // Declare a variable to store the selected COM port - string selectedPort; - // Declare a string array for a list of available port names - string[] ports = SerialPort.GetPortNames(); - - // No COM ports found. Let the user know and go back to the main menu - if (ports.Length == 0) - { - System.Console.WriteLine("No communication devices were found on this system."); - System.Console.WriteLine("Please insert a UART compatible device and try again."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - } - - // Devices were found. Iterate through and present them in the form of a menu - System.Console.WriteLine("Available devices:"); - for (int i = 0; i < ports.Length; i++) - { - string friendlyName = GetFriendlyName(ports[i]); - System.Console.WriteLine($"{i + 1}. {ports[i]} - {friendlyName}"); - } - - // Declare an integer for the index of the selected port - int selectedPortIndex; - // Add each port to the ports array - do - { - System.Console.WriteLine(""); - System.Console.Write("Enter the number of the COM port you want to use: "); - } while (!int.TryParse(System.Console.ReadLine(), out selectedPortIndex) || selectedPortIndex < 1 || selectedPortIndex > ports.Length); - - // Get the selected port and store it inside the selectedPort string - selectedPort = ports[selectedPortIndex - 1]; - - // Select and lock the chosen device - SerialPort serialPort = new SerialPort(selectedPort); - // Configure settings for the selected device - serialPort.BaudRate = 115200; // The PS5 requires a BAUD rate of 115200 - serialPort.RtsEnable = true; // We need to enable ready to send (RTS) mode - // Now we can get a list of error codes. We're going to wrap this in a try loop to prevent unexpected crashes - try - { - // Open the selected port for use - serialPort.Open(); - // Let's display the selected port (change the color to blue) so the user is aware of what device is in use - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Selected port: " + GetFriendlyName(selectedPort)); - // Reset the foreground color to default before proceeding - System.Console.ResetColor(); - - // Let's start grabbing error codes from the PS5 - int loopLimit = 10; - // Create a list to store error codes in - List UARTLines = new(); - - // When grabbing error codes, we want to grab the first 10 errors from the system. Let's create a loop - for (var i = 0; i <= loopLimit; i++) - { - // Create a command variable depending on what number we're at in the loop (where "i" is the current number) - var command = $"errlog {i}"; - // Add the checksum to the command - var checksum = CalculateChecksum(command); - // Send the current command to the UART device - serialPort.WriteLine(checksum); - - // Read the UART response - var line = serialPort.ReadLine(); - - // Ensure we have a valid response, then add it to the errors list - if (!string.Equals($"{command}:{checksum:X2}", line, StringComparison.InvariantCultureIgnoreCase)) - { - if (!line.Contains("errlog")) - { - // Let's make sure we haven't already added the same error code to the error list - // This way we only show each error code once and keep the output window clean - if (!UARTLines.Contains(line)) - { - UARTLines.Add(line); - } - } - } - } - - // Now let's iterate through the lines and show them to the user - foreach (var l in UARTLines) - { - var split = l.Split(' '); - if (!split.Any()) continue; - switch (split[0]) - { - case "NG": - break; - case "OK": - var errorCode = split[2]; - if (errorCode.StartsWith("FFFFFF")) - { - // The returned code is blank - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("No error displayed"); - System.Console.ResetColor(); - } - else - { - // Now that the error code has been isolated from the rest of the junk sent by the system - // let's check it against the database. The error database will need to return XML results - System.Console.ForegroundColor = ConsoleColor.Green; - string errorResult = ParseErrors(errorCode); - System.Console.WriteLine(errorResult); - System.Console.ResetColor(); - } - break; - default: - break; - } - } - - // Wait for user input - System.Console.WriteLine(""); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - - // Before exiting, close and free up the selected device - serialPort.Close(); - } - catch (Exception ex) - { - System.Console.WriteLine("An error occurred while connecting to your selected device."); - System.Console.WriteLine("Error details:"); - System.Console.WriteLine(ex.Message); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - } - - return true; - #endregion - #region Clear UART codes - case "2": - // Declare a string array for a list of available port names - ports = SerialPort.GetPortNames(); - - // No COM ports found. Let the user know and go back to the main menu - if (ports.Length == 0) - { - System.Console.WriteLine("No communication devices were found on this system."); - System.Console.WriteLine("Please insert a UART compatible device and try again."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - } - - // Devices were found. Iterate through and present them in the form of a menu - System.Console.WriteLine("Available devices:"); - for (int i = 0; i < ports.Length; i++) - { - string friendlyName = GetFriendlyName(ports[i]); - System.Console.WriteLine($"{i + 1}. {ports[i]} - {friendlyName}"); - } - - // Add each port to the ports array - do - { - System.Console.WriteLine(""); - System.Console.Write("Enter the number of the COM port you want to use: "); - } while (!int.TryParse(System.Console.ReadLine(), out selectedPortIndex) || selectedPortIndex < 1 || selectedPortIndex > ports.Length); - - // Get the selected port and store it inside the selectedPort string - selectedPort = ports[selectedPortIndex - 1]; - - // Select and lock the chosen device - serialPort = new SerialPort(selectedPort); - // Configure settings for the selected device - serialPort.BaudRate = 115200; // The PS5 requires a BAUD rate of 115200 - serialPort.RtsEnable = true; // We need to enable ready to send (RTS) mode - // Now we can wipe the error codes. We're going to wrap this in a try loop to prevent unexpected crashes - try - { - // Open the selected port for use - serialPort.Open(); - // Let's display the selected port (change the color to blue) so the user is aware of what device is in use - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Selected port: " + GetFriendlyName(selectedPort)); - // Reset the foreground color to default before proceeding - System.Console.ResetColor(); - - var checksum = CalculateChecksum("errlog clear"); - serialPort.WriteLine(checksum); - - List UARTLines = new(); - - do - { - var line = serialPort.ReadLine(); - UARTLines.Add(line); - } while (serialPort.BytesToRead != 0); - - foreach (var l in UARTLines) - { - System.Console.WriteLine(l); - } - - System.Console.WriteLine("Press Enter to continue..."); - - // Job done. Continue - System.Console.ReadLine(); - - // Before exiting, close and free up the selected device - serialPort.Close(); - } - catch (Exception ex) - { - System.Console.WriteLine("An error occurred while connecting to your selected device."); - System.Console.WriteLine("Error details:"); - System.Console.WriteLine(ex.Message); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - } - return true; - #endregion - #region Custom UART command - case "3": - // Declare a string array for a list of available port names - ports = SerialPort.GetPortNames(); - - // No COM ports found. Let the user know and go back to the main menu - if (ports.Length == 0) - { - System.Console.WriteLine("No communication devices were found on this system."); - System.Console.WriteLine("Please insert a UART compatible device and try again."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - } - - // Devices were found. Iterate through and present them in the form of a menu - System.Console.WriteLine("Available devices:"); - for (int i = 0; i < ports.Length; i++) - { - string friendlyName = GetFriendlyName(ports[i]); - System.Console.WriteLine($"{i + 1}. {ports[i]} - {friendlyName}"); - } - - // Add each port to the ports array - do - { - System.Console.WriteLine(""); - System.Console.Write("Enter the number of the COM port you want to use: "); - } while (!int.TryParse(System.Console.ReadLine(), out selectedPortIndex) || selectedPortIndex < 1 || selectedPortIndex > ports.Length); - - // Get the selected port and store it inside the selectedPort string - selectedPort = ports[selectedPortIndex - 1]; - - // Select and lock the chosen device - serialPort = new SerialPort(selectedPort); - // Configure settings for the selected device - serialPort.BaudRate = 115200; // The PS5 requires a BAUD rate of 115200 - serialPort.RtsEnable = true; // We need to enable ready to send (RTS) mode - - // Now we can run the custom command. We're going to wrap this in a try loop to prevent unexpected crashes - try - { - // Open the selected port for use - serialPort.Open(); - // Let's display the selected port (change the color to blue) so the user is aware of what device is in use - System.Console.ForegroundColor = ConsoleColor.Blue; - System.Console.WriteLine("Selected port: " + GetFriendlyName(selectedPort)); - // Reset the foreground color to default before proceeding - System.Console.ResetColor(); - - while (true) // Loop until user provides a valid command or 'exit' - { - // Ask the user for their custom UART command - System.Console.Write("Please enter a custom command to send (type exit to quit): "); - // Get the command which the user entered - string UARTCommand = System.Console.ReadLine(); - - // If the user types exit, we want to return to the main menu - if (UARTCommand == "exit") - { - break; // Exit the while loop and return to the main menu - } - else if (!string.IsNullOrEmpty(UARTCommand)) // If the command is not empty or null - { - var checksum = CalculateChecksum(UARTCommand); - serialPort.WriteLine(checksum); - - List UARTLines = new(); - - do - { - var line = serialPort.ReadLine(); - UARTLines.Add(line); - } while (serialPort.BytesToRead != 0); - - foreach (var l in UARTLines) - { - System.Console.WriteLine(l); - } - - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - } - else - { - // The user didn't type anything. We need to ask them to type their command again! - System.Console.WriteLine("Please enter a valid command."); - } - } - - // Before exiting, close and free up the selected device - serialPort.Close(); - } - catch (Exception ex) - { - System.Console.WriteLine("An error occurred while connecting to your selected device."); - System.Console.WriteLine("Error details:"); - System.Console.WriteLine(ex.Message); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - } - return true; - #endregion - #region BIOS Dump Tools (Sub Menu) - case "4": - // This is a sub menu for working with BIOS files. IMO it's not very elegant to have sub menus but at least this way - // we don't have to use different apps for working with BIOS files... - - RunSubMenu(appTitle, regionMap); - return true; - #endregion - #region Launch readme - case "5": - System.Console.WriteLine("UARL-CL is designed with simplicity in mind. This command line application makes it quick and easy"); - System.Console.WriteLine("to obtain error codes from your PlayStation 5 console."); - System.Console.WriteLine("UART stands for Universal Asynchronous Receiver-Transmitter. UART allows you to send and receive commands"); - System.Console.WriteLine("to any compatible serial communications device."); - System.Console.WriteLine(); - System.Console.WriteLine("The PlayStation 5 has UART functionality built in. Unfortunately Sony don't make it easy to understand what"); - System.Console.WriteLine("is happening with the machine when you request error codes, which is why this application exists. UART-CL is"); - System.Console.WriteLine("a command-line spin off to the PS5 NOR and UART tool for Windows, which allows you to communicate via serial"); - System.Console.WriteLine("to your PlayStation 5. You can grab error codes from the system at the click of a button (well, a few clicks)"); - System.Console.WriteLine("and the software will automatically check the error codes received and attempt to convert them into plain text."); - System.Console.WriteLine("This is done by splitting the error codes up into useful sections and then comparing those error codes against a"); - System.Console.WriteLine("database of codes collected by the repair community. If the code exists in the database, the application will"); - System.Console.WriteLine("automatically grab the error details and output them for you on the screen so you can figure out your next move."); - System.Console.WriteLine(""); - System.Console.WriteLine("Where does the database come from?"); - System.Console.WriteLine("The database is downloaded on first launch from uartcodes.com/xml.php. The download page is hosted by \"TheCod3r\""); - System.Console.WriteLine("for free and is simply a PHP script which fetches all known error codes from the uartcodes.com database and converts"); - System.Console.WriteLine("them into an XML document. An XML document makes it quick and easy to work with and it's a more elegant solution to"); - System.Console.WriteLine("provide a database which doesn't rely on an internet connection. It can also be updated whenever you like, free of charge."); - System.Console.WriteLine(""); - System.Console.WriteLine("How do I use this to fix my PS5?"); - System.Console.WriteLine("You'll need a compatible serial communication (UART) device first of all. Most devices that have a transmit, receive, and"); - System.Console.WriteLine("ground pin and that can provide 3.3v instead of 5v should work, and you can buy one for a few bucks on eBay, Amazon or AliExpress."); - System.Console.WriteLine(""); - System.Console.WriteLine("Once you have a compatible device, you'll need to:"); - System.Console.WriteLine("Solder the transmit pin on the device to the receive pin on the PS5."); - System.Console.WriteLine("Solder the receive pin on the device to the transmit pin on the PS5."); - System.Console.WriteLine("Solder ground on the device to ground on the PS5."); - System.Console.WriteLine("Connect the PS5 power chord to the PS5 power supply (do not turn on the console)"); - System.Console.WriteLine("Use this software and select either option 1, 2 or 3 to run commands."); - System.Console.WriteLine("Choose your device from the list of available devices."); - System.Console.WriteLine("Let the software do the rest. Then working out a plan for the actual repair is up to you. We can't do everything ;)"); - System.Console.WriteLine(""); - System.Console.WriteLine("As a personal note from myself (TheCod3r). I want to thank you for trusting my software. I'm an electronics technician primarily"); - System.Console.WriteLine("and I write code for fun (ironic since my name is TheCod3r, I know!). I would also like to thank the following people for inspiring me:"); - System.Console.WriteLine(""); - System.Console.WriteLine("Louis Rossmann, FightToRepair.org, Jessa Jones (iPad Rehab), Andy-Man (PS5 Wee Tools), my YouTube viewers, my Patreon supporters and my mom!"); - System.Console.WriteLine(""); - System.Console.WriteLine("#FuckBwE"); - System.Console.WriteLine("Be sure to use the hashtag. It really pisses him off!"); - - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - #endregion - #region Buy me a coffee - case "6": - // Thanks for buying me a coffee :) - System.Console.WriteLine("Thanks for buying me a coffee. I'll redirect you in your default browser..."); - OpenUrl("https://www.streamelements.com/thecod3r/tip"); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - #endregion - #region Update XML database - case "7": - System.Console.WriteLine("Downloading latest database file. Please wait..."); - - bool success = DownloadDatabase("http://uartcodes.com/xml.php", "errorDB.xml"); - - if (success) - { - System.Console.WriteLine("Database downloaded successfully..."); - System.Console.WriteLine("Press Enter to continue..."); - } - else - { - System.Console.WriteLine("Could not download the latest database file. Please ensure you're connected to the internet!"); - System.Console.WriteLine("Press Enter to continue..."); - } - System.Console.ReadLine(); - return true; - default: - System.Console.WriteLine("Invalid choice. Please try again."); - System.Console.WriteLine("Press Enter to continue..."); - System.Console.ReadLine(); - return true; - #endregion - #region Exit Application - case "X": - // Run the exit environment command to close the application - Environment.Exit(0); - return true; - case "x": - // Run the exit environment command to close the application - Environment.Exit(0); - return true; - #endregion - } - #endregion -} -#endregion \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj b/UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj deleted file mode 100644 index 8f54f13..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/UART-CL By TheCod3r.csproj +++ /dev/null @@ -1,32 +0,0 @@ - - - - Exe - net6.0 - UART_CL_By_TheCod3r - enable - enable - Terminal.ico - False - UART-CL - - - - embedded - - - - embedded - - - - - - - - - - - - - diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs deleted file mode 100644 index bfacba8..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyTitleAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache deleted file mode 100644 index e865822..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -60f2b79e94c46d40eb8f15392b757265d1c40088 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9543124..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = UART_CL_By_TheCod3r -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs deleted file mode 100644 index ac22929..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +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; diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.assets.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.assets.cache deleted file mode 100644 index ae353fb..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.assets.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache deleted file mode 100644 index 64de4ff..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.BuildWithSkipAnalyzers b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.CopyComplete b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache deleted file mode 100644 index 293b273..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -30f35a020711a793241417a5bd5c2a27f5390c66 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt deleted file mode 100644 index bf6ca64..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,28 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\UART-CL By TheCod3r.exe -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\UART-CL By TheCod3r.deps.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\UART-CL By TheCod3r.runtimeconfig.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\UART-CL By TheCod3r.pdb -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\Colorful.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.csproj.CopyComplete -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\refint\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.pdb -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\UART-CL By TheCod3r.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Debug\net6.0\ref\UART-CL By TheCod3r.dll diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.dll deleted file mode 100644 index 2417f67..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache deleted file mode 100644 index 54fa0eb..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -eb162d7cc5cea7716181e71f620945468cd58eec diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.pdb b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.pdb deleted file mode 100644 index caf317e..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/UART-CL By TheCod3r.pdb and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/apphost.exe b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/apphost.exe deleted file mode 100644 index 9f6741c..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/apphost.exe and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/ref/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/ref/UART-CL By TheCod3r.dll deleted file mode 100644 index 675d2dc..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/ref/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/refint/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/refint/UART-CL By TheCod3r.dll deleted file mode 100644 index 675d2dc..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Debug/net6.0/refint/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs deleted file mode 100644 index 7375f0e..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyTitleAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache deleted file mode 100644 index 9710020..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a80b2be9802a5e6ae3378b17dae407f94530ee0f diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 9543124..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = UART_CL_By_TheCod3r -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs deleted file mode 100644 index ac22929..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +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; diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.assets.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.assets.cache deleted file mode 100644 index f641b1f..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.assets.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache deleted file mode 100644 index 64de4ff..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.AssemblyReference.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.CopyComplete b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache deleted file mode 100644 index b2ec857..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -54d53898bb950021f9df74f180a1b4fb495c2abd diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt deleted file mode 100644 index 2db4eab..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,26 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\UART-CL By TheCod3r.exe -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\UART-CL By TheCod3r.deps.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\UART-CL By TheCod3r.runtimeconfig.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\Colorful.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\System.CodeDom.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.csproj.CopyComplete -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\refint\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\UART-CL By TheCod3r.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\ref\UART-CL By TheCod3r.dll diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.dll deleted file mode 100644 index e61f64e..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache deleted file mode 100644 index aa93aa3..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/UART-CL By TheCod3r.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -292779b5b9b8741d64933b06073c7e5964a75ce2 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/apphost.exe b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/apphost.exe deleted file mode 100644 index 27e958f..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/apphost.exe and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/PublishOutputs.0b7388c96d.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/PublishOutputs.0b7388c96d.txt deleted file mode 100644 index fca7c67..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/PublishOutputs.0b7388c96d.txt +++ /dev/null @@ -1,3 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\publish\linux-x64\UART-CL By TheCod3r.pdb -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\publish\linux-x64\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\publish\linux-x64\UART-CL By TheCod3r diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfo.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfo.cs deleted file mode 100644 index 7375f0e..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyTitleAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache deleted file mode 100644 index 9710020..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a80b2be9802a5e6ae3378b17dae407f94530ee0f diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8c8126a..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.EnableSingleFileAnalyzer = true -build_property.EnableTrimAnalyzer = -build_property.IncludeAllContentForSelfExtract = -build_property.RootNamespace = UART_CL_By_TheCod3r -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GlobalUsings.g.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GlobalUsings.g.cs deleted file mode 100644 index ac22929..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +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; diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.assets.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.assets.cache deleted file mode 100644 index 2041986..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.assets.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache deleted file mode 100644 index 64de4ff..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.CopyComplete b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache deleted file mode 100644 index 8c2c5cf..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0c74e64cca8f334a8d8ec8efcfaf0830c791a1ee diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt deleted file mode 100644 index c67ffe7..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,200 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\UART-CL By TheCod3r -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\UART-CL By TheCod3r.deps.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\UART-CL By TheCod3r.runtimeconfig.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\UART-CL By TheCod3r.pdb -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Colorful.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.CodeDom.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.IO.Ports.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Microsoft.CSharp.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Microsoft.VisualBasic.Core.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Microsoft.VisualBasic.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Microsoft.Win32.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\Microsoft.Win32.Registry.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.AppContext.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Buffers.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Collections.Concurrent.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Collections.Immutable.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Collections.NonGeneric.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Collections.Specialized.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Collections.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.Annotations.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.DataAnnotations.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.EventBasedAsync.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.TypeConverter.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ComponentModel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Configuration.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Core.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Data.Common.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Data.DataSetExtensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Data.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.Contracts.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.Debug.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.DiagnosticSource.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.FileVersionInfo.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.Process.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.StackTrace.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.Tools.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.TraceSource.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Diagnostics.Tracing.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Drawing.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Drawing.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Dynamic.Runtime.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Formats.Asn1.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Globalization.Calendars.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Globalization.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Globalization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Compression.Brotli.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Compression.FileSystem.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Compression.ZipFile.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Compression.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.FileSystem.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.FileSystem.DriveInfo.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.FileSystem.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.FileSystem.Watcher.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.FileSystem.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.IsolatedStorage.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.MemoryMappedFiles.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Pipes.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.Pipes.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.UnmanagedMemoryStream.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.IO.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Linq.Expressions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Linq.Parallel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Linq.Queryable.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Memory.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Http.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Http.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.HttpListener.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Mail.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.NameResolution.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.NetworkInformation.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Ping.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Quic.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Requests.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Security.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.ServicePoint.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.Sockets.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.WebClient.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.WebHeaderCollection.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.WebProxy.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.WebSockets.Client.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.WebSockets.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Net.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Numerics.Vectors.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Numerics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ObjectModel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Private.CoreLib.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Private.DataContractSerialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Private.Uri.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Private.Xml.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Private.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.DispatchProxy.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Emit.ILGeneration.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Emit.Lightweight.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Emit.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Metadata.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.TypeExtensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Reflection.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Resources.Reader.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Resources.ResourceManager.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Resources.Writer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.CompilerServices.VisualC.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Handles.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.InteropServices.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Intrinsics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Loader.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Numerics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Serialization.Formatters.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Serialization.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Serialization.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Serialization.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.Serialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Runtime.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Claims.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.Algorithms.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.Cng.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.Csp.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.Encoding.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.OpenSsl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Cryptography.X509Certificates.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Principal.Windows.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.Principal.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.SecureString.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Security.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ServiceModel.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ServiceProcess.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.Encoding.CodePages.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.Encoding.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.Encoding.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.Encodings.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Text.RegularExpressions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Channels.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Overlapped.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Tasks.Dataflow.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Tasks.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Tasks.Parallel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Tasks.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Thread.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.ThreadPool.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.Timer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Threading.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Transactions.Local.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Transactions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.ValueTuple.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Web.HttpUtility.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Windows.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.ReaderWriter.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.Serialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.XDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.XPath.XDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.XPath.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.XmlDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.XmlSerializer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\System.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\WindowsBase.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\mscorlib.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\netstandard.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\createdump -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.Globalization.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.IO.Compression.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.Net.Security.Native.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libclrjit.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libcoreclr.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libcoreclrtraceptprovider.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libdbgshim.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libhostfxr.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libhostpolicy.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libmscordaccore.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\linux-x64\libmscordbi.so -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.csproj.CopyComplete -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\refint\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.pdb -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\UART-CL By TheCod3r.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\linux-x64\ref\UART-CL By TheCod3r.dll diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.deps.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.deps.json deleted file mode 100644 index 21a3f72..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.deps.json +++ /dev/null @@ -1,3579 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0/linux-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": {}, - ".NETCoreApp,Version=v6.0/linux-x64": { - "UART-CL By TheCod3r/1.0.0": { - "dependencies": { - "Colorful.Console": "1.2.15", - "System.IO.Ports": "8.0.0", - "System.Management": "8.0.0", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.9" - }, - "runtime": { - "UART-CL By TheCod3r.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.9": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.100.922.41905" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.AppContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Buffers.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Collections.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Console.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Data.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Globalization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.IO.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Memory.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Http.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Security.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Reflection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Threading.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.922.41905" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "6.0.922.41905" - } - } - }, - "Colorful.Console/1.2.15": { - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": { - "assemblyVersion": "1.2.15.0", - "fileVersion": "1.2.15.0" - } - } - }, - "Microsoft.CSharp/4.0.1": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - } - }, - "Microsoft.NETCore.Platforms/1.0.1": {}, - "Microsoft.NETCore.Targets/1.0.1": {}, - "runtime.any.System.Collections/4.0.11": { - "dependencies": { - "System.Runtime": "4.1.0" - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": {}, - "runtime.any.System.Globalization/4.0.11": {}, - "runtime.any.System.IO/4.1.0": {}, - "runtime.any.System.Reflection/4.1.0": {}, - "runtime.any.System.Reflection.Extensions/4.0.1": {}, - "runtime.any.System.Reflection.Primitives/4.0.1": {}, - "runtime.any.System.Resources.ResourceManager/4.0.1": {}, - "runtime.any.System.Runtime/4.1.0": { - "dependencies": { - "System.Private.Uri": "4.0.1" - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": {}, - "runtime.any.System.Runtime.InteropServices/4.1.0": {}, - "runtime.any.System.Text.Encoding/4.0.11": {}, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": {}, - "runtime.any.System.Threading.Tasks/4.0.11": {}, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": {}, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": {}, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "native": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": {}, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": {}, - "runtime.unix.System.Console/4.0.0": { - "dependencies": { - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0" - } - }, - "runtime.unix.System.Diagnostics.Debug/4.0.11": { - "dependencies": { - "runtime.native.System": "4.0.0" - } - }, - "runtime.unix.System.IO.FileSystem/4.0.1": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0" - } - }, - "runtime.unix.System.Private.Uri/4.0.1": { - "dependencies": { - "runtime.native.System": "4.0.0" - } - }, - "runtime.unix.System.Runtime.Extensions/4.1.0": { - "dependencies": { - "System.Private.Uri": "4.0.1", - "runtime.native.System": "4.0.0", - "runtime.native.System.Security.Cryptography": "4.0.0" - } - }, - "System.CodeDom/8.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Collections/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - } - }, - "System.Collections.Concurrent/4.0.12": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - } - }, - "System.Console/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.unix.System.Console": "4.0.0" - } - }, - "System.Diagnostics.Debug/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.unix.System.Diagnostics.Debug": "4.0.11" - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - } - }, - "System.Dynamic.Runtime/4.0.11": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - } - }, - "System.Globalization/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - } - }, - "System.IO/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - } - }, - "System.IO.FileSystem/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.unix.System.IO.FileSystem": "4.0.1" - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "dependencies": { - "System.Runtime": "4.1.0" - } - }, - "System.IO.Ports/8.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "runtime": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.Linq/4.1.0": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - } - }, - "System.Linq.Expressions/4.1.0": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - } - }, - "System.Management/8.0.0": { - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "System.ObjectModel/4.0.12": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - } - }, - "System.Private.Uri/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.unix.System.Private.Uri": "4.0.1" - } - }, - "System.Reflection/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - } - }, - "System.Reflection.Emit/4.0.1": { - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - } - }, - "System.Reflection.Extensions/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - } - }, - "System.Reflection.Primitives/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - } - }, - "System.Resources.ResourceManager/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - } - }, - "System.Runtime/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - } - }, - "System.Runtime.Extensions/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.unix.System.Runtime.Extensions": "4.1.0" - } - }, - "System.Runtime.Handles/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - } - }, - "System.Runtime.InteropServices/4.1.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - } - }, - "System.Text.Encoding/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - } - }, - "System.Text.RegularExpressions/4.1.0": { - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - } - }, - "System.Threading/4.0.11": { - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - } - }, - "System.Threading.Tasks/4.0.11": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - } - } - } - }, - "libraries": { - "UART-CL By TheCod3r/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.9": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Colorful.Console/1.2.15": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iDBG+0MHkVzM/p74WsfSpcNP2hL7E3o+8Y5ZEEbWQuYmRtHh/YXdbfEnvusTS2Ds8+KX17NGvuNOgTfBxXLCEw==", - "path": "colorful.console/1.2.15", - "hashPath": "colorful.console.1.2.15.nupkg.sha512" - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "path": "microsoft.csharp/4.0.1", - "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", - "path": "microsoft.netcore.platforms/1.0.1", - "hashPath": "microsoft.netcore.platforms.1.0.1.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", - "path": "microsoft.netcore.targets/1.0.1", - "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512" - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", - "path": "runtime.any.system.collections/4.0.11", - "hashPath": "runtime.any.system.collections.4.0.11.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", - "path": "runtime.any.system.diagnostics.tracing/4.1.0", - "hashPath": "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512" - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", - "path": "runtime.any.system.globalization/4.0.11", - "hashPath": "runtime.any.system.globalization.4.0.11.nupkg.sha512" - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", - "path": "runtime.any.system.io/4.1.0", - "hashPath": "runtime.any.system.io.4.1.0.nupkg.sha512" - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", - "path": "runtime.any.system.reflection/4.1.0", - "hashPath": "runtime.any.system.reflection.4.1.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", - "path": "runtime.any.system.reflection.extensions/4.0.1", - "hashPath": "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512" - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", - "path": "runtime.any.system.reflection.primitives/4.0.1", - "hashPath": "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512" - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", - "path": "runtime.any.system.resources.resourcemanager/4.0.1", - "hashPath": "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512" - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", - "path": "runtime.any.system.runtime/4.1.0", - "hashPath": "runtime.any.system.runtime.4.1.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", - "path": "runtime.any.system.runtime.handles/4.0.1", - "hashPath": "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512" - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", - "path": "runtime.any.system.runtime.interopservices/4.1.0", - "hashPath": "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", - "path": "runtime.any.system.text.encoding/4.0.11", - "hashPath": "runtime.any.system.text.encoding.4.0.11.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", - "path": "runtime.any.system.text.encoding.extensions/4.0.11", - "hashPath": "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512" - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", - "path": "runtime.any.system.threading.tasks/4.0.11", - "hashPath": "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.native.System/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", - "path": "runtime.native.system/4.0.0", - "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "path": "runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", - "path": "runtime.native.system.security.cryptography/4.0.0", - "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512" - }, - "runtime.unix.System.Console/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OV2TOJkDPXRbp1hhmKV0/U6ZtDQY2SL/VJMs89R9PlH+ZyrbMRF8coT5ZC6m0LsmCDc25AlHyjegIIg+lWVwTw==", - "path": "runtime.unix.system.console/4.0.0", - "hashPath": "runtime.unix.system.console.4.0.0.nupkg.sha512" - }, - "runtime.unix.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dGIYWbyqSlMlZrsqtU/TdvVNp8lieqowdGBVMi6nFTIiCqrL+RbdiJORguexXNjHtFZR30eE6zPWGxuL60NYFw==", - "path": "runtime.unix.system.diagnostics.debug/4.0.11", - "hashPath": "runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512" - }, - "runtime.unix.System.IO.FileSystem/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7dft+dHYKOXOAnXExVE6OGmifNnSDCrJymApD0l6t2bZUdpai66La9dNqT2eqPhiQXVR3eV61gzkfaIEsuK0pA==", - "path": "runtime.unix.system.io.filesystem/4.0.1", - "hashPath": "runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512" - }, - "runtime.unix.System.Private.Uri/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m+7TLWWw4cA44vGxcKpMdV2Lgx6HWOe5rUb5RIADE04S6fJNEwXO6u+KY7oWFJQYn5644NyhSxB9oV28fF94NQ==", - "path": "runtime.unix.system.private.uri/4.0.1", - "hashPath": "runtime.unix.system.private.uri.4.0.1.nupkg.sha512" - }, - "runtime.unix.System.Runtime.Extensions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ouVt2t9k22LcC9HeNX4mu3Ebvp1h+IPKaYiU3tDtOW9YcMR62XQyHsPq5BjBjMHuxjBRL5Hz+BwhSdrY6HjacA==", - "path": "runtime.unix.system.runtime.extensions/4.1.0", - "hashPath": "runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512" - }, - "System.CodeDom/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", - "path": "system.codedom/8.0.0", - "hashPath": "system.codedom.8.0.0.nupkg.sha512" - }, - "System.Collections/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "path": "system.collections/4.0.11", - "hashPath": "system.collections.4.0.11.nupkg.sha512" - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "path": "system.collections.concurrent/4.0.12", - "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512" - }, - "System.Console/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "path": "system.console/4.0.0", - "hashPath": "system.console.4.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "path": "system.diagnostics.debug/4.0.11", - "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "path": "system.diagnostics.tracing/4.1.0", - "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "path": "system.dynamic.runtime/4.0.11", - "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" - }, - "System.Globalization/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "path": "system.globalization/4.0.11", - "hashPath": "system.globalization.4.0.11.nupkg.sha512" - }, - "System.IO/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "path": "system.io/4.1.0", - "hashPath": "system.io.4.1.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "path": "system.io.filesystem/4.0.1", - "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "path": "system.io.filesystem.primitives/4.0.1", - "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "path": "system.io.ports/8.0.0", - "hashPath": "system.io.ports.8.0.0.nupkg.sha512" - }, - "System.Linq/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "path": "system.linq/4.1.0", - "hashPath": "system.linq.4.1.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "path": "system.linq.expressions/4.1.0", - "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" - }, - "System.Management/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", - "path": "system.management/8.0.0", - "hashPath": "system.management.8.0.0.nupkg.sha512" - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "path": "system.objectmodel/4.0.12", - "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", - "path": "system.private.uri/4.0.1", - "hashPath": "system.private.uri.4.0.1.nupkg.sha512" - }, - "System.Reflection/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "path": "system.reflection/4.1.0", - "hashPath": "system.reflection.4.1.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "path": "system.reflection.emit/4.0.1", - "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "path": "system.reflection.emit.lightweight/4.0.1", - "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "path": "system.reflection.extensions/4.0.1", - "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512" - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "path": "system.reflection.primitives/4.0.1", - "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "path": "system.reflection.typeextensions/4.1.0", - "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "path": "system.resources.resourcemanager/4.0.1", - "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512" - }, - "System.Runtime/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "path": "system.runtime/4.1.0", - "hashPath": "system.runtime.4.1.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "path": "system.runtime.extensions/4.1.0", - "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "path": "system.runtime.handles/4.0.1", - "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "path": "system.runtime.interopservices/4.1.0", - "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512" - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "path": "system.text.encoding/4.0.11", - "hashPath": "system.text.encoding.4.0.11.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", - "path": "system.text.encoding.extensions/4.0.11", - "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "path": "system.text.regularexpressions/4.1.0", - "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" - }, - "System.Threading/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "path": "system.threading/4.0.11", - "hashPath": "system.threading.4.0.11.nupkg.sha512" - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "path": "system.threading.tasks/4.0.11", - "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512" - } - }, - "runtimes": { - "alpine-x64": [ - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.10-x64": [ - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.11-x64": [ - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.12-x64": [ - "alpine.3.12", - "alpine.3.11-x64", - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.13-x64": [ - "alpine.3.13", - "alpine.3.12-x64", - "alpine.3.12", - "alpine.3.11-x64", - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.14-x64": [ - "alpine.3.14", - "alpine.3.13-x64", - "alpine.3.13", - "alpine.3.12-x64", - "alpine.3.12", - "alpine.3.11-x64", - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.15-x64": [ - "alpine.3.15", - "alpine.3.14-x64", - "alpine.3.14", - "alpine.3.13-x64", - "alpine.3.13", - "alpine.3.12-x64", - "alpine.3.12", - "alpine.3.11-x64", - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.16-x64": [ - "alpine.3.16", - "alpine.3.15-x64", - "alpine.3.15", - "alpine.3.14-x64", - "alpine.3.14", - "alpine.3.13-x64", - "alpine.3.13", - "alpine.3.12-x64", - "alpine.3.12", - "alpine.3.11-x64", - "alpine.3.11", - "alpine.3.10-x64", - "alpine.3.10", - "alpine.3.9-x64", - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.6-x64": [ - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.7-x64": [ - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.8-x64": [ - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "alpine.3.9-x64": [ - "alpine.3.9", - "alpine.3.8-x64", - "alpine.3.8", - "alpine.3.7-x64", - "alpine.3.7", - "alpine.3.6-x64", - "alpine.3.6", - "alpine-x64", - "alpine", - "linux-musl-x64", - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android-x64": [ - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.21-x64": [ - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.22-x64": [ - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.23-x64": [ - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.24-x64": [ - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.25-x64": [ - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.26-x64": [ - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.27-x64": [ - "android.27", - "android.26-x64", - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.28-x64": [ - "android.28", - "android.27-x64", - "android.27", - "android.26-x64", - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.29-x64": [ - "android.29", - "android.28-x64", - "android.28", - "android.27-x64", - "android.27", - "android.26-x64", - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.30-x64": [ - "android.30", - "android.29-x64", - "android.29", - "android.28-x64", - "android.28", - "android.27-x64", - "android.27", - "android.26-x64", - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "android.31-x64": [ - "android.31", - "android.30-x64", - "android.30", - "android.29-x64", - "android.29", - "android.28-x64", - "android.28", - "android.27-x64", - "android.27", - "android.26-x64", - "android.26", - "android.25-x64", - "android.25", - "android.24-x64", - "android.24", - "android.23-x64", - "android.23", - "android.22-x64", - "android.22", - "android.21-x64", - "android.21", - "android-x64", - "android", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "arch-x64": [ - "arch", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "centos-x64": [ - "centos", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "centos.7-x64": [ - "centos.7", - "centos-x64", - "rhel.7-x64", - "centos", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "centos.8-x64": [ - "centos.8", - "centos-x64", - "rhel.8-x64", - "centos", - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "centos.9-x64": [ - "centos.9", - "centos-x64", - "rhel.9-x64", - "centos", - "rhel.9", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "debian-x64": [ - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "debian.10-x64": [ - "debian.10", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "debian.11-x64": [ - "debian.11", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "debian.8-x64": [ - "debian.8", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "debian.9-x64": [ - "debian.9", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "exherbo-x64": [ - "exherbo", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora-x64": [ - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.23-x64": [ - "fedora.23", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.24-x64": [ - "fedora.24", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.25-x64": [ - "fedora.25", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.26-x64": [ - "fedora.26", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.27-x64": [ - "fedora.27", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.28-x64": [ - "fedora.28", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.29-x64": [ - "fedora.29", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.30-x64": [ - "fedora.30", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.31-x64": [ - "fedora.31", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.32-x64": [ - "fedora.32", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.33-x64": [ - "fedora.33", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.34-x64": [ - "fedora.34", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.35-x64": [ - "fedora.35", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.36-x64": [ - "fedora.36", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "fedora.37-x64": [ - "fedora.37", - "fedora-x64", - "fedora", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "gentoo-x64": [ - "gentoo", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-musl-x64": [ - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-x64": [ - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.17-x64": [ - "linuxmint.17", - "ubuntu.14.04-x64", - "ubuntu.14.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.17.1-x64": [ - "linuxmint.17.1", - "linuxmint.17-x64", - "linuxmint.17", - "ubuntu.14.04-x64", - "ubuntu.14.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.17.2-x64": [ - "linuxmint.17.2", - "linuxmint.17.1-x64", - "linuxmint.17.1", - "linuxmint.17-x64", - "linuxmint.17", - "ubuntu.14.04-x64", - "ubuntu.14.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.17.3-x64": [ - "linuxmint.17.3", - "linuxmint.17.2-x64", - "linuxmint.17.2", - "linuxmint.17.1-x64", - "linuxmint.17.1", - "linuxmint.17-x64", - "linuxmint.17", - "ubuntu.14.04-x64", - "ubuntu.14.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.18-x64": [ - "linuxmint.18", - "ubuntu.16.04-x64", - "ubuntu.16.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.18.1-x64": [ - "linuxmint.18.1", - "linuxmint.18-x64", - "linuxmint.18", - "ubuntu.16.04-x64", - "ubuntu.16.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.18.2-x64": [ - "linuxmint.18.2", - "linuxmint.18.1-x64", - "linuxmint.18.1", - "linuxmint.18-x64", - "linuxmint.18", - "ubuntu.16.04-x64", - "ubuntu.16.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.18.3-x64": [ - "linuxmint.18.3", - "linuxmint.18.2-x64", - "linuxmint.18.2", - "linuxmint.18.1-x64", - "linuxmint.18.1", - "linuxmint.18-x64", - "linuxmint.18", - "ubuntu.16.04-x64", - "ubuntu.16.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.19-x64": [ - "linuxmint.19", - "ubuntu.18.04-x64", - "ubuntu.18.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.19.1-x64": [ - "linuxmint.19.1", - "linuxmint.19-x64", - "linuxmint.19", - "ubuntu.18.04-x64", - "ubuntu.18.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linuxmint.19.2-x64": [ - "linuxmint.19.2", - "linuxmint.19.1-x64", - "linuxmint.19.1", - "linuxmint.19-x64", - "linuxmint.19", - "ubuntu.18.04-x64", - "ubuntu.18.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol-x64": [ - "ol", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7-x64": [ - "ol.7", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.0-x64": [ - "ol.7.0", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.1-x64": [ - "ol.7.1", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.2-x64": [ - "ol.7.2", - "ol.7.1-x64", - "rhel.7.2-x64", - "ol.7.1", - "rhel.7.2", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.3-x64": [ - "ol.7.3", - "ol.7.2-x64", - "rhel.7.3-x64", - "ol.7.2", - "rhel.7.3", - "ol.7.1-x64", - "rhel.7.2-x64", - "ol.7.1", - "rhel.7.2", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.4-x64": [ - "ol.7.4", - "ol.7.3-x64", - "rhel.7.4-x64", - "ol.7.3", - "rhel.7.4", - "ol.7.2-x64", - "rhel.7.3-x64", - "ol.7.2", - "rhel.7.3", - "ol.7.1-x64", - "rhel.7.2-x64", - "ol.7.1", - "rhel.7.2", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.5-x64": [ - "ol.7.5", - "ol.7.4-x64", - "rhel.7.5-x64", - "ol.7.4", - "rhel.7.5", - "ol.7.3-x64", - "rhel.7.4-x64", - "ol.7.3", - "rhel.7.4", - "ol.7.2-x64", - "rhel.7.3-x64", - "ol.7.2", - "rhel.7.3", - "ol.7.1-x64", - "rhel.7.2-x64", - "ol.7.1", - "rhel.7.2", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.7.6-x64": [ - "ol.7.6", - "ol.7.5-x64", - "rhel.7.6-x64", - "ol.7.5", - "rhel.7.6", - "ol.7.4-x64", - "rhel.7.5-x64", - "ol.7.4", - "rhel.7.5", - "ol.7.3-x64", - "rhel.7.4-x64", - "ol.7.3", - "rhel.7.4", - "ol.7.2-x64", - "rhel.7.3-x64", - "ol.7.2", - "rhel.7.3", - "ol.7.1-x64", - "rhel.7.2-x64", - "ol.7.1", - "rhel.7.2", - "ol.7.0-x64", - "rhel.7.1-x64", - "ol.7.0", - "rhel.7.1", - "ol.7-x64", - "rhel.7.0-x64", - "ol.7", - "rhel.7.0", - "ol-x64", - "rhel.7-x64", - "ol", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.8-x64": [ - "ol.8", - "ol-x64", - "rhel.8-x64", - "ol", - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ol.8.0-x64": [ - "ol.8.0", - "ol.8-x64", - "rhel.8.0-x64", - "ol.8", - "rhel.8.0", - "ol-x64", - "rhel.8-x64", - "ol", - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse-x64": [ - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.13.2-x64": [ - "opensuse.13.2", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.15.0-x64": [ - "opensuse.15.0", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.15.1-x64": [ - "opensuse.15.1", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.42.1-x64": [ - "opensuse.42.1", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.42.2-x64": [ - "opensuse.42.2", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "opensuse.42.3-x64": [ - "opensuse.42.3", - "opensuse-x64", - "opensuse", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel-x64": [ - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.6-x64": [ - "rhel.6", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7-x64": [ - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.0-x64": [ - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.1-x64": [ - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.2-x64": [ - "rhel.7.2", - "rhel.7.1-x64", - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.3-x64": [ - "rhel.7.3", - "rhel.7.2-x64", - "rhel.7.2", - "rhel.7.1-x64", - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.4-x64": [ - "rhel.7.4", - "rhel.7.3-x64", - "rhel.7.3", - "rhel.7.2-x64", - "rhel.7.2", - "rhel.7.1-x64", - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.5-x64": [ - "rhel.7.5", - "rhel.7.4-x64", - "rhel.7.4", - "rhel.7.3-x64", - "rhel.7.3", - "rhel.7.2-x64", - "rhel.7.2", - "rhel.7.1-x64", - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.7.6-x64": [ - "rhel.7.6", - "rhel.7.5-x64", - "rhel.7.5", - "rhel.7.4-x64", - "rhel.7.4", - "rhel.7.3-x64", - "rhel.7.3", - "rhel.7.2-x64", - "rhel.7.2", - "rhel.7.1-x64", - "rhel.7.1", - "rhel.7.0-x64", - "rhel.7.0", - "rhel.7-x64", - "rhel.7", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.8-x64": [ - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.8.0-x64": [ - "rhel.8.0", - "rhel.8-x64", - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.8.1-x64": [ - "rhel.8.1", - "rhel.8.0-x64", - "rhel.8.0", - "rhel.8-x64", - "rhel.8", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "rhel.9-x64": [ - "rhel.9", - "rhel-x64", - "rhel", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles-x64": [ - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.12-x64": [ - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.12.1-x64": [ - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.12.2-x64": [ - "sles.12.2", - "sles.12.1-x64", - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.12.3-x64": [ - "sles.12.3", - "sles.12.2-x64", - "sles.12.2", - "sles.12.1-x64", - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.12.4-x64": [ - "sles.12.4", - "sles.12.3-x64", - "sles.12.3", - "sles.12.2-x64", - "sles.12.2", - "sles.12.1-x64", - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.15-x64": [ - "sles.15", - "sles.12.4-x64", - "sles.12.4", - "sles.12.3-x64", - "sles.12.3", - "sles.12.2-x64", - "sles.12.2", - "sles.12.1-x64", - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "sles.15.1-x64": [ - "sles.15.1", - "sles.15-x64", - "sles.15", - "sles.12.4-x64", - "sles.12.4", - "sles.12.3-x64", - "sles.12.3", - "sles.12.2-x64", - "sles.12.2", - "sles.12.1-x64", - "sles.12.1", - "sles.12-x64", - "sles.12", - "sles-x64", - "sles", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu-x64": [ - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.14.04-x64": [ - "ubuntu.14.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.14.10-x64": [ - "ubuntu.14.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.15.04-x64": [ - "ubuntu.15.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.15.10-x64": [ - "ubuntu.15.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.16.04-x64": [ - "ubuntu.16.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.16.10-x64": [ - "ubuntu.16.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.17.04-x64": [ - "ubuntu.17.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.17.10-x64": [ - "ubuntu.17.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.18.04-x64": [ - "ubuntu.18.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.18.10-x64": [ - "ubuntu.18.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.19.04-x64": [ - "ubuntu.19.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.19.10-x64": [ - "ubuntu.19.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.20.04-x64": [ - "ubuntu.20.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.20.10-x64": [ - "ubuntu.20.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.21.04-x64": [ - "ubuntu.21.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.21.10-x64": [ - "ubuntu.21.10", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "ubuntu.22.04-x64": [ - "ubuntu.22.04", - "ubuntu-x64", - "ubuntu", - "debian-x64", - "debian", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.dll deleted file mode 100644 index 2ab7a77..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.genruntimeconfig.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.genruntimeconfig.cache deleted file mode 100644 index e63d4df..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -3c783785a4e2a9579295e5f3e474843bd51baea7 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.pdb b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.pdb deleted file mode 100644 index 82899db..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/UART-CL By TheCod3r.pdb and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/ref/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/ref/UART-CL By TheCod3r.dll deleted file mode 100644 index bf3145a..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/ref/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/refint/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/refint/UART-CL By TheCod3r.dll deleted file mode 100644 index bf3145a..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/refint/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/singlefilehost b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/singlefilehost deleted file mode 100644 index 9800db3..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/linux-x64/singlefilehost and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/ref/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/ref/UART-CL By TheCod3r.dll deleted file mode 100644 index ed8348f..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/ref/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/refint/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/refint/UART-CL By TheCod3r.dll deleted file mode 100644 index ed8348f..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/refint/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/Launcher.exe b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/Launcher.exe deleted file mode 100644 index 4541c4c..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/Launcher.exe and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/PublishOutputs.3fc1a0adaf.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/PublishOutputs.3fc1a0adaf.txt deleted file mode 100644 index b9fa3aa..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/PublishOutputs.3fc1a0adaf.txt +++ /dev/null @@ -1 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\publish\UART-CL By TheCod3r.exe diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfo.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfo.cs deleted file mode 100644 index 7375f0e..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyTitleAttribute("UART-CL By TheCod3r")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache deleted file mode 100644 index 9710020..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a80b2be9802a5e6ae3378b17dae407f94530ee0f diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8c8126a..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.EnableSingleFileAnalyzer = true -build_property.EnableTrimAnalyzer = -build_property.IncludeAllContentForSelfExtract = -build_property.RootNamespace = UART_CL_By_TheCod3r -build_property.ProjectDir = C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GlobalUsings.g.cs b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GlobalUsings.g.cs deleted file mode 100644 index ac22929..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +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; diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.application b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.application deleted file mode 100644 index 215592f..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.application +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - J+lFQEZvRYdjOTI2pBMgp1JNUuTdzeLqqIemhEKhWVY= - - - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.assets.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.assets.cache deleted file mode 100644 index a7f920e..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.assets.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache deleted file mode 100644 index 64de4ff..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.AssemblyReference.cache and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.CopyComplete b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache deleted file mode 100644 index 603b210..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cb1b73bddc4218e1f45372ed25cc2b44ea6ec260 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt deleted file mode 100644 index 691f104..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,244 +0,0 @@ -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.deps.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.runtimeconfig.json -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.exe -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.dll.manifest -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.application -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Colorful.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.CodeDom.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Ports.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Management.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.CSharp.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.VisualBasic.Core.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.VisualBasic.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.Win32.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.Win32.Registry.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.AppContext.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Buffers.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Collections.Concurrent.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Collections.Immutable.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Collections.NonGeneric.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Collections.Specialized.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Collections.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.Annotations.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.DataAnnotations.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.EventBasedAsync.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.TypeConverter.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ComponentModel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Configuration.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Console.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Core.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Data.Common.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Data.DataSetExtensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Data.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.Contracts.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.Debug.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.DiagnosticSource.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.FileVersionInfo.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.Process.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.StackTrace.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.Tools.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.TraceSource.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Diagnostics.Tracing.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Drawing.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Drawing.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Dynamic.Runtime.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Formats.Asn1.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Globalization.Calendars.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Globalization.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Globalization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Compression.Brotli.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Compression.FileSystem.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Compression.ZipFile.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Compression.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.FileSystem.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.FileSystem.DriveInfo.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.FileSystem.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.FileSystem.Watcher.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.FileSystem.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.IsolatedStorage.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.MemoryMappedFiles.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Pipes.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Pipes.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.UnmanagedMemoryStream.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Linq.Expressions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Linq.Parallel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Linq.Queryable.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Memory.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Http.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Http.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.HttpListener.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Mail.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.NameResolution.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.NetworkInformation.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Ping.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Quic.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Requests.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Security.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.ServicePoint.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.Sockets.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.WebClient.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.WebHeaderCollection.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.WebProxy.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.WebSockets.Client.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.WebSockets.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Net.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Numerics.Vectors.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Numerics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ObjectModel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Private.CoreLib.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Private.DataContractSerialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Private.Uri.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Private.Xml.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Private.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.DispatchProxy.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Emit.ILGeneration.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Emit.Lightweight.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Emit.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Metadata.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.TypeExtensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Reflection.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Resources.Reader.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Resources.ResourceManager.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Resources.Writer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.CompilerServices.VisualC.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Handles.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.InteropServices.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Intrinsics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Loader.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Numerics.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Serialization.Formatters.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Serialization.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Serialization.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Serialization.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.Serialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Runtime.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.AccessControl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Claims.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.Algorithms.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.Cng.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.Csp.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.Encoding.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.OpenSsl.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.Primitives.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Cryptography.X509Certificates.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Principal.Windows.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.Principal.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.SecureString.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Security.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ServiceModel.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ServiceProcess.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.Encoding.CodePages.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.Encoding.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.Encoding.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.Encodings.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.Json.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Text.RegularExpressions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Channels.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Overlapped.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Tasks.Dataflow.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Tasks.Extensions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Tasks.Parallel.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Tasks.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Thread.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.ThreadPool.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.Timer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Threading.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Transactions.Local.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Transactions.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.ValueTuple.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Web.HttpUtility.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Web.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Windows.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.Linq.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.ReaderWriter.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.Serialization.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.XDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.XPath.XDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.XPath.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.XmlDocument.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.XmlSerializer.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.Xml.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\WindowsBase.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\mscorlib.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\netstandard.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\System.IO.Compression.Native.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-console-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-console-l1-2-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-debug-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-fibers-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-file-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-file-l1-2-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-file-l2-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-handle-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-heap-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-localization-l1-2-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-memory-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-profile-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-string-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-synch-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-synch-l1-2-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-core-util-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-math-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-private-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-process-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-string-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-time-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\clretwrc.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\clrjit.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\coreclr.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\createdump.exe -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\dbgshim.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\hostfxr.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\hostpolicy.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\mscordaccore.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\mscordaccore_amd64_amd64_6.0.922.41905.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\mscordbi.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\mscorrc.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\msquic.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\bin\Release\net6.0\win-x64\ucrtbase.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.csproj.AssemblyReference.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.AssemblyInfoInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.AssemblyInfo.cs -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.csproj.CoreCompileInputs.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.genruntimeconfig.cache -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.dll.manifest -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.application -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.csproj.CopyComplete -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\refint\UART-CL By TheCod3r.dll -C:\Users\TheCod3r\source\repos\UART-CL By TheCod3r\UART-CL By TheCod3r\obj\Release\net6.0\win-x64\ref\UART-CL By TheCod3r.dll diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll deleted file mode 100644 index f135094..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll.manifest b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll.manifest deleted file mode 100644 index 14f6d51..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.dll.manifest +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - VNvv65sV8uKNlshbMMRLHpRn8+WEqEKsYk5vTrFS0VI= - - - - - - - - - - Z2dlKm4VdBD5BgkP69rr9nnD/As+tMBKCHyntjNYCDA= - - - - - - - - - L4NaVCCT1jkpL/xhxfFFcntZVL0yzimgJ3oATCSyS2g= - - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.genruntimeconfig.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.genruntimeconfig.cache deleted file mode 100644 index f31a6ba..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/UART-CL By TheCod3r.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -e8898293c2dce8db8ee6a7b6e39ab187de8897b5 diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/ref/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/ref/UART-CL By TheCod3r.dll deleted file mode 100644 index 825c63d..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/ref/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/refint/UART-CL By TheCod3r.dll b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/refint/UART-CL By TheCod3r.dll deleted file mode 100644 index 825c63d..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/refint/UART-CL By TheCod3r.dll and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/singlefilehost.exe b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/singlefilehost.exe deleted file mode 100644 index b1344d7..0000000 Binary files a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/Release/net6.0/win-x64/singlefilehost.exe and /dev/null differ diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.dgspec.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.dgspec.json deleted file mode 100644 index a99f143..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.dgspec.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": {} - }, - "projects": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.props b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.props deleted file mode 100644 index b67618a..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\TheCod3r\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.3.0 - - - - - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.targets b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/UART-CL By TheCod3r.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.assets.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.assets.json deleted file mode 100644 index 7a99b7c..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.assets.json +++ /dev/null @@ -1,2912 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Colorful.Console/1.2.15": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard2.0/Colorful.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm64" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-x64" - } - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-arm64" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-x64" - } - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Console/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "compile": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - } - } - }, - "libraries": { - "Colorful.Console/1.2.15": { - "sha512": "iDBG+0MHkVzM/p74WsfSpcNP2hL7E3o+8Y5ZEEbWQuYmRtHh/YXdbfEnvusTS2Ds8+KX17NGvuNOgTfBxXLCEw==", - "type": "package", - "path": "colorful.console/1.2.15", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "colorful.console.1.2.15.nupkg.sha512", - "colorful.console.nuspec", - "lib/net40/Colorful.Console.dll", - "lib/net45/Colorful.Console.dll", - "lib/net451/Colorful.Console.dll", - "lib/net452/Colorful.Console.dll", - "lib/net46/Colorful.Console.dll", - "lib/net461/Colorful.Console.dll", - "lib/netstandard2.0/Colorful.Console.dll" - ] - }, - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.0.1.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/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/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.0.1.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "type": "package", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "type": "package", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "type": "package", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-x64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "type": "package", - "path": "runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.native.system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "type": "package", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "type": "package", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-x64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "System.CodeDom/8.0.0": { - "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", - "type": "package", - "path": "system.codedom/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.CodeDom.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.CodeDom.targets", - "lib/net462/System.CodeDom.dll", - "lib/net462/System.CodeDom.xml", - "lib/net6.0/System.CodeDom.dll", - "lib/net6.0/System.CodeDom.xml", - "lib/net7.0/System.CodeDom.dll", - "lib/net7.0/System.CodeDom.xml", - "lib/net8.0/System.CodeDom.dll", - "lib/net8.0/System.CodeDom.xml", - "lib/netstandard2.0/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.xml", - "system.codedom.8.0.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "type": "package", - "path": "system.collections/4.0.11", - "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.0.11.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "type": "package", - "path": "system.collections.concurrent/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.0.12.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Console/4.0.0": { - "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "type": "package", - "path": "system.console/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.0.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "type": "package", - "path": "system.diagnostics.debug/4.0.11", - "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.0.11.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "type": "package", - "path": "system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.1.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.0.11.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "type": "package", - "path": "system.globalization/4.0.11", - "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.0.11.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "type": "package", - "path": "system.io/4.1.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.1.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "type": "package", - "path": "system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.0.1.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Ports/8.0.0": { - "sha512": "MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "type": "package", - "path": "system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Ports.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", - "lib/net462/System.IO.Ports.dll", - "lib/net462/System.IO.Ports.xml", - "lib/net6.0/System.IO.Ports.dll", - "lib/net6.0/System.IO.Ports.xml", - "lib/net7.0/System.IO.Ports.dll", - "lib/net7.0/System.IO.Ports.xml", - "lib/net8.0/System.IO.Ports.dll", - "lib/net8.0/System.IO.Ports.xml", - "lib/netstandard2.0/System.IO.Ports.dll", - "lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/unix/lib/net6.0/System.IO.Ports.dll", - "runtimes/unix/lib/net6.0/System.IO.Ports.xml", - "runtimes/unix/lib/net7.0/System.IO.Ports.dll", - "runtimes/unix/lib/net7.0/System.IO.Ports.xml", - "runtimes/unix/lib/net8.0/System.IO.Ports.dll", - "runtimes/unix/lib/net8.0/System.IO.Ports.xml", - "runtimes/win/lib/net6.0/System.IO.Ports.dll", - "runtimes/win/lib/net6.0/System.IO.Ports.xml", - "runtimes/win/lib/net7.0/System.IO.Ports.dll", - "runtimes/win/lib/net7.0/System.IO.Ports.xml", - "runtimes/win/lib/net8.0/System.IO.Ports.dll", - "runtimes/win/lib/net8.0/System.IO.Ports.xml", - "system.io.ports.8.0.0.nupkg.sha512", - "system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "type": "package", - "path": "system.linq/4.1.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.1.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.1.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Management/8.0.0": { - "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", - "type": "package", - "path": "system.management/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Management.targets", - "lib/net462/_._", - "lib/net6.0/System.Management.dll", - "lib/net6.0/System.Management.xml", - "lib/net7.0/System.Management.dll", - "lib/net7.0/System.Management.xml", - "lib/net8.0/System.Management.dll", - "lib/net8.0/System.Management.xml", - "lib/netstandard2.0/System.Management.dll", - "lib/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net6.0/System.Management.dll", - "runtimes/win/lib/net6.0/System.Management.xml", - "runtimes/win/lib/net7.0/System.Management.dll", - "runtimes/win/lib/net7.0/System.Management.xml", - "runtimes/win/lib/net8.0/System.Management.dll", - "runtimes/win/lib/net8.0/System.Management.xml", - "system.management.8.0.0.nupkg.sha512", - "system.management.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "type": "package", - "path": "system.objectmodel/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.0.12.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "type": "package", - "path": "system.reflection/4.1.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.1.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "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.0.1.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "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/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "type": "package", - "path": "system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.0.1.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "type": "package", - "path": "system.reflection.primitives/4.0.1", - "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.0.1.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "type": "package", - "path": "system.reflection.typeextensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.1.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.1", - "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.0.1.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "type": "package", - "path": "system.runtime/4.1.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.1.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "type": "package", - "path": "system.runtime.extensions/4.1.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.1.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "type": "package", - "path": "system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.0.1.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "type": "package", - "path": "system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.1.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "type": "package", - "path": "system.text.encoding/4.0.11", - "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.0.11.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "type": "package", - "path": "system.text.regularexpressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.1.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "type": "package", - "path": "system.threading/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.0.11.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "type": "package", - "path": "system.threading.tasks/4.0.11", - "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.0.11.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Colorful.Console >= 1.2.15", - "System.IO.Ports >= 8.0.0", - "System.Management >= 8.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\TheCod3r\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.nuget.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.nuget.cache deleted file mode 100644 index 708ce90..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/project.nuget.cache +++ /dev/null @@ -1,51 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "4tX4HCLY2A3CBexBTaAiRuw6IiI/K/nzO7zW46BVttK2F5iI+tVAi8Yiton0870TZd1SB98yx/oHeDlncFz+ng==", - "success": true, - "projectFilePath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "expectedPackageFiles": [ - "C:\\Users\\TheCod3r\\.nuget\\packages\\colorful.console\\1.2.15\\colorful.console.1.2.15.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.native.system.io.ports\\8.0.0\\runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.ports\\8.0.0\\system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json deleted file mode 100644 index 4b57228..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": {} - }, - "projects": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\publish\\linux-x64\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Host.linux-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.linux-x64", - "version": "[6.0.9, 6.0.9]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "linux-x64": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.props b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.props deleted file mode 100644 index b67618a..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\TheCod3r\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.3.0 - - - - - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.targets b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/UART-CL By TheCod3r.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.assets.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.assets.json deleted file mode 100644 index dbb4290..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.assets.json +++ /dev/null @@ -1,4397 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Colorful.Console/1.2.15": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard2.0/Colorful.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm64" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-x64" - } - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-arm64" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-x64" - } - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Console/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "compile": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - } - }, - "net6.0/linux-x64": { - "Colorful.Console/1.2.15": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard2.0/Colorful.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.dll": {} - } - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "native": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {} - } - }, - "runtime.native.System/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.unix.System.Console/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} - } - }, - "runtime.unix.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.unix.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "runtime.unix.System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} - } - }, - "runtime.unix.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1", - "runtime.native.System": "4.0.0", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Console/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.unix.System.Console": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.unix.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.unix.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "compile": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.unix.System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": { - "related": ".xml" - } - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.unix.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - } - } - }, - "libraries": { - "Colorful.Console/1.2.15": { - "sha512": "iDBG+0MHkVzM/p74WsfSpcNP2hL7E3o+8Y5ZEEbWQuYmRtHh/YXdbfEnvusTS2Ds8+KX17NGvuNOgTfBxXLCEw==", - "type": "package", - "path": "colorful.console/1.2.15", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "colorful.console.1.2.15.nupkg.sha512", - "colorful.console.nuspec", - "lib/net40/Colorful.Console.dll", - "lib/net45/Colorful.Console.dll", - "lib/net451/Colorful.Console.dll", - "lib/net452/Colorful.Console.dll", - "lib/net46/Colorful.Console.dll", - "lib/net461/Colorful.Console.dll", - "lib/netstandard2.0/Colorful.Console.dll" - ] - }, - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.0.1.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/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/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.0.1.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "runtime.any.System.Collections/4.0.11": { - "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", - "type": "package", - "path": "runtime.any.system.collections/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.collections.4.0.11.nupkg.sha512", - "runtime.any.system.collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", - "runtime.any.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.0.11": { - "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", - "type": "package", - "path": "runtime.any.system.globalization/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.4.0.11.nupkg.sha512", - "runtime.any.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.1.0": { - "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", - "type": "package", - "path": "runtime.any.system.io/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.io.4.1.0.nupkg.sha512", - "runtime.any.system.io.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.1.0": { - "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", - "type": "package", - "path": "runtime.any.system.reflection/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.4.1.0.nupkg.sha512", - "runtime.any.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", - "runtime.any.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", - "runtime.any.system.reflection.primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", - "runtime.any.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.1.0": { - "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.4.1.0.nupkg.sha512", - "runtime.any.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", - "runtime.any.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", - "runtime.any.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.4.0.11.nupkg.sha512", - "runtime.any.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", - "runtime.any.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", - "runtime.any.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "type": "package", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "type": "package", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "type": "package", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-x64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.native.System/4.0.0": { - "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", - "type": "package", - "path": "runtime.native.system/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.0.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "type": "package", - "path": "runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.native.system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", - "type": "package", - "path": "runtime.native.system.security.cryptography/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", - "runtime.native.system.security.cryptography.nuspec" - ] - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "type": "package", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "type": "package", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-x64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "runtime.unix.System.Console/4.0.0": { - "sha512": "OV2TOJkDPXRbp1hhmKV0/U6ZtDQY2SL/VJMs89R9PlH+ZyrbMRF8coT5ZC6m0LsmCDc25AlHyjegIIg+lWVwTw==", - "type": "package", - "path": "runtime.unix.system.console/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.unix.system.console.4.0.0.nupkg.sha512", - "runtime.unix.system.console.nuspec", - "runtimes/unix/lib/netstandard1.3/System.Console.dll" - ] - }, - "runtime.unix.System.Diagnostics.Debug/4.0.11": { - "sha512": "dGIYWbyqSlMlZrsqtU/TdvVNp8lieqowdGBVMi6nFTIiCqrL+RbdiJORguexXNjHtFZR30eE6zPWGxuL60NYFw==", - "type": "package", - "path": "runtime.unix.system.diagnostics.debug/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512", - "runtime.unix.system.diagnostics.debug.nuspec", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll" - ] - }, - "runtime.unix.System.IO.FileSystem/4.0.1": { - "sha512": "7dft+dHYKOXOAnXExVE6OGmifNnSDCrJymApD0l6t2bZUdpai66La9dNqT2eqPhiQXVR3eV61gzkfaIEsuK0pA==", - "type": "package", - "path": "runtime.unix.system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512", - "runtime.unix.system.io.filesystem.nuspec", - "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll" - ] - }, - "runtime.unix.System.Private.Uri/4.0.1": { - "sha512": "m+7TLWWw4cA44vGxcKpMdV2Lgx6HWOe5rUb5RIADE04S6fJNEwXO6u+KY7oWFJQYn5644NyhSxB9oV28fF94NQ==", - "type": "package", - "path": "runtime.unix.system.private.uri/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.unix.system.private.uri.4.0.1.nupkg.sha512", - "runtime.unix.system.private.uri.nuspec", - "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll" - ] - }, - "runtime.unix.System.Runtime.Extensions/4.1.0": { - "sha512": "ouVt2t9k22LcC9HeNX4mu3Ebvp1h+IPKaYiU3tDtOW9YcMR62XQyHsPq5BjBjMHuxjBRL5Hz+BwhSdrY6HjacA==", - "type": "package", - "path": "runtime.unix.system.runtime.extensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512", - "runtime.unix.system.runtime.extensions.nuspec", - "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll" - ] - }, - "System.CodeDom/8.0.0": { - "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", - "type": "package", - "path": "system.codedom/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.CodeDom.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.CodeDom.targets", - "lib/net462/System.CodeDom.dll", - "lib/net462/System.CodeDom.xml", - "lib/net6.0/System.CodeDom.dll", - "lib/net6.0/System.CodeDom.xml", - "lib/net7.0/System.CodeDom.dll", - "lib/net7.0/System.CodeDom.xml", - "lib/net8.0/System.CodeDom.dll", - "lib/net8.0/System.CodeDom.xml", - "lib/netstandard2.0/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.xml", - "system.codedom.8.0.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "type": "package", - "path": "system.collections/4.0.11", - "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.0.11.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "type": "package", - "path": "system.collections.concurrent/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.0.12.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Console/4.0.0": { - "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "type": "package", - "path": "system.console/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.0.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "type": "package", - "path": "system.diagnostics.debug/4.0.11", - "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.0.11.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "type": "package", - "path": "system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.1.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.0.11.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "type": "package", - "path": "system.globalization/4.0.11", - "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.0.11.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "type": "package", - "path": "system.io/4.1.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.1.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "type": "package", - "path": "system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.0.1.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Ports/8.0.0": { - "sha512": "MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "type": "package", - "path": "system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Ports.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", - "lib/net462/System.IO.Ports.dll", - "lib/net462/System.IO.Ports.xml", - "lib/net6.0/System.IO.Ports.dll", - "lib/net6.0/System.IO.Ports.xml", - "lib/net7.0/System.IO.Ports.dll", - "lib/net7.0/System.IO.Ports.xml", - "lib/net8.0/System.IO.Ports.dll", - "lib/net8.0/System.IO.Ports.xml", - "lib/netstandard2.0/System.IO.Ports.dll", - "lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/unix/lib/net6.0/System.IO.Ports.dll", - "runtimes/unix/lib/net6.0/System.IO.Ports.xml", - "runtimes/unix/lib/net7.0/System.IO.Ports.dll", - "runtimes/unix/lib/net7.0/System.IO.Ports.xml", - "runtimes/unix/lib/net8.0/System.IO.Ports.dll", - "runtimes/unix/lib/net8.0/System.IO.Ports.xml", - "runtimes/win/lib/net6.0/System.IO.Ports.dll", - "runtimes/win/lib/net6.0/System.IO.Ports.xml", - "runtimes/win/lib/net7.0/System.IO.Ports.dll", - "runtimes/win/lib/net7.0/System.IO.Ports.xml", - "runtimes/win/lib/net8.0/System.IO.Ports.dll", - "runtimes/win/lib/net8.0/System.IO.Ports.xml", - "system.io.ports.8.0.0.nupkg.sha512", - "system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "type": "package", - "path": "system.linq/4.1.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.1.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.1.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Management/8.0.0": { - "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", - "type": "package", - "path": "system.management/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Management.targets", - "lib/net462/_._", - "lib/net6.0/System.Management.dll", - "lib/net6.0/System.Management.xml", - "lib/net7.0/System.Management.dll", - "lib/net7.0/System.Management.xml", - "lib/net8.0/System.Management.dll", - "lib/net8.0/System.Management.xml", - "lib/netstandard2.0/System.Management.dll", - "lib/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net6.0/System.Management.dll", - "runtimes/win/lib/net6.0/System.Management.xml", - "runtimes/win/lib/net7.0/System.Management.dll", - "runtimes/win/lib/net7.0/System.Management.xml", - "runtimes/win/lib/net8.0/System.Management.dll", - "runtimes/win/lib/net8.0/System.Management.xml", - "system.management.8.0.0.nupkg.sha512", - "system.management.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "type": "package", - "path": "system.objectmodel/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.0.12.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.Uri/4.0.1": { - "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", - "type": "package", - "path": "system.private.uri/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "system.private.uri.4.0.1.nupkg.sha512", - "system.private.uri.nuspec" - ] - }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "type": "package", - "path": "system.reflection/4.1.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.1.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "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.0.1.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "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/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "type": "package", - "path": "system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.0.1.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "type": "package", - "path": "system.reflection.primitives/4.0.1", - "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.0.1.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "type": "package", - "path": "system.reflection.typeextensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.1.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.1", - "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.0.1.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "type": "package", - "path": "system.runtime/4.1.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.1.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "type": "package", - "path": "system.runtime.extensions/4.1.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.1.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "type": "package", - "path": "system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.0.1.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "type": "package", - "path": "system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.1.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "type": "package", - "path": "system.text.encoding/4.0.11", - "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.0.11.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.0.11.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "type": "package", - "path": "system.text.regularexpressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.1.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "type": "package", - "path": "system.threading/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.0.11.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "type": "package", - "path": "system.threading.tasks/4.0.11", - "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.0.11.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Colorful.Console >= 1.2.15", - "System.IO.Ports >= 8.0.0", - "System.Management >= 8.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\TheCod3r\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\publish\\linux-x64\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Host.linux-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.linux-x64", - "version": "[6.0.9, 6.0.9]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "linux-x64": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.nuget.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.nuget.cache deleted file mode 100644 index 71bbcba..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/linux-x64/project.nuget.cache +++ /dev/null @@ -1,77 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "HDA+cufOusPZ1TarTo0odZs+UMqPjzjXYRqt0eGO3tZXyA9tPGRfQg8b2GrCI8ZHoaj+3hTuhe73VWGHd6Iidw==", - "success": true, - "projectFilePath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "expectedPackageFiles": [ - "C:\\Users\\TheCod3r\\.nuget\\packages\\colorful.console\\1.2.15\\colorful.console.1.2.15.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.collections\\4.0.11\\runtime.any.system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.diagnostics.tracing\\4.1.0\\runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.globalization\\4.0.11\\runtime.any.system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.io\\4.1.0\\runtime.any.system.io.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection\\4.1.0\\runtime.any.system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.0.1\\runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.0.1\\runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.0.1\\runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime\\4.1.0\\runtime.any.system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.0.1\\runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.1.0\\runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.text.encoding\\4.0.11\\runtime.any.system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.text.encoding.extensions\\4.0.11\\runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.0.11\\runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.native.system.io.ports\\8.0.0\\runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.native.system.security.cryptography\\4.0.0\\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.unix.system.console\\4.0.0\\runtime.unix.system.console.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.unix.system.diagnostics.debug\\4.0.11\\runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.unix.system.io.filesystem\\4.0.1\\runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.unix.system.private.uri\\4.0.1\\runtime.unix.system.private.uri.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.unix.system.runtime.extensions\\4.1.0\\runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.ports\\8.0.0\\system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.private.uri\\4.0.1\\system.private.uri.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.app.runtime.linux-x64\\6.0.9\\microsoft.netcore.app.runtime.linux-x64.6.0.9.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.linux-x64\\6.0.9\\microsoft.aspnetcore.app.runtime.linux-x64.6.0.9.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.app.host.linux-x64\\6.0.9\\microsoft.netcore.app.host.linux-x64.6.0.9.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json deleted file mode 100644 index aa4c633..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.dgspec.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": {} - }, - "projects": { - "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\publish\\win-x64\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x64": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.props b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.props deleted file mode 100644 index b67618a..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\TheCod3r\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.3.0 - - - - - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.targets b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/UART-CL By TheCod3r.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.assets.json b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.assets.json deleted file mode 100644 index 20692d0..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.assets.json +++ /dev/null @@ -1,4366 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Colorful.Console/1.2.15": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard2.0/Colorful.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm64" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-x64" - } - } - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-arm64" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-x64" - } - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Console/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "compile": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - } - }, - "net6.0/win-x64": { - "Colorful.Console/1.2.15": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO.FileSystem": "4.0.1", - "System.Linq": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.RegularExpressions": "4.1.0" - }, - "compile": { - "lib/netstandard2.0/Colorful.Console.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Colorful.Console.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.dll": {} - } - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.native.System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0" - } - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "type": "package" - }, - "runtime.win.System.Console/4.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Console/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.win.System.Console": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/8.0.0": { - "type": "package", - "dependencies": { - "runtime.native.System.IO.Ports": "8.0.0" - }, - "compile": { - "lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": { - "related": ".xml" - } - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Text.RegularExpressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - } - } - }, - "libraries": { - "Colorful.Console/1.2.15": { - "sha512": "iDBG+0MHkVzM/p74WsfSpcNP2hL7E3o+8Y5ZEEbWQuYmRtHh/YXdbfEnvusTS2Ds8+KX17NGvuNOgTfBxXLCEw==", - "type": "package", - "path": "colorful.console/1.2.15", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "colorful.console.1.2.15.nupkg.sha512", - "colorful.console.nuspec", - "lib/net40/Colorful.Console.dll", - "lib/net45/Colorful.Console.dll", - "lib/net451/Colorful.Console.dll", - "lib/net452/Colorful.Console.dll", - "lib/net46/Colorful.Console.dll", - "lib/net461/Colorful.Console.dll", - "lib/netstandard2.0/Colorful.Console.dll" - ] - }, - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.0.1.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/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/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.0.1.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "runtime.any.System.Collections/4.0.11": { - "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", - "type": "package", - "path": "runtime.any.system.collections/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.collections.4.0.11.nupkg.sha512", - "runtime.any.system.collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", - "runtime.any.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.0.11": { - "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", - "type": "package", - "path": "runtime.any.system.globalization/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.4.0.11.nupkg.sha512", - "runtime.any.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.1.0": { - "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", - "type": "package", - "path": "runtime.any.system.io/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.io.4.1.0.nupkg.sha512", - "runtime.any.system.io.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.1.0": { - "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", - "type": "package", - "path": "runtime.any.system.reflection/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.4.1.0.nupkg.sha512", - "runtime.any.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", - "runtime.any.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", - "runtime.any.system.reflection.primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", - "runtime.any.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.1.0": { - "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.4.1.0.nupkg.sha512", - "runtime.any.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", - "runtime.any.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", - "runtime.any.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.4.0.11.nupkg.sha512", - "runtime.any.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", - "runtime.any.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", - "runtime.any.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==", - "type": "package", - "path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==", - "type": "package", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==", - "type": "package", - "path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.linux-x64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt" - ] - }, - "runtime.native.System.IO.Ports/8.0.0": { - "sha512": "Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==", - "type": "package", - "path": "runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.native.system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==", - "type": "package", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": { - "sha512": "IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==", - "type": "package", - "path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "runtime.osx-x64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt" - ] - }, - "runtime.win.System.Console/4.0.0": { - "sha512": "xiO5b50KA3Z7BOfWK7GLYLN2dfJa/BoDyI0XhNyOwXvAXWvubDyAF61YMnWl/q+j2WopSAXGo12kTpjxmlyCyg==", - "type": "package", - "path": "runtime.win.system.console/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.console.4.0.0.nupkg.sha512", - "runtime.win.system.console.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Console.dll", - "runtimes/win/lib/netstandard1.3/System.Console.dll" - ] - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "sha512": "q8Fm954ezFLfmG0tHNUmsNy+qaEjWtWqYhWh3cGSVjtJwkcBsfigWCh+fdaIVZ9K7m+6lgb3ElL2BBU6G+RijA==", - "type": "package", - "path": "runtime.win.system.diagnostics.debug/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.diagnostics.debug.4.0.11.nupkg.sha512", - "runtime.win.system.diagnostics.debug.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp80/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "sha512": "4FG9RK8J5CsUpXjkiZWS07aJu+H+vTIeQkFKXyjwibfBedUM168SCEaqV3Bjkbv4b3pUuf5Gy1RaqX/HnmKlZw==", - "type": "package", - "path": "runtime.win.system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.io.filesystem.4.0.1.nupkg.sha512", - "runtime.win.system.io.filesystem.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp8/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "sha512": "U3F/M+djxVXuKJaoW2AGpAE2ZWAp372140jsX4d/ctqki+Qb61HuyQY4yUPSA/gdKGbbq6HXzZ6oxB6/G3MYPA==", - "type": "package", - "path": "runtime.win.system.runtime.extensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.runtime.extensions.4.1.0.nupkg.sha512", - "runtime.win.system.runtime.extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" - ] - }, - "System.CodeDom/8.0.0": { - "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", - "type": "package", - "path": "system.codedom/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.CodeDom.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.CodeDom.targets", - "lib/net462/System.CodeDom.dll", - "lib/net462/System.CodeDom.xml", - "lib/net6.0/System.CodeDom.dll", - "lib/net6.0/System.CodeDom.xml", - "lib/net7.0/System.CodeDom.dll", - "lib/net7.0/System.CodeDom.xml", - "lib/net8.0/System.CodeDom.dll", - "lib/net8.0/System.CodeDom.xml", - "lib/netstandard2.0/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.xml", - "system.codedom.8.0.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "type": "package", - "path": "system.collections/4.0.11", - "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.0.11.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "type": "package", - "path": "system.collections.concurrent/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.0.12.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Console/4.0.0": { - "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "type": "package", - "path": "system.console/4.0.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.0.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "type": "package", - "path": "system.diagnostics.debug/4.0.11", - "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.0.11.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "type": "package", - "path": "system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.1.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.0.11.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "type": "package", - "path": "system.globalization/4.0.11", - "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.0.11.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "type": "package", - "path": "system.io/4.1.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.1.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "type": "package", - "path": "system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.0.1.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Ports/8.0.0": { - "sha512": "MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==", - "type": "package", - "path": "system.io.ports/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Ports.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", - "lib/net462/System.IO.Ports.dll", - "lib/net462/System.IO.Ports.xml", - "lib/net6.0/System.IO.Ports.dll", - "lib/net6.0/System.IO.Ports.xml", - "lib/net7.0/System.IO.Ports.dll", - "lib/net7.0/System.IO.Ports.xml", - "lib/net8.0/System.IO.Ports.dll", - "lib/net8.0/System.IO.Ports.xml", - "lib/netstandard2.0/System.IO.Ports.dll", - "lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/unix/lib/net6.0/System.IO.Ports.dll", - "runtimes/unix/lib/net6.0/System.IO.Ports.xml", - "runtimes/unix/lib/net7.0/System.IO.Ports.dll", - "runtimes/unix/lib/net7.0/System.IO.Ports.xml", - "runtimes/unix/lib/net8.0/System.IO.Ports.dll", - "runtimes/unix/lib/net8.0/System.IO.Ports.xml", - "runtimes/win/lib/net6.0/System.IO.Ports.dll", - "runtimes/win/lib/net6.0/System.IO.Ports.xml", - "runtimes/win/lib/net7.0/System.IO.Ports.dll", - "runtimes/win/lib/net7.0/System.IO.Ports.xml", - "runtimes/win/lib/net8.0/System.IO.Ports.dll", - "runtimes/win/lib/net8.0/System.IO.Ports.xml", - "system.io.ports.8.0.0.nupkg.sha512", - "system.io.ports.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "type": "package", - "path": "system.linq/4.1.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.1.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.1.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Management/8.0.0": { - "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", - "type": "package", - "path": "system.management/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Management.targets", - "lib/net462/_._", - "lib/net6.0/System.Management.dll", - "lib/net6.0/System.Management.xml", - "lib/net7.0/System.Management.dll", - "lib/net7.0/System.Management.xml", - "lib/net8.0/System.Management.dll", - "lib/net8.0/System.Management.xml", - "lib/netstandard2.0/System.Management.dll", - "lib/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net6.0/System.Management.dll", - "runtimes/win/lib/net6.0/System.Management.xml", - "runtimes/win/lib/net7.0/System.Management.dll", - "runtimes/win/lib/net7.0/System.Management.xml", - "runtimes/win/lib/net8.0/System.Management.dll", - "runtimes/win/lib/net8.0/System.Management.xml", - "system.management.8.0.0.nupkg.sha512", - "system.management.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "type": "package", - "path": "system.objectmodel/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.0.12.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.Uri/4.0.1": { - "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", - "type": "package", - "path": "system.private.uri/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "system.private.uri.4.0.1.nupkg.sha512", - "system.private.uri.nuspec" - ] - }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "type": "package", - "path": "system.reflection/4.1.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.1.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "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.0.1.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "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/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "type": "package", - "path": "system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.0.1.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "type": "package", - "path": "system.reflection.primitives/4.0.1", - "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.0.1.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "type": "package", - "path": "system.reflection.typeextensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.1.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.1", - "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.0.1.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "type": "package", - "path": "system.runtime/4.1.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.1.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "type": "package", - "path": "system.runtime.extensions/4.1.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.1.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "type": "package", - "path": "system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.0.1.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "type": "package", - "path": "system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.1.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "type": "package", - "path": "system.text.encoding/4.0.11", - "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.0.11.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.0.11.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "type": "package", - "path": "system.text.regularexpressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.1.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "type": "package", - "path": "system.threading/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.0.11.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.0.1": { - "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", - "type": "package", - "path": "system.threading.overlapped/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", - "system.threading.overlapped.4.0.1.nupkg.sha512", - "system.threading.overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "type": "package", - "path": "system.threading.tasks/4.0.11", - "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.0.11.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Colorful.Console >= 1.2.15", - "System.IO.Ports >= 8.0.0", - "System.Management >= 8.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\TheCod3r\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "projectName": "UART-CL By TheCod3r", - "projectPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "packagesPath": "C:\\Users\\TheCod3r\\.nuget\\packages\\", - "outputPath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\obj\\publish\\win-x64\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\TheCod3r\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Colorful.Console": { - "target": "Package", - "version": "[1.2.15, )" - }, - "System.IO.Ports": { - "target": "Package", - "version": "[8.0.0, )" - }, - "System.Management": { - "target": "Package", - "version": "[8.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[6.0.9, 6.0.9]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x64": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.nuget.cache b/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.nuget.cache deleted file mode 100644 index 146874b..0000000 --- a/UART-CL By TheCod3r/UART-CL By TheCod3r/obj/publish/win-x64/project.nuget.cache +++ /dev/null @@ -1,75 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "8vcif+XkxXspVB3Dwt/LhtxJziiYtrWcTorqXBiiWqoE6OTR6Dj6o/O0vkhUkLjjJeX0C7Lqs2iGqVEENyE1FA==", - "success": true, - "projectFilePath": "C:\\Users\\TheCod3r\\source\\repos\\UART-CL By TheCod3r\\UART-CL By TheCod3r\\UART-CL By TheCod3r.csproj", - "expectedPackageFiles": [ - "C:\\Users\\TheCod3r\\.nuget\\packages\\colorful.console\\1.2.15\\colorful.console.1.2.15.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.collections\\4.0.11\\runtime.any.system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.diagnostics.tracing\\4.1.0\\runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.globalization\\4.0.11\\runtime.any.system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.io\\4.1.0\\runtime.any.system.io.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection\\4.1.0\\runtime.any.system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.0.1\\runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.0.1\\runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.0.1\\runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime\\4.1.0\\runtime.any.system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.0.1\\runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.1.0\\runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.text.encoding\\4.0.11\\runtime.any.system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.text.encoding.extensions\\4.0.11\\runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.0.11\\runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\8.0.0\\runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.native.system.io.ports\\8.0.0\\runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\8.0.0\\runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.win.system.console\\4.0.0\\runtime.win.system.console.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.win.system.diagnostics.debug\\4.0.11\\runtime.win.system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.win.system.io.filesystem\\4.0.1\\runtime.win.system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.1.0\\runtime.win.system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.io.ports\\8.0.0\\system.io.ports.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.private.uri\\4.0.1\\system.private.uri.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading.overlapped\\4.0.1\\system.threading.overlapped.4.0.1.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.9\\microsoft.netcore.app.runtime.win-x64.6.0.9.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.9\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.9.nupkg.sha512", - "C:\\Users\\TheCod3r\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.9\\microsoft.aspnetcore.app.runtime.win-x64.6.0.9.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/UART-CL Tests/ErrorServiceTests.cs b/UART-CL Tests/ErrorServiceTests.cs new file mode 100644 index 0000000..3ebddcb --- /dev/null +++ b/UART-CL Tests/ErrorServiceTests.cs @@ -0,0 +1,62 @@ +using Microsoft.Extensions.Logging; +using RichardSzalay.MockHttp; +using NorModifierLib.Services; +using NSubstitute; + +namespace UART_CL_Tests; + +public class ErrorServiceTests +{ + private const string DatabaseUri = "http://uartcodes.com/xml.php"; + private const string ValidResponse = "00100E3CKnown Unknown 00100E3C - Report Findings0015442CKnown Unknown 0015442C - Report Findings015E4E8BKnown Unknown 015E4E8B - Report Findings"; + + [Theory] + [InlineData(ValidResponse)] + public async Task ParseError_ValidData_Test(string validResponse) + { + // Arrange + var logger = Substitute.For>(); + var mockHttp = new MockHttpMessageHandler(); + + mockHttp.When(DatabaseUri) + .Respond("application/xml", validResponse); + + var client = mockHttp.ToHttpClient(); + + var service = new ErrorCodeService(logger, client); + + // Act + var errorDescription = await service.ParseError("00100E3C"); + + // Assert + Assert.Equal(expected: "Known Unknown 00100E3C - Report Findings", errorDescription); + } + + [Theory] + [ClassData(typeof(InvalidResponses))] + public async Task ParseError_InvalidData_Test(string invalidResponse) + { + // Arrange + var logger = Substitute.For>(); + var mockHttp = new MockHttpMessageHandler(); + + mockHttp.When("http://uartcodes.com/xml.php") + .Respond("application/xml", invalidResponse); + + var client = mockHttp.ToHttpClient(); + + var service = new ErrorCodeService(logger, client); + + // Act & Assert + await Assert.ThrowsAnyAsync(() => service.ParseError("00100E3C")); + } + + public class InvalidResponses : TheoryData + { + public InvalidResponses() + { + Add(""); // Blank response + Add(""); // Incomplete XML + } + } +} diff --git a/UART-CL Tests/NorServiceTests.cs b/UART-CL Tests/NorServiceTests.cs new file mode 100644 index 0000000..1021c44 --- /dev/null +++ b/UART-CL Tests/NorServiceTests.cs @@ -0,0 +1,138 @@ +using Microsoft.Extensions.Logging; +using NSubstitute; +using NorModifierLib.Enumerators; +using NorModifierLib.Services; + +namespace UART_CL_Tests; + +public class NorServiceTests +{ + [Fact] + public void ParseNor_Test() + { + // Arrange + var filePath = @"Z:\nor.bin"; + var logger = Substitute.For>(); + + // Act + var service = new NorService(logger); + var norInfo = service.ReadNor(filePath); + + // Assert + Assert.NotNull(norInfo); + Assert.NotEmpty(norInfo.Errors); + + var norError = norInfo.Errors.First(); + Assert.Equal("Unknown Error Code", norError.Code); + Assert.Equal(416761713u, norError.Rtc); + Assert.Equal("HstOsOFF", norError.PowerStateA); + Assert.Equal("SOC_ON", norError.PowerStateB); + Assert.Equal("Power Button", norError.BootCause); + Assert.Equal("MSOC Reset Moni High, Main SoC Power Off, FATAL OFF", norError.SequenceNumber); + + Assert.True(norError.HdmiPower); + Assert.True(norError.BddPower); + Assert.True(norError.HdmiCecPower); + Assert.True(norError.UsbPower); + Assert.False(norError.WifiPower); + + Assert.Equal("35.72°C", norError.EnvironmentTemperature); + Assert.Equal("54.98°C", norError.ChipTemperature); + } + + [Fact] + public void ModifyEdition_Test() + { + // Arrange + var filePath = @"Z:\nor.bin"; + var copyFilePath = @"Z:\nor_copy.bin"; + File.Copy(filePath, copyFilePath, true); // Copy the file to ensure it exists + var logger = Substitute.For>(); + + // Act + var service = new NorService(logger); + var norInfo = service.ReadNor(copyFilePath); + + service.SetEdition(norInfo, Edition.Digital); + + var modifiedNorInfo = service.ReadNor(copyFilePath); + + // Assert + Assert.NotNull(norInfo); + Assert.Equal(expected: Edition.Disc, norInfo.Edition); + Assert.NotNull(modifiedNorInfo); + Assert.Equal(expected: Edition.Digital, modifiedNorInfo.Edition); + } + + [Fact] + public void ModifyConsoleSerial_Test() + { + // Arrange + var filePath = @"Z:\nor.bin"; + var copyFilePath = @"Z:\nor_copy.bin"; + File.Copy(filePath, copyFilePath, true); // Copy the file to ensure it exists + var logger = Substitute.For>(); + + // Act + var service = new NorService(logger); + var norInfo = service.ReadNor(copyFilePath); + + service.SetConsoleSerial(norInfo, "F22301EL011425029"); + + var modifiedNorInfo = service.ReadNor(copyFilePath); + + // Assert + Assert.NotNull(norInfo); + Assert.Equal(expected: "F22301EL011425028", norInfo.ConsoleSerialNumber); + Assert.NotNull(modifiedNorInfo); + Assert.Equal(expected: "F22301EL011425029", modifiedNorInfo.ConsoleSerialNumber); + } + + [Fact] + public void ModifyMotherboardSerial_Test() + { + // Arrange + var filePath = @"Z:\nor.bin"; + var copyFilePath = @"Z:\nor_copy.bin"; + File.Copy(filePath, copyFilePath, true); // Copy the file to ensure it exists + var logger = Substitute.For>(); + + // Act + var service = new NorService(logger); + var norInfo = service.ReadNor(copyFilePath); + + service.SetMotherboardSerial(norInfo, "40026H00810660A1"); + + var modifiedNorInfo = service.ReadNor(copyFilePath); + + // Assert + Assert.NotNull(norInfo); + Assert.Equal(expected: "40026H00810660A0", norInfo.MotherboardSerialNumber); + Assert.NotNull(modifiedNorInfo); + Assert.Equal(expected: "40026H00810660A1", modifiedNorInfo.MotherboardSerialNumber); + } + + [Fact] + public void ModifyModelNumber_Test() + { + // Arrange + var filePath = @"Z:\nor.bin"; + var copyFilePath = @"Z:\nor_copy.bin"; + File.Copy(filePath, copyFilePath, true); // Copy the file to ensure it exists + var logger = Substitute.For>(); + + // Act + var service = new NorService(logger); + var norInfo = service.ReadNor(copyFilePath); + + service.SetModel(norInfo, "CFI-1118B"); + + var modifiedNorInfo = service.ReadNor(copyFilePath); + + // Assert + Assert.NotNull(norInfo); + Assert.Equal(expected: "CFI-1118A", norInfo.Model); + Assert.NotNull(modifiedNorInfo); + Assert.Equal(expected: "CFI-1118B", modifiedNorInfo.Model); + } +} diff --git a/UART-CL Tests/UART-CL Tests.csproj b/UART-CL Tests/UART-CL Tests.csproj new file mode 100644 index 0000000..89d7c2c --- /dev/null +++ b/UART-CL Tests/UART-CL Tests.csproj @@ -0,0 +1,32 @@ + + + + net9.0 + UART_CL_Tests + enable + enable + false + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=./ + + + + + + + + + + + + + + + + + + + + diff --git a/UART-CL Tests/UartServiceTests.cs b/UART-CL Tests/UartServiceTests.cs new file mode 100644 index 0000000..dbea0d3 --- /dev/null +++ b/UART-CL Tests/UartServiceTests.cs @@ -0,0 +1,80 @@ +using Microsoft.Extensions.Logging; +using NSubstitute; +using NorModifierLib.Services; +using NorModifierLib.Interfaces; +using NorModifierLib.Data; +using NorModifierLib.Exceptions; + +namespace UART_CL_Tests; + +public class UartServiceTests +{ + [Fact] + public async Task ClearErrorsAsync_Test() + { + // Arrange + var logger = Substitute.For>(); + var serialPort = Substitute.For(); + var uartService = new UartService(logger); + + // Act + await uartService.ClearErrorsAsync(serialPort); + + // Assert + await serialPort.Received(1).WriteLineAsync(Arg.Is(x => x == Helpers.CreateTransmittableCommand("errlog clear"))); + } + + [Fact] + public async Task GetErrorsAsync_Test() + { + // Arrange + var logger = Substitute.For>(); + var serialPort = Substitute.For(); + var uartService = new UartService(logger); + + var errorOneResponse = "OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80:27"; + var errorTwoResponse = "NG"; + serialPort.ReadLineAsync().Returns(x => errorOneResponse, x => errorTwoResponse); + + // Act + var errors = await uartService.GetErrorsAsync(serialPort); + + // Assert + await serialPort.Received(1).WriteLineAsync(Arg.Is(x => x == Helpers.CreateTransmittableCommand("errlog 0"))); + await serialPort.Received(1).WriteLineAsync(Arg.Is(x => x == Helpers.CreateTransmittableCommand("errlog 1"))); + + Assert.NotNull(errors); + Assert.Single(errors); + + var error = errors.First(); + Assert.Equal(0x80C00140, error.RawCode); + Assert.Equal(0x0000008D, error.Rtc); + Assert.Equal(0xFFFF0005, error.RawPowerState); + Assert.Equal(0x00000100, error.RawBootCause); + Assert.Equal(0x2157, error.RawSequenceNumber); + Assert.Equal(0x0016, error.RawDevicePowerManagement); + Assert.Equal(0x46E4, error.RawChipTemperature); + Assert.Equal(0x1A80, error.RawEnvironmentTemperature); + + Assert.Equal("Power Button", errors.First().BootCause); + } + + [Fact] + public async Task GetErrorsAsync_ThrowsUartResponseInvalidException() + { + // Arrange + var logger = Substitute.For>(); + var serialPort = Substitute.For(); + var uartService = new UartService(logger); + + var responseOne = "OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80:28"; + var responseTwo = "OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80"; + var responseThree = "KO 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80:27"; + serialPort.ReadLineAsync().Returns(x => responseOne, x => responseTwo, x => responseThree); + + // Act & Assert + await Assert.ThrowsAsync(() => uartService.GetErrorsAsync(serialPort)); + await Assert.ThrowsAsync(() => uartService.GetErrorsAsync(serialPort)); + await Assert.ThrowsAsync(() => uartService.GetErrorsAsync(serialPort)); + } +} diff --git a/UART-CL Tests/UartTests.cs b/UART-CL Tests/UartTests.cs new file mode 100644 index 0000000..7cb209b --- /dev/null +++ b/UART-CL Tests/UartTests.cs @@ -0,0 +1,186 @@ +using System.Globalization; +using System.Text; +using NorModifierLib; +using NorModifierLib.Data; + +namespace UART_CL_Tests; + +public class UartTests +{ + [Fact] + [Obsolete("The classes tested by this test are no longer used.")] + public void ParseErrorCode_Test() + { + // Arrange + var rawError = "OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80:27"; + + // Act + var errorCode = new ErrorCode(rawError); + var checksumValid = errorCode.ChecksumValid; + + // Assert + Assert.Equal("00000000", errorCode.FirstPart); + Assert.Equal("80C00140", errorCode.SecondPart); + Assert.Equal("0000008D", errorCode.ThirdPart); + Assert.Equal("FFFF0005", errorCode.FourthPart); + Assert.Equal("00000100", errorCode.FifthPart); + Assert.Equal("2157", errorCode.SixthPart); + Assert.Equal("0016", errorCode.SeventhPart); + Assert.Equal("46E4", errorCode.EighthPart); + Assert.Equal("1A80", errorCode.NinthPart); + Assert.Equal("27", errorCode.Checksum); + Assert.True(checksumValid); + } + + [Fact] + public void ParseUartError_Test() + { + // Arrange + var rawError = Convert.FromHexString("80C001400000008DFFFF0005000001002157001646E41A80"); + + // Act + var errorCode = new UartError(rawError); + + // Assert + Assert.Equal("Power Button", errorCode.BootCause); + } + + [Fact] + public void CalculateChecksum_Test() + { + // Arrange + var str = "OK 00000000 80C00140 0000008D FFFF0005 00000100 2157 0016 46E4 1A80"; + var checksum = "27"; + + // Act + var calculatedChecksum = Helpers.CalculateChecksum(str); + + // Assert + Assert.Equal(checksum, calculatedChecksum); + } + + [Fact] + public void CreateTransmittableCommand_Test() + { + // Arrange + var str = "Hello World"; + + // Act + var oldChecksum = OldCalculateChecksum(str); + var newChecksum = Helpers.CreateTransmittableCommand(str); + + // Assert + Assert.Equal(oldChecksum, newChecksum); + } + + [Fact] + [Obsolete("The methods tested by this test are no longer used.")] + public void ConvertHexStringToString_Test() + { + // Arrange + var str = "48454C4C4F"; + + // Act + var oldString = OldHexStringToString(str); + var newString = Helpers.HexStringToString(str); + + // Assert + Assert.Equal(oldString, newString); + } + + [Fact] + [Obsolete("The methods tested by this test are no longer used.")] + public void ConvertHexStringToByteArray_Test() + { + // Arrange + var str = "DEADBEEF"; + + // Act + var oldBytes = OldConvertHexStringToByteArray(str); + var newBytes = Convert.FromHexString(str); + + // Assert + Assert.Equal(oldBytes, newBytes); + } + + [Fact] + [Obsolete("The methods tested by this test are no longer used.")] + public void PatternAt_Test() + { + // Arrange + var array = new byte[] { 0x00, 0x01, 0x02, 0x03, + 0x00, 0x02, 0x02, 0x03, + 0x00, 0x01, 0x02, 0x03, + 0x00, 0x03, 0x02, 0x03 }; + + var pattern = new byte[] { 0x00, 0x01 }; + + // Act + var oldPattern = OldPatternAt(array, pattern); + var newPattern = Helpers.PatternAt(array, pattern); + + // Assert + Assert.Equal(expected: 2, oldPattern.Count()); + Assert.Equal(oldPattern.Count(), newPattern.Count()); + Assert.Equal(oldPattern, newPattern); + } + + // + // Old methods to verify new implementations behave the same + // + public static string OldCalculateChecksum(string str) + { + int sum = 0; + foreach (char c in str) + { + sum += (int)c; + } + return str + ":" + (sum & 0xFF).ToString("X2"); + } + + [Obsolete("Use Encoding.ASCII.GetString instead.")] + static string OldHexStringToString(string hexString) + { + if (hexString == null || (hexString.Length & 1) == 1) + { + throw new ArgumentException("Hex string parameter must have an even number of characters"); + } + var sb = new StringBuilder(); + for (var i = 0; i < hexString.Length; i += 2) + { + var hexChar = hexString.Substring(i, 2); + sb.Append((char)Convert.ToByte(hexChar, 16)); + } + return sb.ToString(); + } + + [Obsolete("Use known offsets instead.")] + static IEnumerable OldPatternAt(byte[] source, byte[] pattern) + { + for (int i = 0; i < source.Length; i++) + { + if (source.Skip(i).Take(pattern.Length).SequenceEqual(pattern)) + { + yield return i; + } + } + } + + [Obsolete("Use Convert.FromHexString instead.")] + static byte[] OldConvertHexStringToByteArray(string hexString) + { + if (hexString.Length % 2 != 0) + { + throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, "The binary key cannot have an odd number of digits: {0}", hexString)); + } + + byte[] data = new byte[hexString.Length / 2]; + for (int index = 0; index < data.Length; index++) + { + string byteValue = hexString.Substring(index * 2, 2); + data[index] = Convert.ToByte(byteValue, 16); // Parse hex string directly + } + + return data; + } +}