commit 2e942771d89115b4e3ef682eaecb31bee9e4223a Author: Márcio Fernandes Date: Fri Nov 12 10:59:08 2021 +0000 project created diff --git a/src/.vs/BlueControl/project-colors.json b/src/.vs/BlueControl/project-colors.json new file mode 100644 index 0000000..4166460 --- /dev/null +++ b/src/.vs/BlueControl/project-colors.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "ProjectMap": { + "ce30f612-e10b-4e59-b540-c2b6ac4db819": { + "ProjectGuid": "ce30f612-e10b-4e59-b540-c2b6ac4db819", + "DisplayName": "BlueControl.uwp", + "ColorIndex": 0 + } + }, + "NextColorIndex": 1 +} \ No newline at end of file diff --git a/src/.vs/BlueControl/v17/.suo b/src/.vs/BlueControl/v17/.suo new file mode 100644 index 0000000..5d985c4 Binary files /dev/null and b/src/.vs/BlueControl/v17/.suo differ diff --git a/src/BlueControl.sln b/src/BlueControl.sln new file mode 100644 index 0000000..d7919bb --- /dev/null +++ b/src/BlueControl.sln @@ -0,0 +1,51 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlueControl.uwp", "BlueControl.uwp\BlueControl.uwp.csproj", "{CE30F612-E10B-4E59-B540-C2B6AC4DB819}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM = Debug|ARM + Debug|ARM64 = Debug|ARM64 + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|ARM = Release|ARM + Release|ARM64 = Release|ARM64 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM.ActiveCfg = Debug|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM.Build.0 = Debug|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM.Deploy.0 = Debug|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM64.Build.0 = Debug|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x64.ActiveCfg = Debug|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x64.Build.0 = Debug|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x64.Deploy.0 = Debug|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x86.ActiveCfg = Debug|x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x86.Build.0 = Debug|x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Debug|x86.Deploy.0 = Debug|x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM.ActiveCfg = Release|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM.Build.0 = Release|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM.Deploy.0 = Release|ARM + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM64.ActiveCfg = Release|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM64.Build.0 = Release|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|ARM64.Deploy.0 = Release|ARM64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x64.ActiveCfg = Release|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x64.Build.0 = Release|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x64.Deploy.0 = Release|x64 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x86.ActiveCfg = Release|x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x86.Build.0 = Release|x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819}.Release|x86.Deploy.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {859A591C-B375-40D1-B80E-97AD476CFADD} + EndGlobalSection +EndGlobal diff --git a/src/BlueControl.uwp/App.xaml b/src/BlueControl.uwp/App.xaml new file mode 100644 index 0000000..da23149 --- /dev/null +++ b/src/BlueControl.uwp/App.xaml @@ -0,0 +1,7 @@ + + + diff --git a/src/BlueControl.uwp/App.xaml.cs b/src/BlueControl.uwp/App.xaml.cs new file mode 100644 index 0000000..993a1e7 --- /dev/null +++ b/src/BlueControl.uwp/App.xaml.cs @@ -0,0 +1,100 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.ApplicationModel; +using Windows.ApplicationModel.Activation; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +namespace BlueControl.uwp +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + sealed partial class App : Application + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + this.Suspending += OnSuspending; + } + + /// + /// Invoked when the application is launched normally by the end user. Other entry points + /// will be used such as when the application is launched to open a specific file. + /// + /// Details about the launch request and process. + protected override void OnLaunched(LaunchActivatedEventArgs e) + { + Frame rootFrame = Window.Current.Content as Frame; + + // Do not repeat app initialization when the Window already has content, + // just ensure that the window is active + if (rootFrame == null) + { + // Create a Frame to act as the navigation context and navigate to the first page + rootFrame = new Frame(); + + rootFrame.NavigationFailed += OnNavigationFailed; + + if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) + { + //TODO: Load state from previously suspended application + } + + // Place the frame in the current Window + Window.Current.Content = rootFrame; + } + + if (e.PrelaunchActivated == false) + { + if (rootFrame.Content == null) + { + // When the navigation stack isn't restored navigate to the first page, + // configuring the new page by passing required information as a navigation + // parameter + rootFrame.Navigate(typeof(MainPage), e.Arguments); + } + // Ensure the current window is active + Window.Current.Activate(); + } + } + + /// + /// Invoked when Navigation to a certain page fails + /// + /// The Frame which failed navigation + /// Details about the navigation failure + void OnNavigationFailed(object sender, NavigationFailedEventArgs e) + { + throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + } + + /// + /// Invoked when application execution is being suspended. Application state is saved + /// without knowing whether the application will be terminated or resumed with the contents + /// of memory still intact. + /// + /// The source of the suspend request. + /// Details about the suspend request. + private void OnSuspending(object sender, SuspendingEventArgs e) + { + var deferral = e.SuspendingOperation.GetDeferral(); + //TODO: Save application state and stop any background activity + deferral.Complete(); + } + } +} diff --git a/src/BlueControl.uwp/Assets/LockScreenLogo.scale-200.png b/src/BlueControl.uwp/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..735f57a Binary files /dev/null and b/src/BlueControl.uwp/Assets/LockScreenLogo.scale-200.png differ diff --git a/src/BlueControl.uwp/Assets/SplashScreen.scale-200.png b/src/BlueControl.uwp/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..023e7f1 Binary files /dev/null and b/src/BlueControl.uwp/Assets/SplashScreen.scale-200.png differ diff --git a/src/BlueControl.uwp/Assets/Square150x150Logo.scale-200.png b/src/BlueControl.uwp/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..af49fec Binary files /dev/null and b/src/BlueControl.uwp/Assets/Square150x150Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/Assets/Square44x44Logo.scale-200.png b/src/BlueControl.uwp/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..ce342a2 Binary files /dev/null and b/src/BlueControl.uwp/Assets/Square44x44Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/src/BlueControl.uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..f6c02ce Binary files /dev/null and b/src/BlueControl.uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/src/BlueControl.uwp/Assets/StoreLogo.png b/src/BlueControl.uwp/Assets/StoreLogo.png new file mode 100644 index 0000000..7385b56 Binary files /dev/null and b/src/BlueControl.uwp/Assets/StoreLogo.png differ diff --git a/src/BlueControl.uwp/Assets/Wide310x150Logo.scale-200.png b/src/BlueControl.uwp/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..288995b Binary files /dev/null and b/src/BlueControl.uwp/Assets/Wide310x150Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/BlueControl.uwp.csproj b/src/BlueControl.uwp/BlueControl.uwp.csproj new file mode 100644 index 0000000..9113d68 --- /dev/null +++ b/src/BlueControl.uwp/BlueControl.uwp.csproj @@ -0,0 +1,169 @@ + + + + + Debug + x86 + {CE30F612-E10B-4E59-B540-C2B6AC4DB819} + AppContainerExe + Properties + BlueControl.uwp + BlueControl.uwp + en-US + UAP + 10.0.22000.0 + 10.0.17763.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + false + + + true + bin\x86\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x86 + false + prompt + true + + + bin\x86\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x86 + false + prompt + true + true + + + true + bin\ARM\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM + false + prompt + true + + + bin\ARM\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM + false + prompt + true + true + + + true + bin\ARM64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM64 + false + prompt + true + true + + + bin\ARM64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM64 + false + prompt + true + true + + + true + bin\x64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x64 + false + prompt + true + + + bin\x64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x64 + false + prompt + true + true + + + PackageReference + + + + App.xaml + + + MainPage.xaml + + + + + + + Designer + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + + + 6.2.12 + + + + 14.0 + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/MainPage.xaml b/src/BlueControl.uwp/MainPage.xaml new file mode 100644 index 0000000..16726b1 --- /dev/null +++ b/src/BlueControl.uwp/MainPage.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/src/BlueControl.uwp/MainPage.xaml.cs b/src/BlueControl.uwp/MainPage.xaml.cs new file mode 100644 index 0000000..606f178 --- /dev/null +++ b/src/BlueControl.uwp/MainPage.xaml.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using System.Threading.Tasks; +using Windows.Devices.Bluetooth; +using Windows.Devices.Bluetooth.Advertisement; +using Windows.Devices.Bluetooth.GenericAttributeProfile; +using Windows.Devices.Enumeration; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 + +namespace BlueControl.uwp +{ + /// + /// An empty page that can be used on its own or navigated to within a Frame. + /// + public sealed partial class MainPage : Page + { + private ViewModels.MainPageViewModel vm = new ViewModels.MainPageViewModel(); + public MainPage() + { + this.vm.StaDispatcher = this.Dispatcher; + this.DataContext = vm; + this.InitializeComponent(); + this.Loading += async (sender, args) => await vm.ReloadAsync(); + + } + } +} diff --git a/src/BlueControl.uwp/Package.appxmanifest b/src/BlueControl.uwp/Package.appxmanifest new file mode 100644 index 0000000..77ebbc8 --- /dev/null +++ b/src/BlueControl.uwp/Package.appxmanifest @@ -0,0 +1,50 @@ + + + + + + + + + + BlueControl.uwp + marci + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/Properties/AssemblyInfo.cs b/src/BlueControl.uwp/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..4ae90b2 --- /dev/null +++ b/src/BlueControl.uwp/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("BlueControl.uwp")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BlueControl.uwp")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: ComVisible(false)] \ No newline at end of file diff --git a/src/BlueControl.uwp/Properties/Default.rd.xml b/src/BlueControl.uwp/Properties/Default.rd.xml new file mode 100644 index 0000000..af00722 --- /dev/null +++ b/src/BlueControl.uwp/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/ViewModels/MainPageViewModel.cs b/src/BlueControl.uwp/ViewModels/MainPageViewModel.cs new file mode 100644 index 0000000..22bd538 --- /dev/null +++ b/src/BlueControl.uwp/ViewModels/MainPageViewModel.cs @@ -0,0 +1,136 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.Devices.Bluetooth; +using Windows.Devices.Bluetooth.Advertisement; +using Windows.Devices.Enumeration; +using Windows.UI.Xaml; + +namespace BlueControl.uwp.ViewModels +{ + public class MainPageViewModel : INotifyPropertyChanged + { + private const string SURFACE_KEYBOARD_NAME = "Surface Keyboard"; + private readonly BluetoothLEAdvertisementWatcher bleWatcher = new BluetoothLEAdvertisementWatcher(); + private bool control = false; + public Windows.UI.Core.CoreDispatcher StaDispatcher { get; set; } + + + public async Task StaExecuteAsync(Action action) + { + if (StaDispatcher != null) + await StaDispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () => action()); + } + + private void CloseApplication(TimeSpan delta) + { + var dispatcherTimer = new DispatcherTimer(); + dispatcherTimer.Tick += (o, e) => App.Current.Exit(); + dispatcherTimer.Interval = delta; + dispatcherTimer.Start(); + } + + private void CloseApplication() + { + CloseApplication(new TimeSpan(0, 0, 2)); + } + + + private void Custom_PairingRequested(DeviceInformationCustomPairing sender, DevicePairingRequestedEventArgs args) + { + + StaExecuteAsync(() => this.Text = "Pin: " + Environment.NewLine + args.Pin); + + args.Accept(args.Pin); + } + + public MainPageViewModel() + { + this.bleWatcher.Received += async (sender, args) => + { + try + { + if (!args.IsConnectable || control == true) return; + control = true; + var dev = await BluetoothLEDevice.FromBluetoothAddressAsync(args.BluetoothAddress); + if (dev.Name == SURFACE_KEYBOARD_NAME && dev.DeviceInformation.Pairing.CanPair) + { + await StaExecuteAsync(() => this.Text = "trying to pair... "); + + System.Threading.Thread.Sleep(3000); + dev.DeviceInformation.Pairing.Custom.PairingRequested += Custom_PairingRequested; + var t = await dev.DeviceInformation.Pairing.Custom.PairAsync(DevicePairingKinds.DisplayPin, DevicePairingProtectionLevel.Encryption); + if (t.Status == DevicePairingResultStatus.Paired) + { + this.bleWatcher.Stop(); + await StaExecuteAsync(() => + { + this.Text = $"Paired and connected {Environment.NewLine} auto closing in 2 seconds "; + CloseApplication(); + } + ); + } + else + await StaExecuteAsync(() => this.Text = t.Status.ToString()); + } + } + catch { } + control = false; + + }; + } + + + + private string text; + public string Text + { + get { return text; } + private set + { + text = value; + if (PropertyChanged != null) PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Text")); + } + } + + private bool isconnected; + public bool IsConnected + { + get { return isconnected; } + private set + { + isconnected = value; + if (PropertyChanged != null) PropertyChanged.Invoke(this, new PropertyChangedEventArgs("IsConnected")); + } + } + + public event PropertyChangedEventHandler PropertyChanged; + + + public async Task ReloadAsync() + { + this.Text = "Loading..."; + + IsConnected = + (from x in await DeviceInformation.FindAllAsync(BluetoothLEDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected)) where x.Name == SURFACE_KEYBOARD_NAME select x).Any(); + + if (!IsConnected) + { + var pairedDevice = + (from x in await DeviceInformation.FindAllAsync(BluetoothLEDevice.GetDeviceSelectorFromPairingState(true)) where x.Name == SURFACE_KEYBOARD_NAME select x).FirstOrDefault(); + if (pairedDevice != null) + await pairedDevice.Pairing.UnpairAsync(); + this.Text = $"....searching keyboard. {Environment.NewLine} Please confirm is in pairing mode"; + this.bleWatcher.Start(); + } + else + { + this.Text = $"Paired and connected {Environment.NewLine} auto closing in 2 seconds "; + CloseApplication(); + } + } + } +} diff --git a/src/BlueControl.uwp/bin/x86/Debug/App.xbf b/src/BlueControl.uwp/bin/x86/Debug/App.xbf new file mode 100644 index 0000000..08c3069 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/App.xbf differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/App.xbf b/src/BlueControl.uwp/bin/x86/Debug/AppX/App.xbf new file mode 100644 index 0000000..08c3069 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/App.xbf differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/AppxManifest.xml b/src/BlueControl.uwp/bin/x86/Debug/AppX/AppxManifest.xml new file mode 100644 index 0000000..b101390 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/AppX/AppxManifest.xml @@ -0,0 +1,58 @@ + + + + + + + BlueControl.uwp + marci + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + BlueControl.uwp.exe + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..735f57a Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..023e7f1 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..af49fec Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..ce342a2 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..f6c02ce Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/StoreLogo.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/StoreLogo.png new file mode 100644 index 0000000..7385b56 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/StoreLogo.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..288995b Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.exe b/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.exe new file mode 100644 index 0000000..1c90449 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.xr.xml b/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.xr.xml new file mode 100644 index 0000000..617e5b4 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/AppX/BlueControl.uwp.xr.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/MainPage.xbf b/src/BlueControl.uwp/bin/x86/Debug/AppX/MainPage.xbf new file mode 100644 index 0000000..b13cbbe Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/MainPage.xbf differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd b/src/BlueControl.uwp/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd new file mode 100644 index 0000000..58fafe5 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/Properties/Default.rd.xml b/src/BlueControl.uwp/bin/x86/Debug/AppX/Properties/Default.rd.xml new file mode 100644 index 0000000..af00722 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/AppX/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/System.Runtime.dll b/src/BlueControl.uwp/bin/x86/Debug/AppX/System.Runtime.dll new file mode 100644 index 0000000..6cb4013 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/System.Runtime.dll differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/WinMetadata/Windows.winmd b/src/BlueControl.uwp/bin/x86/Debug/AppX/WinMetadata/Windows.winmd new file mode 100644 index 0000000..0f90a14 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/WinMetadata/Windows.winmd differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/entrypoint/BlueControl.uwp.exe b/src/BlueControl.uwp/bin/x86/Debug/AppX/entrypoint/BlueControl.uwp.exe new file mode 100644 index 0000000..0dfcc8e Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/entrypoint/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/resources.pri b/src/BlueControl.uwp/bin/x86/Debug/AppX/resources.pri new file mode 100644 index 0000000..7b60894 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/AppX/resources.pri differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppX/vs.appxrecipe b/src/BlueControl.uwp/bin/x86/Debug/AppX/vs.appxrecipe new file mode 100644 index 0000000..f748a5c --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/AppX/vs.appxrecipe @@ -0,0 +1,204 @@ + + + + DESKTOP-VH0KBJ8 + marci + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + 95a499f6-e7b2-40c2-aee7-3deeee4338f4 + CN=marci + C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\ + + + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\AppX + 73EA7320ABF0CA9DE9C575B565B9CED83AAD53B755613E20FA0FECD96BC100C8 + 95a499f6-e7b2-40c2-aee7-3deeee4338f4_1.0.0.0_x86__pg6y1xkw2xtrc + 95a499f6-e7b2-40c2-aee7-3deeee4338f4_pg6y1xkw2xtrc!App + 95a499f6-e7b2-40c2-aee7-3deeee4338f4 + CN=marci + 1.0.0.0 + + + + AppxManifest.xml + true + 2021-11-11T18:07:35.341 + + + + + entrypoint\BlueControl.uwp.exe + 2021-11-11T18:07:33.994 + + + System.Runtime.dll + 2021-02-05T01:15:46.000 + + + Microsoft.UI.Xaml.Markup.winmd + 2021-09-11T18:48:58.000 + + + Properties\Default.rd.xml + 2021-11-11T12:40:40.596 + + + Assets\LockScreenLogo.scale-200.png + 2021-11-11T11:40:22.579 + + + Assets\SplashScreen.scale-200.png + true + 2021-11-11T11:40:22.585 + + + Assets\Square150x150Logo.scale-200.png + true + 2021-11-11T11:40:22.586 + + + Assets\Square44x44Logo.scale-200.png + true + 2021-11-11T11:40:22.587 + + + Assets\Square44x44Logo.targetsize-24_altform-unplated.png + true + 2021-11-11T11:40:22.589 + + + Assets\StoreLogo.png + true + 2021-11-11T11:40:22.590 + + + Assets\Wide310x150Logo.scale-200.png + true + 2021-11-11T11:40:22.592 + + + BlueControl.uwp.xr.xml + 2021-11-11T16:54:54.945 + + + App.xbf + 2021-11-11T18:07:33.886 + + + MainPage.xbf + 2021-11-11T18:07:33.887 + + + WinMetadata\Windows.winmd + 2021-09-11T22:28:18.000 + + + resources.pri + 2021-11-11T16:57:47.044 + + + BlueControl.uwp.exe + 2021-11-11T18:07:35.335 + + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + x86 + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + x64 + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + arm + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + x86 + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + x64 + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + arm + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + ARM64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM64\Microsoft.VCLibs.ARM64.Debug.14.00.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/bin/x86/Debug/AppxManifest.xml b/src/BlueControl.uwp/bin/x86/Debug/AppxManifest.xml new file mode 100644 index 0000000..6985272 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/AppxManifest.xml @@ -0,0 +1,57 @@ + + + + + + + BlueControl.uwp + marci + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + CLRHost.dll + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.build.appxrecipe b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.build.appxrecipe new file mode 100644 index 0000000..9c898db --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.build.appxrecipe @@ -0,0 +1,168 @@ + + + + DESKTOP-VH0KBJ8 + marci + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + 95a499f6-e7b2-40c2-aee7-3deeee4338f4 + CN=marci + C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\ + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\AppX + + + + AppxManifest.xml + true + + + + + entrypoint\BlueControl.uwp.exe + + + System.Runtime.dll + + + Microsoft.UI.Xaml.Markup.winmd + + + Properties\Default.rd.xml + + + Assets\LockScreenLogo.scale-200.png + + + Assets\SplashScreen.scale-200.png + true + + + Assets\Square150x150Logo.scale-200.png + true + + + Assets\Square44x44Logo.scale-200.png + true + + + Assets\Square44x44Logo.targetsize-24_altform-unplated.png + true + + + Assets\StoreLogo.png + true + + + Assets\Wide310x150Logo.scale-200.png + true + + + BlueControl.uwp.xr.xml + + + App.xbf + + + MainPage.xbf + + + WinMetadata\Windows.winmd + + + resources.pri + + + BlueControl.uwp.exe + + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + x86 + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + x64 + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + Microsoft.NET.CoreRuntime.2.2 + 2.2.29713.2 + arm + Name = Microsoft.NET.CoreRuntime.2.2, MinVersion = 2.2.29713.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.2.appx + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + x86 + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + x64 + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + Microsoft.NET.CoreFramework.Debug.2.2 + 2.2.29301.2 + arm + Name = Microsoft.NET.CoreFramework.Debug.2.2, MinVersion = 2.2.29301.2, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.2.12\build\..\tools\Appx\Microsoft.NET.CoreFramework.Debug.2.2.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + ARM64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM64\Microsoft.VCLibs.ARM64.Debug.14.00.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.30035.0 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.30035.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx + + + + diff --git a/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.exe b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.exe new file mode 100644 index 0000000..0dfcc8e Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.pdb b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.pdb new file mode 100644 index 0000000..d14092f Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.pdb differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.xr.xml b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.xr.xml new file mode 100644 index 0000000..617e5b4 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/BlueControl.uwp.xr.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/BlueControl.uwp/bin/x86/Debug/Core/AppxManifest.xml b/src/BlueControl.uwp/bin/x86/Debug/Core/AppxManifest.xml new file mode 100644 index 0000000..b101390 --- /dev/null +++ b/src/BlueControl.uwp/bin/x86/Debug/Core/AppxManifest.xml @@ -0,0 +1,58 @@ + + + + + + + BlueControl.uwp + marci + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + BlueControl.uwp.exe + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/bin/x86/Debug/Core/BlueControl.uwp.exe b/src/BlueControl.uwp/bin/x86/Debug/Core/BlueControl.uwp.exe new file mode 100644 index 0000000..1c90449 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/Core/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/MainPage.xbf b/src/BlueControl.uwp/bin/x86/Debug/MainPage.xbf new file mode 100644 index 0000000..b13cbbe Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/MainPage.xbf differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd b/src/BlueControl.uwp/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd new file mode 100644 index 0000000..58fafe5 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/System.Runtime.dll b/src/BlueControl.uwp/bin/x86/Debug/System.Runtime.dll new file mode 100644 index 0000000..6cb4013 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/System.Runtime.dll differ diff --git a/src/BlueControl.uwp/bin/x86/Debug/resources.pri b/src/BlueControl.uwp/bin/x86/Debug/resources.pri new file mode 100644 index 0000000..7b60894 Binary files /dev/null and b/src/BlueControl.uwp/bin/x86/Debug/resources.pri differ diff --git a/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.dgspec.json b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2670833 --- /dev/null +++ b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.dgspec.json @@ -0,0 +1,79 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj": {} + }, + "projects": { + "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj", + "projectName": "BlueControl.uwp", + "projectPath": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj", + "packagesPath": "C:\\Users\\marci\\.nuget\\packages\\", + "outputPath": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\obj\\", + "projectStyle": "PackageReference", + "skipContentFileWrite": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\" + ], + "configFilePaths": [ + "C:\\Users\\marci\\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": [ + "uap10.0.17763" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "uap10.0.17763": { + "projectReferences": {} + } + } + }, + "frameworks": { + "uap10.0.17763": { + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": { + "target": "Package", + "version": "[6.2.12, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-arm64-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.props b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.props new file mode 100644 index 0000000..ff90422 --- /dev/null +++ b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.props @@ -0,0 +1,48 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\marci\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\ + PackageReference + 6.0.0 + + + + + + + + + + + + + + + + + + + + + + + + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.2.12 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.native.sharedlibrary\2.2.8-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.microsoft.net.native.compiler\2.2.10-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.2.12 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.native.sharedlibrary\2.2.8-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x64.microsoft.net.native.compiler\2.2.10-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm64.microsoft.net.native.sharedlibrary\2.2.8-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm64.microsoft.net.native.compiler\2.2.10-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.2.12 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.native.sharedlibrary\2.2.8-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-arm.microsoft.net.native.compiler\2.2.10-rel-29722-00 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.uwpcoreruntimesdk\2.2.12 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.compiler\2.2.10-rel-29722-00 + + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.targets b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.targets new file mode 100644 index 0000000..e2f22a0 --- /dev/null +++ b/src/BlueControl.uwp/obj/BlueControl.uwp.csproj.nuget.g.targets @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/project.assets.json b/src/BlueControl.uwp/obj/project.assets.json new file mode 100644 index 0000000..936fcc4 --- /dev/null +++ b/src/BlueControl.uwp/obj/project.assets.json @@ -0,0 +1,8236 @@ +{ + "version": 3, + "targets": { + "UAP,Version=v10.0.17763": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-arm": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-arm/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-arm-aot": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-arm-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-arm64-aot": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-arm64-aot/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-arm64-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-x64": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-x64/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-x64-aot": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-x64-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-x86": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-x86/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + } + }, + "UAP,Version=v10.0.17763/win10-x86-aot": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.Net.Native.Compiler": "2.2.10-rel-29722-00", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.12", + "NETStandard.Library": "2.0.3", + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.12" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Memory.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Permissions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/netstandard.dll": {} + }, + "native": { + "runtimes/win10-x86-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-29722-00" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "sha512": "RvrUhS53oMQfDRhz8CnV+d2RXnvyc7mqBJtcXpWhIHI36jEZwepOke4wLfbOQQzpyVauFWGu+jkQSzYNxpHJQA==", + "type": "package", + "path": "microsoft.net.native.compiler/2.2.10-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Net.Native.Compiler.props", + "build/Microsoft.Net.Native.Compiler.targets", + "microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "microsoft.net.native.compiler.nuspec", + "tools/LibraryXML/Callisto.rd.xml", + "tools/LibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", + "tools/LibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", + "tools/LibraryXML/HugeFlow.Common.rd.xml", + "tools/LibraryXML/JulMar.Windows.Interactivity.rd.xml", + "tools/LibraryXML/MarkedUp.rd.xml", + "tools/LibraryXML/Microsoft.ApplicationInsights.rd.xml", + "tools/LibraryXML/Microsoft.PlayerFramework.rd.xml", + "tools/LibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", + "tools/LibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", + "tools/LibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", + "tools/LibraryXML/MonoGame.Framework.rd.xml", + "tools/LibraryXML/MyToolkit.rd.xml", + "tools/LibraryXML/Newtonsoft.Json.rd.xml", + "tools/LibraryXML/SharpDX.DXGI.rd.xml", + "tools/LibraryXML/SharpDX.Direct2D1.rd.xml", + "tools/LibraryXML/SharpDX.rd.xml", + "tools/LibraryXML/System.Reactive.Core.rd.xml", + "tools/LibraryXML/System.Reactive.Linq.rd.xml", + "tools/LibraryXML/System.Reactive.PlatformServices.rd.xml", + "tools/LibraryXML/Telerik.Core.rd.xml", + "tools/LibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", + "tools/LibraryXML/UnityEngine.rd.xml", + "tools/LibraryXML/WinRT.Triggers.rd.xml", + "tools/LibraryXML/WinRTXamlToolkit.rd.xml", + "tools/LibraryXML/protobuf-net.rd.xml", + "tools/Microsoft.NetNative.Settings.targets", + "tools/Microsoft.NetNative.targets", + "tools/SharedLibraryXML/BiggerSharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/BiggerSharedLibrary.rd.xml", + "tools/SharedLibraryXML/BiggerSharedLibrary.template.rd.xml", + "tools/SharedLibraryXML/GenerateRdXml.cmd", + "tools/SharedLibraryXML/SharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/SharedLibrary.rd.xml", + "tools/SharedLibraryXML/SharedLibrary.template.rd.xml", + "tools/WindowsSDK/SupportedAPIs-arm64.xml", + "tools/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/csc/clrcompression.dll", + "tools/csc/csc.exe", + "tools/csc/mrt150.dll" + ] + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "sha512": "fIR9mPkUDSAkLhZrywzHtCCmzNdoiAMh5RPKfUTmMHKii+nT6q4fs545vlW39RgVtZ4XoyMPCAJTx5gIYX3p6A==", + "type": "package", + "path": "microsoft.net.uwpcoreruntimesdk/2.2.12", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/Microsoft.Net.UWPCoreRuntimeSdk.props", + "microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/CoreRuntime/Microsoft.Build.Net.CoreRuntimeTask.dll", + "tools/CoreRuntime/Microsoft.Cci.dll", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.settings.targets", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.targets" + ] + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "sha512": "GmkKfoyerqmsHMn7OZj0AKpcBabD+GaafqphvX2Mw406IwiJRy1pKcKqdCfKJfYmkRyJ6+e+RaUylgdJoDa1jQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "4ooTwE4vT0HwyH361HZY0CUCImMqh/O8O3ANl6UwTm51YU8icNnG0zFBdZYdzT7/3f0kASzouUKY0Tnu3XnOaQ==", + "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/Microsoft.NETCore.UniversalWindowsPlatform.props", + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets", + "microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "microsoft.netcore.universalwindowsplatform.nuspec", + "ref/netcore50/_._", + "ref/uap10.0.15138/Microsoft.CSharp.dll", + "ref/uap10.0.15138/Microsoft.CSharp.xml", + "ref/uap10.0.15138/Microsoft.VisualBasic.dll", + "ref/uap10.0.15138/Microsoft.VisualBasic.xml", + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "ref/uap10.0.15138/Microsoft.Win32.Primitives.xml", + "ref/uap10.0.15138/System.AppContext.dll", + "ref/uap10.0.15138/System.AppContext.xml", + "ref/uap10.0.15138/System.Buffers.dll", + "ref/uap10.0.15138/System.Buffers.xml", + "ref/uap10.0.15138/System.Collections.Concurrent.dll", + "ref/uap10.0.15138/System.Collections.Concurrent.xml", + "ref/uap10.0.15138/System.Collections.Immutable.dll", + "ref/uap10.0.15138/System.Collections.Immutable.xml", + "ref/uap10.0.15138/System.Collections.NonGeneric.dll", + "ref/uap10.0.15138/System.Collections.NonGeneric.xml", + "ref/uap10.0.15138/System.Collections.Specialized.dll", + "ref/uap10.0.15138/System.Collections.Specialized.xml", + "ref/uap10.0.15138/System.Collections.dll", + "ref/uap10.0.15138/System.Collections.xml", + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll", + "ref/uap10.0.15138/System.ComponentModel.Annotations.xml", + "ref/uap10.0.15138/System.ComponentModel.Composition.dll", + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.xml", + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll", + "ref/uap10.0.15138/System.ComponentModel.Primitives.xml", + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.xml", + "ref/uap10.0.15138/System.ComponentModel.dll", + "ref/uap10.0.15138/System.ComponentModel.xml", + "ref/uap10.0.15138/System.Configuration.dll", + "ref/uap10.0.15138/System.Console.dll", + "ref/uap10.0.15138/System.Console.xml", + "ref/uap10.0.15138/System.Core.dll", + "ref/uap10.0.15138/System.Data.Common.dll", + "ref/uap10.0.15138/System.Data.Common.xml", + "ref/uap10.0.15138/System.Data.SqlClient.dll", + "ref/uap10.0.15138/System.Data.SqlClient.xml", + "ref/uap10.0.15138/System.Data.dll", + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll", + "ref/uap10.0.15138/System.Diagnostics.Contracts.xml", + "ref/uap10.0.15138/System.Diagnostics.Debug.dll", + "ref/uap10.0.15138/System.Diagnostics.Debug.xml", + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.xml", + "ref/uap10.0.15138/System.Diagnostics.Process.dll", + "ref/uap10.0.15138/System.Diagnostics.Process.xml", + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "ref/uap10.0.15138/System.Diagnostics.StackTrace.xml", + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.xml", + "ref/uap10.0.15138/System.Diagnostics.Tools.dll", + "ref/uap10.0.15138/System.Diagnostics.Tools.xml", + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "ref/uap10.0.15138/System.Diagnostics.TraceSource.xml", + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll", + "ref/uap10.0.15138/System.Diagnostics.Tracing.xml", + "ref/uap10.0.15138/System.Drawing.Primitives.dll", + "ref/uap10.0.15138/System.Drawing.Primitives.xml", + "ref/uap10.0.15138/System.Drawing.dll", + "ref/uap10.0.15138/System.Dynamic.Runtime.dll", + "ref/uap10.0.15138/System.Dynamic.Runtime.xml", + "ref/uap10.0.15138/System.Globalization.Calendars.dll", + "ref/uap10.0.15138/System.Globalization.Calendars.xml", + "ref/uap10.0.15138/System.Globalization.Extensions.dll", + "ref/uap10.0.15138/System.Globalization.Extensions.xml", + "ref/uap10.0.15138/System.Globalization.dll", + "ref/uap10.0.15138/System.Globalization.xml", + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "ref/uap10.0.15138/System.IO.Compression.ZipFile.xml", + "ref/uap10.0.15138/System.IO.Compression.dll", + "ref/uap10.0.15138/System.IO.Compression.xml", + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.xml", + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.xml", + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.xml", + "ref/uap10.0.15138/System.IO.FileSystem.dll", + "ref/uap10.0.15138/System.IO.FileSystem.xml", + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll", + "ref/uap10.0.15138/System.IO.IsolatedStorage.xml", + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.xml", + "ref/uap10.0.15138/System.IO.Pipes.dll", + "ref/uap10.0.15138/System.IO.Pipes.xml", + "ref/uap10.0.15138/System.IO.Ports.dll", + "ref/uap10.0.15138/System.IO.Ports.xml", + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.xml", + "ref/uap10.0.15138/System.IO.dll", + "ref/uap10.0.15138/System.IO.xml", + "ref/uap10.0.15138/System.Linq.Expressions.dll", + "ref/uap10.0.15138/System.Linq.Expressions.xml", + "ref/uap10.0.15138/System.Linq.Parallel.dll", + "ref/uap10.0.15138/System.Linq.Parallel.xml", + "ref/uap10.0.15138/System.Linq.Queryable.dll", + "ref/uap10.0.15138/System.Linq.Queryable.xml", + "ref/uap10.0.15138/System.Linq.dll", + "ref/uap10.0.15138/System.Linq.xml", + "ref/uap10.0.15138/System.Net.Http.Rtc.dll", + "ref/uap10.0.15138/System.Net.Http.Rtc.xml", + "ref/uap10.0.15138/System.Net.Http.dll", + "ref/uap10.0.15138/System.Net.Http.xml", + "ref/uap10.0.15138/System.Net.HttpListener.dll", + "ref/uap10.0.15138/System.Net.HttpListener.xml", + "ref/uap10.0.15138/System.Net.Mail.dll", + "ref/uap10.0.15138/System.Net.Mail.xml", + "ref/uap10.0.15138/System.Net.NameResolution.dll", + "ref/uap10.0.15138/System.Net.NameResolution.xml", + "ref/uap10.0.15138/System.Net.NetworkInformation.dll", + "ref/uap10.0.15138/System.Net.NetworkInformation.xml", + "ref/uap10.0.15138/System.Net.Ping.dll", + "ref/uap10.0.15138/System.Net.Ping.xml", + "ref/uap10.0.15138/System.Net.Primitives.dll", + "ref/uap10.0.15138/System.Net.Primitives.xml", + "ref/uap10.0.15138/System.Net.Requests.dll", + "ref/uap10.0.15138/System.Net.Requests.xml", + "ref/uap10.0.15138/System.Net.Security.dll", + "ref/uap10.0.15138/System.Net.Security.xml", + "ref/uap10.0.15138/System.Net.ServicePoint.dll", + "ref/uap10.0.15138/System.Net.ServicePoint.xml", + "ref/uap10.0.15138/System.Net.Sockets.dll", + "ref/uap10.0.15138/System.Net.Sockets.xml", + "ref/uap10.0.15138/System.Net.WebClient.dll", + "ref/uap10.0.15138/System.Net.WebClient.xml", + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "ref/uap10.0.15138/System.Net.WebHeaderCollection.xml", + "ref/uap10.0.15138/System.Net.WebProxy.dll", + "ref/uap10.0.15138/System.Net.WebProxy.xml", + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll", + "ref/uap10.0.15138/System.Net.WebSockets.Client.xml", + "ref/uap10.0.15138/System.Net.WebSockets.dll", + "ref/uap10.0.15138/System.Net.WebSockets.xml", + "ref/uap10.0.15138/System.Net.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.xml", + "ref/uap10.0.15138/System.Numerics.dll", + "ref/uap10.0.15138/System.ObjectModel.dll", + "ref/uap10.0.15138/System.ObjectModel.xml", + "ref/uap10.0.15138/System.Reflection.Context.dll", + "ref/uap10.0.15138/System.Reflection.Context.xml", + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.15138/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.15138/System.Reflection.Extensions.dll", + "ref/uap10.0.15138/System.Reflection.Extensions.xml", + "ref/uap10.0.15138/System.Reflection.Metadata.dll", + "ref/uap10.0.15138/System.Reflection.Metadata.xml", + "ref/uap10.0.15138/System.Reflection.Primitives.dll", + "ref/uap10.0.15138/System.Reflection.Primitives.xml", + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "ref/uap10.0.15138/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.15138/System.Reflection.dll", + "ref/uap10.0.15138/System.Reflection.xml", + "ref/uap10.0.15138/System.Resources.Reader.dll", + "ref/uap10.0.15138/System.Resources.Reader.xml", + "ref/uap10.0.15138/System.Resources.ResourceManager.dll", + "ref/uap10.0.15138/System.Resources.ResourceManager.xml", + "ref/uap10.0.15138/System.Resources.Writer.dll", + "ref/uap10.0.15138/System.Resources.Writer.xml", + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.xml", + "ref/uap10.0.15138/System.Runtime.Extensions.dll", + "ref/uap10.0.15138/System.Runtime.Extensions.xml", + "ref/uap10.0.15138/System.Runtime.Handles.dll", + "ref/uap10.0.15138/System.Runtime.Handles.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.xml", + "ref/uap10.0.15138/System.Runtime.Numerics.dll", + "ref/uap10.0.15138/System.Runtime.Numerics.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Json.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.dll", + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Runtime.dll", + "ref/uap10.0.15138/System.Runtime.xml", + "ref/uap10.0.15138/System.Security.AccessControl.dll", + "ref/uap10.0.15138/System.Security.AccessControl.xml", + "ref/uap10.0.15138/System.Security.Claims.dll", + "ref/uap10.0.15138/System.Security.Claims.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Csp.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.xml", + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.xml", + "ref/uap10.0.15138/System.Security.Principal.Windows.dll", + "ref/uap10.0.15138/System.Security.Principal.Windows.xml", + "ref/uap10.0.15138/System.Security.Principal.dll", + "ref/uap10.0.15138/System.Security.Principal.xml", + "ref/uap10.0.15138/System.Security.SecureString.dll", + "ref/uap10.0.15138/System.Security.SecureString.xml", + "ref/uap10.0.15138/System.Security.dll", + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll", + "ref/uap10.0.15138/System.ServiceModel.Http.dll", + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll", + "ref/uap10.0.15138/System.ServiceModel.Security.dll", + "ref/uap10.0.15138/System.ServiceModel.Web.dll", + "ref/uap10.0.15138/System.ServiceModel.dll", + "ref/uap10.0.15138/System.ServiceProcess.dll", + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "ref/uap10.0.15138/System.Text.Encoding.CodePages.xml", + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "ref/uap10.0.15138/System.Text.Encoding.Extensions.xml", + "ref/uap10.0.15138/System.Text.Encoding.dll", + "ref/uap10.0.15138/System.Text.Encoding.xml", + "ref/uap10.0.15138/System.Text.RegularExpressions.dll", + "ref/uap10.0.15138/System.Text.RegularExpressions.xml", + "ref/uap10.0.15138/System.Threading.Overlapped.dll", + "ref/uap10.0.15138/System.Threading.Overlapped.xml", + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.xml", + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.xml", + "ref/uap10.0.15138/System.Threading.Tasks.dll", + "ref/uap10.0.15138/System.Threading.Tasks.xml", + "ref/uap10.0.15138/System.Threading.Thread.dll", + "ref/uap10.0.15138/System.Threading.Thread.xml", + "ref/uap10.0.15138/System.Threading.ThreadPool.dll", + "ref/uap10.0.15138/System.Threading.ThreadPool.xml", + "ref/uap10.0.15138/System.Threading.Timer.dll", + "ref/uap10.0.15138/System.Threading.Timer.xml", + "ref/uap10.0.15138/System.Threading.dll", + "ref/uap10.0.15138/System.Threading.xml", + "ref/uap10.0.15138/System.Transactions.Local.dll", + "ref/uap10.0.15138/System.Transactions.Local.xml", + "ref/uap10.0.15138/System.Transactions.dll", + "ref/uap10.0.15138/System.ValueTuple.dll", + "ref/uap10.0.15138/System.ValueTuple.xml", + "ref/uap10.0.15138/System.Web.HttpUtility.dll", + "ref/uap10.0.15138/System.Web.HttpUtility.xml", + "ref/uap10.0.15138/System.Web.dll", + "ref/uap10.0.15138/System.Windows.dll", + "ref/uap10.0.15138/System.Xml.Linq.dll", + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll", + "ref/uap10.0.15138/System.Xml.ReaderWriter.xml", + "ref/uap10.0.15138/System.Xml.Serialization.dll", + "ref/uap10.0.15138/System.Xml.XDocument.dll", + "ref/uap10.0.15138/System.Xml.XDocument.xml", + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "ref/uap10.0.15138/System.Xml.XPath.XDocument.xml", + "ref/uap10.0.15138/System.Xml.XPath.dll", + "ref/uap10.0.15138/System.Xml.XPath.xml", + "ref/uap10.0.15138/System.Xml.XmlDocument.dll", + "ref/uap10.0.15138/System.Xml.XmlDocument.xml", + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll", + "ref/uap10.0.15138/System.Xml.XmlSerializer.xml", + "ref/uap10.0.15138/System.Xml.dll", + "ref/uap10.0.15138/System.dll", + "ref/uap10.0.15138/WindowsBase.dll", + "ref/uap10.0.15138/mscorlib.dll", + "ref/uap10.0.15138/netstandard.dll", + "runtime.json" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "Xit8LW8SmJbyrRUTYsl3Mj49CgzD56XoI1g/8XrCeXEC5oWtvfHocFsJxbxmz37xp1Ii+6nMsU0y1nUI8LxwdA==", + "type": "package", + "path": "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-arm-aot/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "sha512": "U5fdIaJB17ioGmdEJXJPJ7enneGMD3AY6jUKxcP1/t33dBe0DKGzRkxbWJ+poNZJB5rYBXcZ53BADpzEbwopVg==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.native.compiler/2.2.10-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-arm.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "runtime.win10-arm.microsoft.net.native.compiler.nuspec", + "tools/Runtime/arm/CommandProvider.dll", + "tools/Runtime/arm/Microsoft.NET.Native.Runtime.2.2.appx", + "tools/Runtime/arm/SymbolProvider.dll", + "tools/Runtime/arm/mrt100_app.pdb", + "tools/Runtime/arm/mrt100dac_winarm.dll", + "tools/Runtime/arm/mrt100dac_winarm_x86.dll", + "tools/Runtime/arm/mrt100dac_winrtarm.dll", + "tools/Runtime/arm/mrt100dbgshim_winarm.dll", + "tools/Runtime/arm/mrt100dbgshim_winrtarm.dll", + "tools/Runtime/arm/mrt100dbi_winarm.dll", + "tools/Runtime/arm/mrt100dbi_winrtarm.dll", + "tools/Runtime/arm/mrt100dbi_winx86.dll", + "tools/Runtime/arm/mrt100etw.dll", + "tools/Runtime/arm/mrt100sos.dll", + "tools/Runtime/arm/mrt100sos_x86.dll", + "tools/Runtime/arm/msdia120.dll", + "tools/arm/etwevents.man", + "tools/arm/ilc/Lib/Native/Interop.Native.lib", + "tools/arm/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/arm/ilc/Lib/Native/pgort.lib", + "tools/arm/ilc/Lib/Native/vmath.lib", + "tools/arm/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Debug.dll", + "tools/arm/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/arm/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/arm/ilc/Lib/Private/System.Private.MCG.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Threading.dll", + "tools/arm/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/arm/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/arm/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/arm/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/arm/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/arm/ilc/Lib/Runtime/mrt100_app.dll", + "tools/arm/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/arm/ilc/Lib/Runtime/mrt150.dll", + "tools/arm/ilc/Lib/Runtime/mrt150.pdb", + "tools/arm/ilc/clrcompression.dll", + "tools/arm/ilc/cs/CciExtensions.resources.dll", + "tools/arm/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/cs/Ilc.resources.dll", + "tools/arm/ilc/cs/McgEngine.resources.dll", + "tools/arm/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/cs/ReducerEngine.resources.dll", + "tools/arm/ilc/cs/TypeNameUtilities.resources.dll", + "tools/arm/ilc/de/CciExtensions.resources.dll", + "tools/arm/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/de/Ilc.resources.dll", + "tools/arm/ilc/de/McgEngine.resources.dll", + "tools/arm/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/de/ReducerEngine.resources.dll", + "tools/arm/ilc/de/TypeNameUtilities.resources.dll", + "tools/arm/ilc/es/CciExtensions.resources.dll", + "tools/arm/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/es/Ilc.resources.dll", + "tools/arm/ilc/es/McgEngine.resources.dll", + "tools/arm/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/es/ReducerEngine.resources.dll", + "tools/arm/ilc/es/TypeNameUtilities.resources.dll", + "tools/arm/ilc/fr/CciExtensions.resources.dll", + "tools/arm/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/fr/Ilc.resources.dll", + "tools/arm/ilc/fr/McgEngine.resources.dll", + "tools/arm/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/fr/ReducerEngine.resources.dll", + "tools/arm/ilc/fr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ilc.exe", + "tools/arm/ilc/it/CciExtensions.resources.dll", + "tools/arm/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/it/Ilc.resources.dll", + "tools/arm/ilc/it/McgEngine.resources.dll", + "tools/arm/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/it/ReducerEngine.resources.dll", + "tools/arm/ilc/it/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ja/CciExtensions.resources.dll", + "tools/arm/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ja/Ilc.resources.dll", + "tools/arm/ilc/ja/McgEngine.resources.dll", + "tools/arm/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ja/ReducerEngine.resources.dll", + "tools/arm/ilc/ja/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ko/CciExtensions.resources.dll", + "tools/arm/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ko/Ilc.resources.dll", + "tools/arm/ilc/ko/McgEngine.resources.dll", + "tools/arm/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ko/ReducerEngine.resources.dll", + "tools/arm/ilc/ko/TypeNameUtilities.resources.dll", + "tools/arm/ilc/mrt150.dll", + "tools/arm/ilc/pl/CciExtensions.resources.dll", + "tools/arm/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/pl/Ilc.resources.dll", + "tools/arm/ilc/pl/McgEngine.resources.dll", + "tools/arm/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pl/ReducerEngine.resources.dll", + "tools/arm/ilc/pl/TypeNameUtilities.resources.dll", + "tools/arm/ilc/pt-BR/CciExtensions.resources.dll", + "tools/arm/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/pt-BR/Ilc.resources.dll", + "tools/arm/ilc/pt-BR/McgEngine.resources.dll", + "tools/arm/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/arm/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/arm/ilc/rhconfig.ini", + "tools/arm/ilc/ru/CciExtensions.resources.dll", + "tools/arm/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ru/Ilc.resources.dll", + "tools/arm/ilc/ru/McgEngine.resources.dll", + "tools/arm/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ru/ReducerEngine.resources.dll", + "tools/arm/ilc/ru/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/1028/nutcui.dll", + "tools/arm/ilc/tools/1028/rhbindui.dll", + "tools/arm/ilc/tools/1029/nutcui.dll", + "tools/arm/ilc/tools/1029/rhbindui.dll", + "tools/arm/ilc/tools/1031/nutcui.dll", + "tools/arm/ilc/tools/1031/rhbindui.dll", + "tools/arm/ilc/tools/1033/nutcui.dll", + "tools/arm/ilc/tools/1033/rhbindui.dll", + "tools/arm/ilc/tools/1036/nutcui.dll", + "tools/arm/ilc/tools/1036/rhbindui.dll", + "tools/arm/ilc/tools/1040/nutcui.dll", + "tools/arm/ilc/tools/1040/rhbindui.dll", + "tools/arm/ilc/tools/1041/nutcui.dll", + "tools/arm/ilc/tools/1041/rhbindui.dll", + "tools/arm/ilc/tools/1042/nutcui.dll", + "tools/arm/ilc/tools/1042/rhbindui.dll", + "tools/arm/ilc/tools/1045/nutcui.dll", + "tools/arm/ilc/tools/1045/rhbindui.dll", + "tools/arm/ilc/tools/1046/nutcui.dll", + "tools/arm/ilc/tools/1046/rhbindui.dll", + "tools/arm/ilc/tools/1049/nutcui.dll", + "tools/arm/ilc/tools/1049/rhbindui.dll", + "tools/arm/ilc/tools/1055/nutcui.dll", + "tools/arm/ilc/tools/1055/rhbindui.dll", + "tools/arm/ilc/tools/2052/nutcui.dll", + "tools/arm/ilc/tools/2052/rhbindui.dll", + "tools/arm/ilc/tools/3082/nutcui.dll", + "tools/arm/ilc/tools/3082/rhbindui.dll", + "tools/arm/ilc/tools/CciExtensions.dll", + "tools/arm/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/Fr/sg.resources.dll", + "tools/arm/ilc/tools/GatekeeperConfig.xml", + "tools/arm/ilc/tools/ILCTelemetry.exe", + "tools/arm/ilc/tools/ILCTelemetry.exe.config", + "tools/arm/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/arm/ilc/tools/MakeNativeWinMD.exe", + "tools/arm/ilc/tools/MakeNativeWinMD.exe.config", + "tools/arm/ilc/tools/McgCodeDom.dll", + "tools/arm/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/arm/ilc/tools/Microsoft.Cci.dll", + "tools/arm/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/arm/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/arm/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/arm/ilc/tools/Newtonsoft.Json.dll", + "tools/arm/ilc/tools/StackTraceExceptions.txt", + "tools/arm/ilc/tools/StackTraceMetadataProvider.dll", + "tools/arm/ilc/tools/System.Collections.Immutable.dll", + "tools/arm/ilc/tools/System.Reflection.Metadata.dll", + "tools/arm/ilc/tools/System.ValueTuple.dll", + "tools/arm/ilc/tools/c2n.dll", + "tools/arm/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/cs/sg.resources.dll", + "tools/arm/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/de/sg.resources.dll", + "tools/arm/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/es/sg.resources.dll", + "tools/arm/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/it/sg.resources.dll", + "tools/arm/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ja/sg.resources.dll", + "tools/arm/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ko/sg.resources.dll", + "tools/arm/ilc/tools/msdia.sxs.manifest", + "tools/arm/ilc/tools/msdia120.dll", + "tools/arm/ilc/tools/msobj140.dll", + "tools/arm/ilc/tools/mspdbcore.dll", + "tools/arm/ilc/tools/msvcdis140.dll", + "tools/arm/ilc/tools/msvcp140.dll", + "tools/arm/ilc/tools/nutc_driver.exe", + "tools/arm/ilc/tools/nutc_driver.exe.config", + "tools/arm/ilc/tools/nutc_interface.dll", + "tools/arm/ilc/tools/pgocvt.exe", + "tools/arm/ilc/tools/pgodb140.dll", + "tools/arm/ilc/tools/pgomgr.exe", + "tools/arm/ilc/tools/pgort140.dll", + "tools/arm/ilc/tools/pgosweep.exe", + "tools/arm/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pl/sg.resources.dll", + "tools/arm/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pt-BR/sg.resources.dll", + "tools/arm/ilc/tools/rhbind.exe", + "tools/arm/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ru/sg.resources.dll", + "tools/arm/ilc/tools/sg.exe", + "tools/arm/ilc/tools/sg.exe.config", + "tools/arm/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/tr/sg.resources.dll", + "tools/arm/ilc/tools/ucrtbase.dll", + "tools/arm/ilc/tools/vcruntime140.dll", + "tools/arm/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hans/sg.resources.dll", + "tools/arm/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hant/sg.resources.dll", + "tools/arm/ilc/tools64/1033/nutcui.dll", + "tools/arm/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/arm/ilc/tools64/StackTraceExceptions.txt", + "tools/arm/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/arm/ilc/tools64/c2n.dll", + "tools/arm/ilc/tools64/msdia.sxs.manifest", + "tools/arm/ilc/tools64/msdia120.dll", + "tools/arm/ilc/tools64/msobj140.dll", + "tools/arm/ilc/tools64/mspdbcore.dll", + "tools/arm/ilc/tools64/msvcdis140.dll", + "tools/arm/ilc/tools64/msvcp140.dll", + "tools/arm/ilc/tools64/nutc_driver.exe", + "tools/arm/ilc/tools64/nutc_driver.exe.config", + "tools/arm/ilc/tools64/nutc_interface.dll", + "tools/arm/ilc/tools64/pgocvt.exe", + "tools/arm/ilc/tools64/pgodb140.dll", + "tools/arm/ilc/tools64/pgomgr.exe", + "tools/arm/ilc/tools64/pgort140.dll", + "tools/arm/ilc/tools64/pgosweep.exe", + "tools/arm/ilc/tools64/ucrtbase.dll", + "tools/arm/ilc/tools64/vcruntime140.dll", + "tools/arm/ilc/tr/CciExtensions.resources.dll", + "tools/arm/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tr/Ilc.resources.dll", + "tools/arm/ilc/tr/McgEngine.resources.dll", + "tools/arm/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/tr/ReducerEngine.resources.dll", + "tools/arm/ilc/tr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/zh-Hans/Ilc.resources.dll", + "tools/arm/ilc/zh-Hans/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/zh-Hant/Ilc.resources.dll", + "tools/arm/ilc/zh-Hant/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/arm/mrt100etw.dll" + ] + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "sha512": "WDprEut4oOal4/tufMRvoJ+m0RQgEAys6lrutdbRCduENC2DrE9Dx/tjYLtDOL6ATO6+QDubTYywRlTD5zaHeQ==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-arm.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "runtime.win10-arm.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.2.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/chk/SharedAssemblyList.txt", + "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/chk/Toc/System.Collections.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.Memory.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.2.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/ret/SharedAssemblyList.txt", + "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/ret/Toc/System.Collections.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.Memory.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "sha512": "p7SkJXOE3YLc5XY6DeHEskofpFo3D2JGWUERbTkOGulJZFqwOjuP6BA1kK21OF5rBbTJCeBE6akAQ19X02ULuA==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/2.2.12", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreFramework.Debug.2.2.appx", + "tools/Appx/Microsoft.NET.CoreRuntime.2.2.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "imUC5+qrkRP0r7k8HUveUABxMjooh+mybyUEkIZwviHpj4zjfwNuQZvxqaXlCZxrb4gtU39XjvIq7bN9OMmz4A==", + "type": "package", + "path": "runtime.win10-arm.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-arm.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.dll", + "runtimes/win10-arm/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-arm/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-arm/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-arm/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "K7aqAJWVl//l9py7p96/8AZP6Nn+SsZxXMd9SM1eoXSSReUoVKNjKAZOJaJRfLMOTbCK3utkd4AJBJspWSdVNw==", + "type": "package", + "path": "runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/System.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-arm64-aot/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-arm64-aot/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-arm64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "sha512": "3aGd2n8yz9EodSbl7quvo6HjNRAZMerYoHrBuX1xPsNzzFfnm/gHd0f8THNCXp0R7ix37t6WTP2uty+jqMBUHg==", + "type": "package", + "path": "runtime.win10-arm64.microsoft.net.native.compiler/2.2.10-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-arm64.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-arm64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "runtime.win10-arm64.microsoft.net.native.compiler.nuspec", + "tools/Runtime/arm64/CommandProvider.dll", + "tools/Runtime/arm64/Microsoft.NET.Native.Runtime.2.2.appx", + "tools/Runtime/arm64/SymbolProvider.dll", + "tools/Runtime/arm64/mrt100_app.pdb", + "tools/Runtime/arm64/mrt100dac_winarm64.dll", + "tools/Runtime/arm64/mrt100dbgshim_winarm64.dll", + "tools/Runtime/arm64/mrt100dbi_winarm64.dll", + "tools/Runtime/arm64/mrt100etw.dll", + "tools/arm64/etwevents.man", + "tools/arm64/ilc/Lib/Native/Interop.Native.lib", + "tools/arm64/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/arm64/ilc/Lib/Native/vmath.lib", + "tools/arm64/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/arm64/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.Debug.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/arm64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/arm64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/arm64/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Interop.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.MCG.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/arm64/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/arm64/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.Threading.dll", + "tools/arm64/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/arm64/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/arm64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/arm64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/arm64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/arm64/ilc/Lib/Runtime/mrt100_app.dll", + "tools/arm64/ilc/Lib/Runtime/mrt100_app.lib", + "tools/arm64/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/arm64/ilc/Lib/Runtime/mrt150.dll", + "tools/arm64/ilc/Lib/Runtime/mrt150.lib", + "tools/arm64/ilc/Lib/Runtime/mrt150.pdb", + "tools/arm64/ilc/clrcompression.dll", + "tools/arm64/ilc/ilc.exe", + "tools/arm64/ilc/mrt150.dll", + "tools/arm64/ilc/rhconfig.ini", + "tools/arm64/ilc/tools/1033/nutcui.dll", + "tools/arm64/ilc/tools/CciExtensions.dll", + "tools/arm64/ilc/tools/GatekeeperConfig.xml", + "tools/arm64/ilc/tools/ILCTelemetry.exe", + "tools/arm64/ilc/tools/ILCTelemetry.exe.config", + "tools/arm64/ilc/tools/ILCompiler.Compiler.dll", + "tools/arm64/ilc/tools/ILCompiler.DependencyAnalysisFramework.dll", + "tools/arm64/ilc/tools/ILCompiler.Host.dll", + "tools/arm64/ilc/tools/ILCompiler.MetadataTransform.dll", + "tools/arm64/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/arm64/ilc/tools/ILCompiler.TypeSystem.dll", + "tools/arm64/ilc/tools/MakeNativeWinMD.exe", + "tools/arm64/ilc/tools/MakeNativeWinMD.exe.config", + "tools/arm64/ilc/tools/McgCodeDom.dll", + "tools/arm64/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/arm64/ilc/tools/Microsoft.Cci.dll", + "tools/arm64/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/arm64/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/arm64/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/arm64/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/arm64/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/arm64/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/arm64/ilc/tools/Newtonsoft.Json.dll", + "tools/arm64/ilc/tools/StackTraceExceptions.txt", + "tools/arm64/ilc/tools/StackTraceMetadataProvider.dll", + "tools/arm64/ilc/tools/System.Collections.Immutable.dll", + "tools/arm64/ilc/tools/System.Reflection.Metadata.dll", + "tools/arm64/ilc/tools/System.ValueTuple.dll", + "tools/arm64/ilc/tools/bootstrap_dll.lib", + "tools/arm64/ilc/tools/c2n.dll", + "tools/arm64/ilc/tools/link/kernel32.lib", + "tools/arm64/ilc/tools/link/link.exe", + "tools/arm64/ilc/tools/link/link.exe.config", + "tools/arm64/ilc/tools/link/link.pdb", + "tools/arm64/ilc/tools/link/msobj140.dll", + "tools/arm64/ilc/tools/link/mspdb140.dll", + "tools/arm64/ilc/tools/link/mspdbcore.dll", + "tools/arm64/ilc/tools/link/mspdbsrv.exe", + "tools/arm64/ilc/tools/link/mspdbst.dll", + "tools/arm64/ilc/tools/link/msvcdis140.dll", + "tools/arm64/ilc/tools/link/msvcp140.dll", + "tools/arm64/ilc/tools/link/msvcp140d.dll", + "tools/arm64/ilc/tools/link/uuid.lib", + "tools/arm64/ilc/tools/link/vcruntime140.dll", + "tools/arm64/ilc/tools/link/vcruntime140d.dll", + "tools/arm64/ilc/tools/msdia.sxs.manifest", + "tools/arm64/ilc/tools/msdia120.dll", + "tools/arm64/ilc/tools/msobj140.dll", + "tools/arm64/ilc/tools/mspdbcore.dll", + "tools/arm64/ilc/tools/msvcdis140.dll", + "tools/arm64/ilc/tools/msvcp140.dll", + "tools/arm64/ilc/tools/nutc_driver.exe", + "tools/arm64/ilc/tools/nutc_driver.exe.config", + "tools/arm64/ilc/tools/nutc_interface.dll", + "tools/arm64/ilc/tools/pgocvt.exe", + "tools/arm64/ilc/tools/pgodb140.dll", + "tools/arm64/ilc/tools/pgomgr.exe", + "tools/arm64/ilc/tools/pgort140.dll", + "tools/arm64/ilc/tools/pgosweep.exe", + "tools/arm64/ilc/tools/sg.exe", + "tools/arm64/ilc/tools/sg.exe.config", + "tools/arm64/ilc/tools/shimAppDll.lib", + "tools/arm64/ilc/tools/shimDll.lib", + "tools/arm64/ilc/tools/shimExe.lib", + "tools/arm64/ilc/tools/ucrtbase.dll", + "tools/arm64/ilc/tools/vcruntime140.dll", + "tools/arm64/ilc/tools64/1033/nutcui.dll", + "tools/arm64/ilc/tools64/ILCompiler.Compiler.dll", + "tools/arm64/ilc/tools64/ILCompiler.DependencyAnalysisFramework.dll", + "tools/arm64/ilc/tools64/ILCompiler.Host.dll", + "tools/arm64/ilc/tools64/ILCompiler.MetadataTransform.dll", + "tools/arm64/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/arm64/ilc/tools64/ILCompiler.TypeSystem.dll", + "tools/arm64/ilc/tools64/StackTraceExceptions.txt", + "tools/arm64/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/arm64/ilc/tools64/System.Collections.Immutable.dll", + "tools/arm64/ilc/tools64/System.Reflection.Metadata.dll", + "tools/arm64/ilc/tools64/c2n.dll", + "tools/arm64/ilc/tools64/msdia.sxs.manifest", + "tools/arm64/ilc/tools64/msdia120.dll", + "tools/arm64/ilc/tools64/msobj140.dll", + "tools/arm64/ilc/tools64/mspdbcore.dll", + "tools/arm64/ilc/tools64/msvcdis140.dll", + "tools/arm64/ilc/tools64/msvcp140.dll", + "tools/arm64/ilc/tools64/nutc_driver.exe", + "tools/arm64/ilc/tools64/nutc_driver.exe.config", + "tools/arm64/ilc/tools64/nutc_interface.dll", + "tools/arm64/ilc/tools64/pgocvt.exe", + "tools/arm64/ilc/tools64/pgodb140.dll", + "tools/arm64/ilc/tools64/pgomgr.exe", + "tools/arm64/ilc/tools64/pgort140.dll", + "tools/arm64/ilc/tools64/pgosweep.exe", + "tools/arm64/ilc/tools64/ucrtbase.dll", + "tools/arm64/ilc/tools64/vcruntime140.dll", + "tools/arm64/mrt100etw.dll" + ] + }, + "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "sha512": "l75u2oTidczIVvHyDvqJHFmhhRu2hIUlMEen3guMKL/cQYSgpqdsHfAvM6z/ohKM9aBd8NMBs9Xtb4U0qGrj+A==", + "type": "package", + "path": "runtime.win10-arm64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-arm64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "runtime.win10-arm64.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.2.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.exp", + "tools/SharedLibrary/chk/Native/SharedLibrary.lib", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/chk/SharedAssemblyList.txt", + "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/chk/Toc/System.Collections.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.Memory.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.2.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.exp", + "tools/SharedLibrary/ret/Native/SharedLibrary.lib", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/ret/SharedAssemblyList.txt", + "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/ret/Toc/System.Collections.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.Memory.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "9oD8rtohqy7HMjb4aSB9z7kQXsO7DtvWZsBiJt6RmvIbxP1j9i8gpCrVoBE7N9UCEKAouTN+wkiNqK2VIs6NbQ==", + "type": "package", + "path": "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-x64-aot/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "sha512": "euNK2KsXc1UcvvKAHOlv1A0A7YXcs2lfDq6258iTBDEO7Eusc1NlU+0uXjG1zVJfIsOxV42+V3T9QDfyLCF7fw==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.native.compiler/2.2.10-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-x64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "runtime.win10-x64.microsoft.net.native.compiler.nuspec", + "tools/Runtime/x64/CommandProvider.dll", + "tools/Runtime/x64/Microsoft.NET.Native.Runtime.2.2.appx", + "tools/Runtime/x64/SymbolProvider.dll", + "tools/Runtime/x64/mrt100_app.pdb", + "tools/Runtime/x64/mrt100dac_winamd64.dll", + "tools/Runtime/x64/mrt100dbgshim_winamd64.dll", + "tools/Runtime/x64/mrt100dbi_winamd64.dll", + "tools/Runtime/x64/mrt100etw.dll", + "tools/Runtime/x64/mrt100sos.dll", + "tools/Runtime/x64/msdia120.dll", + "tools/x64/etwevents.man", + "tools/x64/ilc/Lib/Native/Interop.Native.lib", + "tools/x64/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/x64/ilc/Lib/Native/pgort.lib", + "tools/x64/ilc/Lib/Native/vmath.lib", + "tools/x64/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Debug.dll", + "tools/x64/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/x64/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/x64/ilc/Lib/Private/System.Private.MCG.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Threading.dll", + "tools/x64/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/x64/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/x64/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/x64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/x64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/x64/ilc/Lib/Runtime/mrt100_app.dll", + "tools/x64/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/x64/ilc/Lib/Runtime/mrt150.dll", + "tools/x64/ilc/Lib/Runtime/mrt150.pdb", + "tools/x64/ilc/clrcompression.dll", + "tools/x64/ilc/cs/CciExtensions.resources.dll", + "tools/x64/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/cs/Ilc.resources.dll", + "tools/x64/ilc/cs/McgEngine.resources.dll", + "tools/x64/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/cs/ReducerEngine.resources.dll", + "tools/x64/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x64/ilc/de/CciExtensions.resources.dll", + "tools/x64/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/de/Ilc.resources.dll", + "tools/x64/ilc/de/McgEngine.resources.dll", + "tools/x64/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/de/ReducerEngine.resources.dll", + "tools/x64/ilc/de/TypeNameUtilities.resources.dll", + "tools/x64/ilc/es/CciExtensions.resources.dll", + "tools/x64/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/es/Ilc.resources.dll", + "tools/x64/ilc/es/McgEngine.resources.dll", + "tools/x64/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/es/ReducerEngine.resources.dll", + "tools/x64/ilc/es/TypeNameUtilities.resources.dll", + "tools/x64/ilc/fr/CciExtensions.resources.dll", + "tools/x64/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/fr/Ilc.resources.dll", + "tools/x64/ilc/fr/McgEngine.resources.dll", + "tools/x64/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/fr/ReducerEngine.resources.dll", + "tools/x64/ilc/fr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ilc.exe", + "tools/x64/ilc/it/CciExtensions.resources.dll", + "tools/x64/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/it/Ilc.resources.dll", + "tools/x64/ilc/it/McgEngine.resources.dll", + "tools/x64/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/it/ReducerEngine.resources.dll", + "tools/x64/ilc/it/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ja/CciExtensions.resources.dll", + "tools/x64/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ja/Ilc.resources.dll", + "tools/x64/ilc/ja/McgEngine.resources.dll", + "tools/x64/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ja/ReducerEngine.resources.dll", + "tools/x64/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ko/CciExtensions.resources.dll", + "tools/x64/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ko/Ilc.resources.dll", + "tools/x64/ilc/ko/McgEngine.resources.dll", + "tools/x64/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ko/ReducerEngine.resources.dll", + "tools/x64/ilc/ko/TypeNameUtilities.resources.dll", + "tools/x64/ilc/mrt150.dll", + "tools/x64/ilc/pl/CciExtensions.resources.dll", + "tools/x64/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/pl/Ilc.resources.dll", + "tools/x64/ilc/pl/McgEngine.resources.dll", + "tools/x64/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pl/ReducerEngine.resources.dll", + "tools/x64/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x64/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x64/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/pt-BR/Ilc.resources.dll", + "tools/x64/ilc/pt-BR/McgEngine.resources.dll", + "tools/x64/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x64/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x64/ilc/rhconfig.ini", + "tools/x64/ilc/ru/CciExtensions.resources.dll", + "tools/x64/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ru/Ilc.resources.dll", + "tools/x64/ilc/ru/McgEngine.resources.dll", + "tools/x64/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ru/ReducerEngine.resources.dll", + "tools/x64/ilc/ru/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/1028/nutcui.dll", + "tools/x64/ilc/tools/1028/rhbindui.dll", + "tools/x64/ilc/tools/1029/nutcui.dll", + "tools/x64/ilc/tools/1029/rhbindui.dll", + "tools/x64/ilc/tools/1031/nutcui.dll", + "tools/x64/ilc/tools/1031/rhbindui.dll", + "tools/x64/ilc/tools/1033/nutcui.dll", + "tools/x64/ilc/tools/1033/rhbindui.dll", + "tools/x64/ilc/tools/1036/nutcui.dll", + "tools/x64/ilc/tools/1036/rhbindui.dll", + "tools/x64/ilc/tools/1040/nutcui.dll", + "tools/x64/ilc/tools/1040/rhbindui.dll", + "tools/x64/ilc/tools/1041/nutcui.dll", + "tools/x64/ilc/tools/1041/rhbindui.dll", + "tools/x64/ilc/tools/1042/nutcui.dll", + "tools/x64/ilc/tools/1042/rhbindui.dll", + "tools/x64/ilc/tools/1045/nutcui.dll", + "tools/x64/ilc/tools/1045/rhbindui.dll", + "tools/x64/ilc/tools/1046/nutcui.dll", + "tools/x64/ilc/tools/1046/rhbindui.dll", + "tools/x64/ilc/tools/1049/nutcui.dll", + "tools/x64/ilc/tools/1049/rhbindui.dll", + "tools/x64/ilc/tools/1055/nutcui.dll", + "tools/x64/ilc/tools/1055/rhbindui.dll", + "tools/x64/ilc/tools/2052/nutcui.dll", + "tools/x64/ilc/tools/2052/rhbindui.dll", + "tools/x64/ilc/tools/3082/nutcui.dll", + "tools/x64/ilc/tools/3082/rhbindui.dll", + "tools/x64/ilc/tools/CciExtensions.dll", + "tools/x64/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/Fr/sg.resources.dll", + "tools/x64/ilc/tools/GatekeeperConfig.xml", + "tools/x64/ilc/tools/ILCTelemetry.exe", + "tools/x64/ilc/tools/ILCTelemetry.exe.config", + "tools/x64/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/x64/ilc/tools/MakeNativeWinMD.exe", + "tools/x64/ilc/tools/MakeNativeWinMD.exe.config", + "tools/x64/ilc/tools/McgCodeDom.dll", + "tools/x64/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/x64/ilc/tools/Microsoft.Cci.dll", + "tools/x64/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/x64/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/x64/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/x64/ilc/tools/Newtonsoft.Json.dll", + "tools/x64/ilc/tools/StackTraceExceptions.txt", + "tools/x64/ilc/tools/StackTraceMetadataProvider.dll", + "tools/x64/ilc/tools/System.Collections.Immutable.dll", + "tools/x64/ilc/tools/System.Reflection.Metadata.dll", + "tools/x64/ilc/tools/System.ValueTuple.dll", + "tools/x64/ilc/tools/c2n.dll", + "tools/x64/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/cs/sg.resources.dll", + "tools/x64/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/de/sg.resources.dll", + "tools/x64/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/es/sg.resources.dll", + "tools/x64/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/it/sg.resources.dll", + "tools/x64/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ja/sg.resources.dll", + "tools/x64/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ko/sg.resources.dll", + "tools/x64/ilc/tools/msdia.sxs.manifest", + "tools/x64/ilc/tools/msdia120.dll", + "tools/x64/ilc/tools/msobj140.dll", + "tools/x64/ilc/tools/mspdbcore.dll", + "tools/x64/ilc/tools/msvcdis140.dll", + "tools/x64/ilc/tools/msvcp140.dll", + "tools/x64/ilc/tools/nutc_driver.exe", + "tools/x64/ilc/tools/nutc_driver.exe.config", + "tools/x64/ilc/tools/nutc_interface.dll", + "tools/x64/ilc/tools/pgocvt.exe", + "tools/x64/ilc/tools/pgodb140.dll", + "tools/x64/ilc/tools/pgomgr.exe", + "tools/x64/ilc/tools/pgort140.dll", + "tools/x64/ilc/tools/pgosweep.exe", + "tools/x64/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pl/sg.resources.dll", + "tools/x64/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pt-BR/sg.resources.dll", + "tools/x64/ilc/tools/rhbind.exe", + "tools/x64/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ru/sg.resources.dll", + "tools/x64/ilc/tools/sg.exe", + "tools/x64/ilc/tools/sg.exe.config", + "tools/x64/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/tr/sg.resources.dll", + "tools/x64/ilc/tools/ucrtbase.dll", + "tools/x64/ilc/tools/vcruntime140.dll", + "tools/x64/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x64/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x64/ilc/tools64/1033/nutcui.dll", + "tools/x64/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x64/ilc/tools64/StackTraceExceptions.txt", + "tools/x64/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x64/ilc/tools64/c2n.dll", + "tools/x64/ilc/tools64/msdia.sxs.manifest", + "tools/x64/ilc/tools64/msdia120.dll", + "tools/x64/ilc/tools64/msobj140.dll", + "tools/x64/ilc/tools64/mspdbcore.dll", + "tools/x64/ilc/tools64/msvcdis140.dll", + "tools/x64/ilc/tools64/msvcp140.dll", + "tools/x64/ilc/tools64/nutc_driver.exe", + "tools/x64/ilc/tools64/nutc_driver.exe.config", + "tools/x64/ilc/tools64/nutc_interface.dll", + "tools/x64/ilc/tools64/pgocvt.exe", + "tools/x64/ilc/tools64/pgodb140.dll", + "tools/x64/ilc/tools64/pgomgr.exe", + "tools/x64/ilc/tools64/pgort140.dll", + "tools/x64/ilc/tools64/pgosweep.exe", + "tools/x64/ilc/tools64/ucrtbase.dll", + "tools/x64/ilc/tools64/vcruntime140.dll", + "tools/x64/ilc/tr/CciExtensions.resources.dll", + "tools/x64/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tr/Ilc.resources.dll", + "tools/x64/ilc/tr/McgEngine.resources.dll", + "tools/x64/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/tr/ReducerEngine.resources.dll", + "tools/x64/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/zh-Hans/Ilc.resources.dll", + "tools/x64/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/zh-Hant/Ilc.resources.dll", + "tools/x64/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x64/mrt100etw.dll" + ] + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "sha512": "4Yqmfetqpt+8X6cntqBp+XsCRvrkQHdHAI2iOB9PAYg60BFnyaO0rqfVdvR+P+g+YDncPXAfQCmkJNlnt2eXZA==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-x64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "runtime.win10-x64.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.2.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/chk/SharedAssemblyList.txt", + "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/chk/Toc/System.Collections.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.Memory.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.2.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/ret/SharedAssemblyList.txt", + "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/ret/Toc/System.Collections.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.Memory.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "sha512": "qEKyLwxrvtVSk/oMsjDxnEThF66+Vf48F5Fam7IxXnbQQQmql6GlwTzl3fP/M2gTRqKle1tYa9HukHqAPVwDlw==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/2.2.12", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreFramework.Debug.2.2.appx", + "tools/Appx/Microsoft.NET.CoreRuntime.2.2.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "xmJ0GlQ7iFZ0O1XDIQLr//bkhuwMyRPZyYgP1ocvzP32VzY9V8z3AjbP3vmZWHDwFnNhbxPzAJer4ZyQfDUzVA==", + "type": "package", + "path": "runtime.win10-x64.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-x64.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.dll", + "runtimes/win10-x64/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-x64/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-x64/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-x64/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "utTFw5HOBlhS22e3L/0OhTVmaVjHwPu+KvrusKgmnBu5+LiklrAFdNW+2CBUKDg3QMj+lURs0SR5yRwWptvt9A==", + "type": "package", + "path": "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-x86-aot/nativeassets/uap10.0.15138/clrcompression.dll" + ] + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.2.10-rel-29722-00": { + "sha512": "9MYuqrIpSxWo5okkTrg3cZvhM7KnrxgtRlrYNiYcRs1TXfSRTjSo670/rffW0SeQPIf3l+MxPAQXFribvFODTA==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.native.compiler/2.2.10-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-x86.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "runtime.win10-x86.microsoft.net.native.compiler.nuspec", + "tools/Runtime/x86/CommandProvider.dll", + "tools/Runtime/x86/Microsoft.NET.Native.Runtime.2.2.appx", + "tools/Runtime/x86/SymbolProvider.dll", + "tools/Runtime/x86/mrt100_app.pdb", + "tools/Runtime/x86/mrt100dac_winx86.dll", + "tools/Runtime/x86/mrt100dbgshim_winx86.dll", + "tools/Runtime/x86/mrt100dbi_winx86.dll", + "tools/Runtime/x86/mrt100etw.dll", + "tools/Runtime/x86/mrt100sos.dll", + "tools/Runtime/x86/msdia120.dll", + "tools/x86/etwevents.man", + "tools/x86/ilc/Lib/Native/Interop.Native.lib", + "tools/x86/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/x86/ilc/Lib/Native/pgort.lib", + "tools/x86/ilc/Lib/Native/vmath.lib", + "tools/x86/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Debug.dll", + "tools/x86/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/x86/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/x86/ilc/Lib/Private/System.Private.MCG.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Threading.dll", + "tools/x86/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/x86/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/x86/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/x86/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/x86/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/x86/ilc/Lib/Runtime/mrt100_app.dll", + "tools/x86/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/x86/ilc/Lib/Runtime/mrt150.dll", + "tools/x86/ilc/Lib/Runtime/mrt150.pdb", + "tools/x86/ilc/clrcompression.dll", + "tools/x86/ilc/cs/CciExtensions.resources.dll", + "tools/x86/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/cs/Ilc.resources.dll", + "tools/x86/ilc/cs/McgEngine.resources.dll", + "tools/x86/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/cs/ReducerEngine.resources.dll", + "tools/x86/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x86/ilc/de/CciExtensions.resources.dll", + "tools/x86/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/de/Ilc.resources.dll", + "tools/x86/ilc/de/McgEngine.resources.dll", + "tools/x86/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/de/ReducerEngine.resources.dll", + "tools/x86/ilc/de/TypeNameUtilities.resources.dll", + "tools/x86/ilc/es/CciExtensions.resources.dll", + "tools/x86/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/es/Ilc.resources.dll", + "tools/x86/ilc/es/McgEngine.resources.dll", + "tools/x86/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/es/ReducerEngine.resources.dll", + "tools/x86/ilc/es/TypeNameUtilities.resources.dll", + "tools/x86/ilc/fr/CciExtensions.resources.dll", + "tools/x86/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/fr/Ilc.resources.dll", + "tools/x86/ilc/fr/McgEngine.resources.dll", + "tools/x86/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/fr/ReducerEngine.resources.dll", + "tools/x86/ilc/fr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ilc.exe", + "tools/x86/ilc/it/CciExtensions.resources.dll", + "tools/x86/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/it/Ilc.resources.dll", + "tools/x86/ilc/it/McgEngine.resources.dll", + "tools/x86/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/it/ReducerEngine.resources.dll", + "tools/x86/ilc/it/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ja/CciExtensions.resources.dll", + "tools/x86/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ja/Ilc.resources.dll", + "tools/x86/ilc/ja/McgEngine.resources.dll", + "tools/x86/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ja/ReducerEngine.resources.dll", + "tools/x86/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ko/CciExtensions.resources.dll", + "tools/x86/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ko/Ilc.resources.dll", + "tools/x86/ilc/ko/McgEngine.resources.dll", + "tools/x86/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ko/ReducerEngine.resources.dll", + "tools/x86/ilc/ko/TypeNameUtilities.resources.dll", + "tools/x86/ilc/mrt150.dll", + "tools/x86/ilc/pl/CciExtensions.resources.dll", + "tools/x86/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/pl/Ilc.resources.dll", + "tools/x86/ilc/pl/McgEngine.resources.dll", + "tools/x86/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pl/ReducerEngine.resources.dll", + "tools/x86/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x86/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x86/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/pt-BR/Ilc.resources.dll", + "tools/x86/ilc/pt-BR/McgEngine.resources.dll", + "tools/x86/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x86/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x86/ilc/rhconfig.ini", + "tools/x86/ilc/ru/CciExtensions.resources.dll", + "tools/x86/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ru/Ilc.resources.dll", + "tools/x86/ilc/ru/McgEngine.resources.dll", + "tools/x86/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ru/ReducerEngine.resources.dll", + "tools/x86/ilc/ru/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/1028/nutcui.dll", + "tools/x86/ilc/tools/1028/rhbindui.dll", + "tools/x86/ilc/tools/1029/nutcui.dll", + "tools/x86/ilc/tools/1029/rhbindui.dll", + "tools/x86/ilc/tools/1031/nutcui.dll", + "tools/x86/ilc/tools/1031/rhbindui.dll", + "tools/x86/ilc/tools/1033/nutcui.dll", + "tools/x86/ilc/tools/1033/rhbindui.dll", + "tools/x86/ilc/tools/1036/nutcui.dll", + "tools/x86/ilc/tools/1036/rhbindui.dll", + "tools/x86/ilc/tools/1040/nutcui.dll", + "tools/x86/ilc/tools/1040/rhbindui.dll", + "tools/x86/ilc/tools/1041/nutcui.dll", + "tools/x86/ilc/tools/1041/rhbindui.dll", + "tools/x86/ilc/tools/1042/nutcui.dll", + "tools/x86/ilc/tools/1042/rhbindui.dll", + "tools/x86/ilc/tools/1045/nutcui.dll", + "tools/x86/ilc/tools/1045/rhbindui.dll", + "tools/x86/ilc/tools/1046/nutcui.dll", + "tools/x86/ilc/tools/1046/rhbindui.dll", + "tools/x86/ilc/tools/1049/nutcui.dll", + "tools/x86/ilc/tools/1049/rhbindui.dll", + "tools/x86/ilc/tools/1055/nutcui.dll", + "tools/x86/ilc/tools/1055/rhbindui.dll", + "tools/x86/ilc/tools/2052/nutcui.dll", + "tools/x86/ilc/tools/2052/rhbindui.dll", + "tools/x86/ilc/tools/3082/nutcui.dll", + "tools/x86/ilc/tools/3082/rhbindui.dll", + "tools/x86/ilc/tools/CciExtensions.dll", + "tools/x86/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/Fr/sg.resources.dll", + "tools/x86/ilc/tools/GatekeeperConfig.xml", + "tools/x86/ilc/tools/ILCTelemetry.exe", + "tools/x86/ilc/tools/ILCTelemetry.exe.config", + "tools/x86/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/x86/ilc/tools/MakeNativeWinMD.exe", + "tools/x86/ilc/tools/MakeNativeWinMD.exe.config", + "tools/x86/ilc/tools/McgCodeDom.dll", + "tools/x86/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/x86/ilc/tools/Microsoft.Cci.dll", + "tools/x86/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/x86/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/x86/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/x86/ilc/tools/Newtonsoft.Json.dll", + "tools/x86/ilc/tools/StackTraceExceptions.txt", + "tools/x86/ilc/tools/StackTraceMetadataProvider.dll", + "tools/x86/ilc/tools/System.Collections.Immutable.dll", + "tools/x86/ilc/tools/System.Reflection.Metadata.dll", + "tools/x86/ilc/tools/System.ValueTuple.dll", + "tools/x86/ilc/tools/c2n.dll", + "tools/x86/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/cs/sg.resources.dll", + "tools/x86/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/de/sg.resources.dll", + "tools/x86/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/es/sg.resources.dll", + "tools/x86/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/it/sg.resources.dll", + "tools/x86/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ja/sg.resources.dll", + "tools/x86/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ko/sg.resources.dll", + "tools/x86/ilc/tools/msdia.sxs.manifest", + "tools/x86/ilc/tools/msdia120.dll", + "tools/x86/ilc/tools/msobj140.dll", + "tools/x86/ilc/tools/mspdbcore.dll", + "tools/x86/ilc/tools/msvcdis140.dll", + "tools/x86/ilc/tools/msvcp140.dll", + "tools/x86/ilc/tools/nutc_driver.exe", + "tools/x86/ilc/tools/nutc_driver.exe.config", + "tools/x86/ilc/tools/nutc_interface.dll", + "tools/x86/ilc/tools/pgocvt.exe", + "tools/x86/ilc/tools/pgodb140.dll", + "tools/x86/ilc/tools/pgomgr.exe", + "tools/x86/ilc/tools/pgort140.dll", + "tools/x86/ilc/tools/pgosweep.exe", + "tools/x86/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pl/sg.resources.dll", + "tools/x86/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pt-BR/sg.resources.dll", + "tools/x86/ilc/tools/rhbind.exe", + "tools/x86/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ru/sg.resources.dll", + "tools/x86/ilc/tools/sg.exe", + "tools/x86/ilc/tools/sg.exe.config", + "tools/x86/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/tr/sg.resources.dll", + "tools/x86/ilc/tools/ucrtbase.dll", + "tools/x86/ilc/tools/vcruntime140.dll", + "tools/x86/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x86/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x86/ilc/tools64/1033/nutcui.dll", + "tools/x86/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x86/ilc/tools64/StackTraceExceptions.txt", + "tools/x86/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x86/ilc/tools64/c2n.dll", + "tools/x86/ilc/tools64/msdia.sxs.manifest", + "tools/x86/ilc/tools64/msdia120.dll", + "tools/x86/ilc/tools64/msobj140.dll", + "tools/x86/ilc/tools64/mspdbcore.dll", + "tools/x86/ilc/tools64/msvcdis140.dll", + "tools/x86/ilc/tools64/msvcp140.dll", + "tools/x86/ilc/tools64/nutc_driver.exe", + "tools/x86/ilc/tools64/nutc_driver.exe.config", + "tools/x86/ilc/tools64/nutc_interface.dll", + "tools/x86/ilc/tools64/pgocvt.exe", + "tools/x86/ilc/tools64/pgodb140.dll", + "tools/x86/ilc/tools64/pgomgr.exe", + "tools/x86/ilc/tools64/pgort140.dll", + "tools/x86/ilc/tools64/pgosweep.exe", + "tools/x86/ilc/tools64/ucrtbase.dll", + "tools/x86/ilc/tools64/vcruntime140.dll", + "tools/x86/ilc/tr/CciExtensions.resources.dll", + "tools/x86/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tr/Ilc.resources.dll", + "tools/x86/ilc/tr/McgEngine.resources.dll", + "tools/x86/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/tr/ReducerEngine.resources.dll", + "tools/x86/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/zh-Hans/Ilc.resources.dll", + "tools/x86/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/zh-Hant/Ilc.resources.dll", + "tools/x86/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x86/mrt100etw.dll" + ] + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.2.8-rel-29722-00": { + "sha512": "nyERLcNkeCzseMd9JwYTOzYbrNhPlY+LM4o3SJ9DZdVQXMFvDB/2HYCdamw99+2XaldbcWkkiCt/12llkj7eGw==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-x86.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "runtime.win10-x86.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.2.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/chk/SharedAssemblyList.txt", + "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/chk/Toc/System.Collections.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.Memory.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Memory.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Memory.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.2.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", + "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", + "tools/SharedLibrary/ret/SharedAssemblyList.txt", + "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", + "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", + "tools/SharedLibrary/ret/Toc/System.Collections.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.Memory.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.2.12": { + "sha512": "KguZgmTZNVn+pvATa2eVKrCocUXJ2su03NOLXp90l2iN9ZADyEKEtpHKlWrH9UHVypHZ6JbsDmVlNk0CNLyWfw==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/2.2.12", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreFramework.Debug.2.2.appx", + "tools/Appx/Microsoft.NET.CoreRuntime.2.2.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.2.12": { + "sha512": "C086n7cyFL4EB7QBAsg6bb7rmhaowunYzfFSggG2zL4VgQ+DGrMqnJZ7HBJjJclWIs98S2y5gCLZ9dfy+T19Hg==", + "type": "package", + "path": "runtime.win10-x86.microsoft.netcore.universalwindowsplatform/6.2.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "runtime.win10-x86.microsoft.netcore.universalwindowsplatform.nuspec", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.AccessControl.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Ports.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Expressions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Parallel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Queryable.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Memory.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.Rtc.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.HttpListener.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Mail.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NameResolution.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NetworkInformation.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Ping.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Requests.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Security.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.ServicePoint.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Sockets.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebClient.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebProxy.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.Client.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ObjectModel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.DataContractSerialization.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.ServiceModel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Uri.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.Linq.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Context.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Metadata.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Reader.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.ResourceManager.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Writer.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Handles.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Numerics.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.AccessControl.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Claims.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Permissions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.Windows.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.SecureString.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Duplex.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Http.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Security.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Web.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceProcess.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.RegularExpressions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Overlapped.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Thread.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.ThreadPool.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Timer.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.Local.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ValueTuple.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.HttpUtility.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Windows.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Linq.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.ReaderWriter.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Serialization.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XDocument.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlDocument.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlSerializer.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.dll", + "runtimes/win10-x86/lib/uap10.0.15138/WindowsBase.dll", + "runtimes/win10-x86/lib/uap10.0.15138/mscorlib.dll", + "runtimes/win10-x86/lib/uap10.0.15138/netstandard.dll", + "runtimes/win10-x86/nativeassets/uap10.0.15138/clrcompression.dll" + ] + } + }, + "projectFileDependencyGroups": { + "UAP,Version=v10.0.17763": [ + "Microsoft.NETCore.UniversalWindowsPlatform >= 6.2.12" + ] + }, + "packageFolders": { + "C:\\Users\\marci\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj", + "projectName": "BlueControl.uwp", + "projectPath": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj", + "packagesPath": "C:\\Users\\marci\\.nuget\\packages\\", + "outputPath": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\obj\\", + "projectStyle": "PackageReference", + "skipContentFileWrite": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\" + ], + "configFilePaths": [ + "C:\\Users\\marci\\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": [ + "uap10.0.17763" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "uap10.0.17763": { + "projectReferences": {} + } + } + }, + "frameworks": { + "uap10.0.17763": { + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": { + "target": "Package", + "version": "[6.2.12, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-arm64-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/project.nuget.cache b/src/BlueControl.uwp/obj/project.nuget.cache new file mode 100644 index 0000000..8588a5a --- /dev/null +++ b/src/BlueControl.uwp/obj/project.nuget.cache @@ -0,0 +1,32 @@ +{ + "version": 2, + "dgSpecHash": "kzJZf59V5P2bkKTvF6QNc8Buhay1mFMSZm/MYRvbgX/xgRM2OBrPTiwu4amHZ8fPQF2irbtBV0J+gV/7oJlDIA==", + "success": true, + "projectFilePath": "C:\\Users\\marci\\repos\\BlueControl\\BlueControl.uwp\\BlueControl.uwp.csproj", + "expectedPackageFiles": [ + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\microsoft.net.native.compiler\\2.2.10-rel-29722-00\\microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\microsoft.net.uwpcoreruntimesdk\\2.2.12\\microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\microsoft.netcore.universalwindowsplatform\\6.2.12\\microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm.microsoft.net.native.compiler\\2.2.10-rel-29722-00\\runtime.win10-arm.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm.microsoft.net.native.sharedlibrary\\2.2.8-rel-29722-00\\runtime.win10-arm.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\\2.2.12\\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-arm.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm64.microsoft.net.native.compiler\\2.2.10-rel-29722-00\\runtime.win10-arm64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-arm64.microsoft.net.native.sharedlibrary\\2.2.8-rel-29722-00\\runtime.win10-arm64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x64.microsoft.net.native.compiler\\2.2.10-rel-29722-00\\runtime.win10-x64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x64.microsoft.net.native.sharedlibrary\\2.2.8-rel-29722-00\\runtime.win10-x64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\\2.2.12\\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x64.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-x64.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x86.microsoft.net.native.compiler\\2.2.10-rel-29722-00\\runtime.win10-x86.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x86.microsoft.net.native.sharedlibrary\\2.2.8-rel-29722-00\\runtime.win10-x86.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\\2.2.12\\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg.sha512", + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\runtime.win10-x86.microsoft.netcore.universalwindowsplatform\\6.2.12\\runtime.win10-x86.microsoft.netcore.universalwindowsplatform.6.2.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x64/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs b/src/BlueControl.uwp/obj/x64/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9302e39 --- /dev/null +++ b/src/BlueControl.uwp/obj/x64/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCore,Version=v5.0", FrameworkDisplayName = ".NET for Windows Universal")] diff --git a/src/BlueControl.uwp/obj/x64/Debug/App.g.cs b/src/BlueControl.uwp/obj/x64/Debug/App.g.cs new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x64/Debug/BlueControl.uwp.csproj.AssemblyReference.cache b/src/BlueControl.uwp/obj/x64/Debug/BlueControl.uwp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f0269bb Binary files /dev/null and b/src/BlueControl.uwp/obj/x64/Debug/BlueControl.uwp.csproj.AssemblyReference.cache differ diff --git a/src/BlueControl.uwp/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/src/BlueControl.uwp/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..e444432 Binary files /dev/null and b/src/BlueControl.uwp/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/src/BlueControl.uwp/obj/x64/Debug/XamlSaveStateFile.xml b/src/BlueControl.uwp/obj/x64/Debug/XamlSaveStateFile.xml new file mode 100644 index 0000000..75f92c3 --- /dev/null +++ b/src/BlueControl.uwp/obj/x64/Debug/XamlSaveStateFile.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs b/src/BlueControl.uwp/obj/x86/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9302e39 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/.NETCore,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCore,Version=v5.0", FrameworkDisplayName = ".NET for Windows Universal")] diff --git a/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637424815200000000.json b/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637424815200000000.json new file mode 100644 index 0000000..660696e --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637424815200000000.json @@ -0,0 +1 @@ +{"FullPath":"C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.19041.0\\XamlCompiler\\Microsoft.UI.Xaml.Markup.winmd","InProcServers":{"CLRHost.dll":{"Path":"CLRHost.dll","TypeToThreadingModel":{"Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider":"both"}}},"Namespaces":{"Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider":"Microsoft.UI.Xaml.Markup"},"RootNamespace":"Microsoft.UI.Xaml.Markup","AssemblyVersion":"17.0.31822.380"} \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637669829380000000.json b/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637669829380000000.json new file mode 100644 index 0000000..61da044 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_637669829380000000.json @@ -0,0 +1 @@ +{"FullPath":"C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\XamlCompiler\\Microsoft.UI.Xaml.Markup.winmd","InProcServers":{"CLRHost.dll":{"Path":"CLRHost.dll","TypeToThreadingModel":{"Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider":"both"}}},"Namespaces":{"Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider":"Microsoft.UI.Xaml.Markup"},"RootNamespace":"Microsoft.UI.Xaml.Markup","AssemblyVersion":"17.0.31822.380"} \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/App.g.cs b/src/BlueControl.uwp/obj/x86/Debug/App.g.cs new file mode 100644 index 0000000..c9b8d00 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/App.g.cs @@ -0,0 +1,17 @@ +#pragma checksum "C:\Users\marci\repos\BlueControl\BlueControl.uwp\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1A5610E28BFF11DC51409A6C4818CD740BC3595FE82FBB47CCD0F354AC5D0C53" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlueControl.uwp +{ + partial class App : global::Windows.UI.Xaml.Application + { + } +} + diff --git a/src/BlueControl.uwp/obj/x86/Debug/App.g.i.cs b/src/BlueControl.uwp/obj/x86/Debug/App.g.i.cs new file mode 100644 index 0000000..716a7cf --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/App.g.i.cs @@ -0,0 +1,59 @@ +#pragma checksum "C:\Users\marci\repos\BlueControl\BlueControl.uwp\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1A5610E28BFF11DC51409A6C4818CD740BC3595FE82FBB47CCD0F354AC5D0C53" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + + +namespace BlueControl.uwp +{ +#if !DISABLE_XAML_GENERATED_MAIN + /// + /// Program class + /// + public static class Program + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + static void Main(string[] args) + { + global::Windows.UI.Xaml.Application.Start((p) => new App()); + } + } +#endif + + partial class App : global::Windows.UI.Xaml.Application + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + private bool _contentLoaded; + /// + /// InitializeComponent() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public void InitializeComponent() + { + if (_contentLoaded) + return; + + _contentLoaded = true; +#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT + DebugSettings.BindingFailed += (sender, args) => + { + global::System.Diagnostics.Debug.WriteLine(args.Message); + }; +#endif +#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION + UnhandledException += (sender, e) => + { + if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break(); + }; +#endif + } + } +} + diff --git a/src/BlueControl.uwp/obj/x86/Debug/App.xaml b/src/BlueControl.uwp/obj/x86/Debug/App.xaml new file mode 100644 index 0000000..e373b79 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/App.xaml @@ -0,0 +1,8 @@ + + + + diff --git a/src/BlueControl.uwp/obj/x86/Debug/App.xbf b/src/BlueControl.uwp/obj/x86/Debug/App.xbf new file mode 100644 index 0000000..08c3069 Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/App.xbf differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.AssemblyReference.cache b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..844581f Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.AssemblyReference.cache differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.CopyComplete b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.CoreCompileInputs.cache b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7f30422 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +558b4d317ec74fe1ea9985500002db7f511e104c diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.FileListAbsolute.txt b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9bd1066 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.csproj.FileListAbsolute.txt @@ -0,0 +1,46 @@ +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\App.xbf +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\MainPage.xbf +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\BlueControl.uwp.xr.xml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\BlueControl.uwp.exe +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\BlueControl.uwp.pdb +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\resources.pri +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\AppxManifest.xml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\Core\AppxManifest.xml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\Core\BlueControl.uwp.exe +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\BlueControl.uwp.build.appxrecipe +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\System.Runtime.dll +C:\Users\marci\repos\BlueControl\BlueControl.uwp\bin\x86\Debug\Microsoft.UI.Xaml.Markup.winmd +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\BlueControl.uwp.csproj.AssemblyReference.cache +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\App.g.i.cs +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\App.g.cs +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\MainPage.g.i.cs +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\MainPage.g.cs +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\XamlTypeInfo.g.cs +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\App.xaml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\MainPage.xaml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\App.xbf +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\MainPage.xbf +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\XamlSaveStateFile.xml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\BlueControl.uwp.csproj.CoreCompileInputs.cache +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\BlueControl.uwp.csproj.CopyComplete +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\BlueControl.uwp.exe +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\BlueControl.uwp.pdb +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\ResourceHandlingTask.state +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\priconfig.xml +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\priconfig.xml.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\unfiltered.layout.resfiles +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\unfiltered.layout.resfiles.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\filtered.layout.resfiles +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\filtered.layout.resfiles.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\excluded.layout.resfiles +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\excluded.layout.resfiles.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\resources.resfiles +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\resources.resfiles.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\pri.resfiles +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\pri.resfiles.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\qualifiers.txt +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\qualifiers.txt.intermediate +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\MultipleQualifiersPerDimensionFound.txt +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\ProjectArchitectures.txt +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\.winmd_cache\$Microsoft.UI.Xaml.Markup.winmd_637424815200000000.json +C:\Users\marci\repos\BlueControl\BlueControl.uwp\obj\x86\Debug\.winmd_cache\$Microsoft.UI.Xaml.Markup.winmd_637669829380000000.json diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.exe b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.exe new file mode 100644 index 0000000..0dfcc8e Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.pdb b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.pdb new file mode 100644 index 0000000..d14092f Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.pdb differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.xr.xml b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.xr.xml new file mode 100644 index 0000000..617e5b4 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/BlueControl.uwp.xr.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/BlueControl.uwp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/src/BlueControl.uwp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..7fa08fe Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.cs b/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.cs new file mode 100644 index 0000000..8d7abe5 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.cs @@ -0,0 +1,40 @@ +#pragma checksum "C:\Users\marci\repos\BlueControl\BlueControl.uwp\MainPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9B5C8DBC92441D246415FA00FFE74C2D95E80CC950D6A8CBAF178B720194F679" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlueControl.uwp +{ + partial class MainPage : + global::Windows.UI.Xaml.Controls.Page, + global::Windows.UI.Xaml.Markup.IComponentConnector, + global::Windows.UI.Xaml.Markup.IComponentConnector2 + { + /// + /// Connect() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public void Connect(int connectionId, object target) + { + this._contentLoaded = true; + } + + /// + /// GetBindingConnector(int connectionId, object target) + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::Windows.UI.Xaml.Markup.IComponentConnector GetBindingConnector(int connectionId, object target) + { + global::Windows.UI.Xaml.Markup.IComponentConnector returnValue = null; + return returnValue; + } + } +} + diff --git a/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.i.cs b/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.i.cs new file mode 100644 index 0000000..e0d7ce0 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/MainPage.g.i.cs @@ -0,0 +1,41 @@ +#pragma checksum "C:\Users\marci\repos\BlueControl\BlueControl.uwp\MainPage.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9B5C8DBC92441D246415FA00FFE74C2D95E80CC950D6A8CBAF178B720194F679" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BlueControl.uwp +{ + partial class MainPage : global::Windows.UI.Xaml.Controls.Page + { + + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + private bool _contentLoaded; + + /// + /// InitializeComponent() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public void InitializeComponent() + { + if (_contentLoaded) + return; + + _contentLoaded = true; + + global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainPage.xaml"); + global::Windows.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Windows.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application); + } + + partial void UnloadObject(global::Windows.UI.Xaml.DependencyObject unloadableObject); + + } +} + + diff --git a/src/BlueControl.uwp/obj/x86/Debug/MainPage.xaml b/src/BlueControl.uwp/obj/x86/Debug/MainPage.xaml new file mode 100644 index 0000000..577f531 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/MainPage.xaml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/BlueControl.uwp/obj/x86/Debug/MainPage.xbf b/src/BlueControl.uwp/obj/x86/Debug/MainPage.xbf new file mode 100644 index 0000000..b13cbbe Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/MainPage.xbf differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt b/src/BlueControl.uwp/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt new file mode 100644 index 0000000..c1f22fb --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt @@ -0,0 +1 @@ +False \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/ProjectArchitectures.txt b/src/BlueControl.uwp/obj/x86/Debug/ProjectArchitectures.txt new file mode 100644 index 0000000..62fced2 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/ProjectArchitectures.txt @@ -0,0 +1 @@ +C:\Users\marci\repos\BlueControl\BlueControl.uwp\BlueControl.uwp.csproj;x86 diff --git a/src/BlueControl.uwp/obj/x86/Debug/ResourceHandlingTask.state b/src/BlueControl.uwp/obj/x86/Debug/ResourceHandlingTask.state new file mode 100644 index 0000000..0f807e5 Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/ResourceHandlingTask.state differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/XamlSaveStateFile.xml b/src/BlueControl.uwp/obj/x86/Debug/XamlSaveStateFile.xml new file mode 100644 index 0000000..c54e96b --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/XamlSaveStateFile.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/XamlTypeInfo.g.cs b/src/BlueControl.uwp/obj/x86/Debug/XamlTypeInfo.g.cs new file mode 100644 index 0000000..dfe1a77 --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/XamlTypeInfo.g.cs @@ -0,0 +1,140 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + + +namespace BlueControl.uwp +{ + public partial class App : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + private global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlMetaDataProvider __appProvider; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + private global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlMetaDataProvider _AppProvider + { + get + { + if (__appProvider == null) + { + __appProvider = new global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlMetaDataProvider(); + } + return __appProvider; + } + } + + /// + /// GetXamlType(Type) + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(global::System.Type type) + { + return _AppProvider.GetXamlType(type); + } + + /// + /// GetXamlType(String) + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(string fullName) + { + return _AppProvider.GetXamlType(fullName); + } + + /// + /// GetXmlnsDefinitions() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::Windows.UI.Xaml.Markup.XmlnsDefinition[] GetXmlnsDefinitions() + { + return _AppProvider.GetXmlnsDefinitions(); + } + } +} + +namespace BlueControl.uwp.BlueControl_uwp_XamlTypeInfo +{ + /// + /// Main class for providing metadata for the app or library + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public sealed class XamlMetaDataProvider : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider + { + private global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlTypeInfoProvider _provider = null; + + private global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlTypeInfoProvider Provider + { + get + { + if (_provider == null) + { + _provider = new global::BlueControl.uwp.BlueControl_uwp_XamlTypeInfo.XamlTypeInfoProvider(); + } + return _provider; + } + } + + /// + /// GetXamlType(Type) + /// + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(global::System.Type type) + { + return Provider.GetXamlTypeByType(type); + } + + /// + /// GetXamlType(String) + /// + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(string fullName) + { + return Provider.GetXamlTypeByName(fullName); + } + + /// + /// GetXmlnsDefinitions() + /// + public global::Windows.UI.Xaml.Markup.XmlnsDefinition[] GetXmlnsDefinitions() + { + return new global::Windows.UI.Xaml.Markup.XmlnsDefinition[0]; + } + } + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 0.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + internal partial class XamlTypeInfoProvider + { + private global::Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider _Provider; + private global::Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider Provider + { + get + { + if (_Provider == null) + { + _Provider = new global::Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider(); + } + return _Provider; + } + } + + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByType(global::System.Type type) + { + return Provider.GetXamlType(type); + } + + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByName(string typeName) + { + return Provider.GetXamlType(typeName); + } + } +} + diff --git a/src/BlueControl.uwp/obj/x86/Debug/embed/embed.resfiles b/src/BlueControl.uwp/obj/x86/Debug/embed/embed.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/embed/embed.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/embed/embed.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/excluded.layout.resfiles b/src/BlueControl.uwp/obj/x86/Debug/excluded.layout.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/excluded.layout.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/excluded.layout.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles b/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles new file mode 100644 index 0000000..659c63a --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles @@ -0,0 +1,12 @@ +WinMetadata\Windows.winmd +Assets\LockScreenLogo.scale-200.png +Assets\SplashScreen.scale-200.png +Assets\Square150x150Logo.scale-200.png +Assets\Square44x44Logo.scale-200.png +Assets\Square44x44Logo.targetsize-24_altform-unplated.png +Assets\StoreLogo.png +Assets\Wide310x150Logo.scale-200.png +App.xbf +BlueControl.uwp.xr.xml +MainPage.xbf +Properties\Default.rd.xml diff --git a/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles.intermediate new file mode 100644 index 0000000..659c63a --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/filtered.layout.resfiles.intermediate @@ -0,0 +1,12 @@ +WinMetadata\Windows.winmd +Assets\LockScreenLogo.scale-200.png +Assets\SplashScreen.scale-200.png +Assets\Square150x150Logo.scale-200.png +Assets\Square44x44Logo.scale-200.png +Assets\Square44x44Logo.targetsize-24_altform-unplated.png +Assets\StoreLogo.png +Assets\Wide310x150Logo.scale-200.png +App.xbf +BlueControl.uwp.xr.xml +MainPage.xbf +Properties\Default.rd.xml diff --git a/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.exe b/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.exe new file mode 100644 index 0000000..512cd27 Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.exe differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.pdb b/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.pdb new file mode 100644 index 0000000..d8f0876 Binary files /dev/null and b/src/BlueControl.uwp/obj/x86/Debug/intermediatexaml/BlueControl.uwp.pdb differ diff --git a/src/BlueControl.uwp/obj/x86/Debug/pri.resfiles b/src/BlueControl.uwp/obj/x86/Debug/pri.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/pri.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/pri.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml b/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml new file mode 100644 index 0000000..2ead5df --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml.intermediate b/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml.intermediate new file mode 100644 index 0000000..2ead5df --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/priconfig.xml.intermediate @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt b/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt new file mode 100644 index 0000000..55907fd --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt @@ -0,0 +1,3 @@ +AlternateForm=UNPLATED +Scale=200 +TargetSize=24 diff --git a/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt.intermediate b/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt.intermediate new file mode 100644 index 0000000..55907fd --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/qualifiers.txt.intermediate @@ -0,0 +1,3 @@ +AlternateForm=UNPLATED +Scale=200 +TargetSize=24 diff --git a/src/BlueControl.uwp/obj/x86/Debug/resources.resfiles b/src/BlueControl.uwp/obj/x86/Debug/resources.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/resources.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/resources.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles b/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles new file mode 100644 index 0000000..659c63a --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles @@ -0,0 +1,12 @@ +WinMetadata\Windows.winmd +Assets\LockScreenLogo.scale-200.png +Assets\SplashScreen.scale-200.png +Assets\Square150x150Logo.scale-200.png +Assets\Square44x44Logo.scale-200.png +Assets\Square44x44Logo.targetsize-24_altform-unplated.png +Assets\StoreLogo.png +Assets\Wide310x150Logo.scale-200.png +App.xbf +BlueControl.uwp.xr.xml +MainPage.xbf +Properties\Default.rd.xml diff --git a/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles.intermediate b/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles.intermediate new file mode 100644 index 0000000..659c63a --- /dev/null +++ b/src/BlueControl.uwp/obj/x86/Debug/unfiltered.layout.resfiles.intermediate @@ -0,0 +1,12 @@ +WinMetadata\Windows.winmd +Assets\LockScreenLogo.scale-200.png +Assets\SplashScreen.scale-200.png +Assets\Square150x150Logo.scale-200.png +Assets\Square44x44Logo.scale-200.png +Assets\Square44x44Logo.targetsize-24_altform-unplated.png +Assets\StoreLogo.png +Assets\Wide310x150Logo.scale-200.png +App.xbf +BlueControl.uwp.xr.xml +MainPage.xbf +Properties\Default.rd.xml