diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..f525f12 --- /dev/null +++ b/App.xaml @@ -0,0 +1,7 @@ + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..ae934cd --- /dev/null +++ b/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 Stensel +{ + /// + /// 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/Assets/LockScreenLogo.scale-200.png b/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..735f57a Binary files /dev/null and b/Assets/LockScreenLogo.scale-200.png differ diff --git a/Assets/SplashScreen.scale-200.png b/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..023e7f1 Binary files /dev/null and b/Assets/SplashScreen.scale-200.png differ diff --git a/Assets/Square150x150Logo.scale-200.png b/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..af49fec Binary files /dev/null and b/Assets/Square150x150Logo.scale-200.png differ diff --git a/Assets/Square44x44Logo.scale-200.png b/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..ce342a2 Binary files /dev/null and b/Assets/Square44x44Logo.scale-200.png differ diff --git a/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..f6c02ce Binary files /dev/null and b/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/Assets/Stenotype.txt b/Assets/Stenotype.txt new file mode 100644 index 0000000..bd09f38 --- /dev/null +++ b/Assets/Stenotype.txt @@ -0,0 +1,78 @@ +'Key definitions (Key_Name;Key_X;Key_Y) +#;2;1 +S;2;2 +T;3;1 +K;3;2 +P;4;1 +W;4;2 +H;5;1 +R;5;2 +*;6;1 +-F;7;1 +-R;7;2 +-P;8;1 +-B;8;2 +-L;9;1 +-G;9;2 +-T;10;1 +-S;10;2 +-D;11;1 +-Z;11;2 +A;4;3 +O;5;3 +E;7;3 +U;8;3 + +--- +'Key binds (NOTE;KEY_1,KEY_2,...) +37;# +39;#,S +40;S +41;T +42;T,K +43;K +44;P +45;P,W +46;W +47;H +48;H,R +49;R +50;H,* +51;R,* +52;* +53;A +54;A,O +55;O + +59;E +60;E,U +61;U +62;*,-F +63;-F +64;*,-R +65;-F,-R +66;-R +67;-P +68;-P,-B +69;-B +70;-L +71;-L,-G +72;-G +73;-T +74;-T,-S +75;-S +76;-T,-D +77;-D +78;-S,-Z +79;-D,-Z +80;-Z +82;H,R,* +83;*,-F,-R +84;-T,-S,-D,-Z + + +--- +'Control change bindings ( !NOTE +' UPTO;NOTE_1,NOTE_2,... +' ? ) +--- \ No newline at end of file diff --git a/Assets/StoreLogo.png b/Assets/StoreLogo.png new file mode 100644 index 0000000..7385b56 Binary files /dev/null and b/Assets/StoreLogo.png differ diff --git a/Assets/Wide310x150Logo.scale-200.png b/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..288995b Binary files /dev/null and b/Assets/Wide310x150Logo.scale-200.png differ diff --git a/Layout.cs b/Layout.cs new file mode 100644 index 0000000..5234eaa --- /dev/null +++ b/Layout.cs @@ -0,0 +1,195 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.Storage; + +namespace Stensel +{ + class Layout + { + public struct LayoutKey + { + public LayoutKey(int xPos, int yPos, string name) + { + this.xPos = xPos; + this.yPos = yPos; + this.name = name; + } + + public int xPos; + public int yPos; + public string name; + + public string GetDisplayName() + { + return name.Replace("-", ""); + } + } + + private Dictionary controlSurfaces = new Dictionary(); + private Dictionary noteSurfaces = new Dictionary(); + private Dictionary namesToNotes = new Dictionary(); + + public async Task LoadLayout() + { + StorageFolder sfold = ApplicationData.Current.LocalFolder; + StorageFile sf = (StorageFile) await sfold.TryGetItemAsync("Stenotype.txt"); + + if (sf == null) + { + // Copy the file from the install folder to the local folder + var folder = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets"); + + var file = await folder.GetFileAsync("Stenotype.txt"); + if (file != null) + { + await file.CopyAsync(sfold, "Stenotype.txt", NameCollisionOption.FailIfExists); + } + + sf = await sfold.GetFileAsync("Stenotype.txt"); + } + + + var fs = File.Open(sf.Path, FileMode.Open); + TextReader tr = new StreamReader(fs); + + List ret = new List(); + + string line; + + while ((line = tr.ReadLine()) != null) + { + if (line.Contains("---")) + break; + + if (line.Length > 4 && line[0] != '\'') + { + string[] parts = line.Split(';'); + + if (parts.Length > 2) + ret.Add(new LayoutKey(int.Parse(parts[1]), int.Parse(parts[2]), parts[0])); + } + } + + // While the list to be returned is already completed, we'll take this moment to read the rest of the data as well + while ((line = tr.ReadLine()) != null) + { + if (line.Contains("---")) + break; + + if (line.Length > 2 && line[0] != '\'') + { + string[] parts = line.Split(';'); + + if (parts.Length > 1) + { + string[] keys = parts[1].Split(','); + noteSurfaces.Add(byte.Parse(parts[0]), keys); + + if(parts.Length == 2) + { + if(!namesToNotes.ContainsKey(parts[1])) + { + namesToNotes.Add(parts[1], byte.Parse(parts[0])); + } + } + } + } + } + + while ((line = tr.ReadLine()) != null) + { + if (line.Contains("---")) + break; + + if (line.Length > 0 && line[0] == '!') + { + string key = line.Substring(1); + if(key.Length > 0) + { + byte note = byte.Parse(key); + + string[][] noteNames = new string[128][]; + string subline; + int index = 0; + + while ((subline = tr.ReadLine()) != null) + { + + if(subline.Length > 0) + { + if (subline[0] == '?') + break; + + string[] parts = subline.Split(';'); + + if (parts.Length > 1) + { + string[] keys = parts[1].Split(','); + + int upto = int.Parse(parts[0]); + + while (index <= upto) + noteNames[index++] = keys; + } + } + } + + controlSurfaces.Add(note, noteNames); + } + } + } + + return ret.ToArray(); + } + + public string[] GetActiveNoteNames(ChannelRecord[] records) + { + List ret = new List(); + + foreach(var rec in records) + { + if (noteSurfaces.ContainsKey(rec.GetNote())) + { + foreach(string note in noteSurfaces[rec.GetNote()]) + { + if(!ret.Contains(note)) + { + ret.Add(note); + } + } + } + else if(controlSurfaces.ContainsKey(rec.GetNote()) && rec.GetLast() > -1) + { + foreach (string note in controlSurfaces[rec.GetNote()][rec.GetLast()]) + { + if (!ret.Contains(note)) + { + ret.Add(note); + } + } + } + } + + return ret.ToArray(); + } + + public byte[] GetActiveNotes(ChannelRecord[] records) + { + string[] noteNames = GetActiveNoteNames(records); + List ret = new List(); + + foreach(string noteName in noteNames) + { + if (namesToNotes.ContainsKey(noteName) && !ret.Contains(namesToNotes[noteName])) + ret.Add(namesToNotes[noteName]); + } + + return ret.ToArray(); + } + } +} diff --git a/MIDIDeviceWatcher.cs b/MIDIDeviceWatcher.cs new file mode 100644 index 0000000..fcfc4dd --- /dev/null +++ b/MIDIDeviceWatcher.cs @@ -0,0 +1,106 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.Devices.Enumeration; +using Windows.UI.Core; +using Windows.UI.Xaml.Controls; + +namespace Stensel +{ + class MIDIDeviceWatcher + { + DeviceWatcher deviceWatcher; + string deviceSelectorString; + ComboBox deviceListBox; + CoreDispatcher coreDispatcher; + public DeviceInformationCollection DeviceInformationCollection { get; set; } + + public MIDIDeviceWatcher(string midiDeviceSelectorString, ComboBox midiDeviceListBox, CoreDispatcher dispatcher) + { + deviceListBox = midiDeviceListBox; + coreDispatcher = dispatcher; + + deviceSelectorString = midiDeviceSelectorString; + + deviceWatcher = DeviceInformation.CreateWatcher(deviceSelectorString); + deviceWatcher.Added += DeviceWatcher_Added; + deviceWatcher.Removed += DeviceWatcher_Removed; + deviceWatcher.Updated += DeviceWatcher_Updated; + deviceWatcher.EnumerationCompleted += DeviceWatcher_EnumerationCompleted; + } + + private async void DeviceWatcher_Removed(DeviceWatcher sender, DeviceInformationUpdate args) + { + await coreDispatcher.RunAsync(CoreDispatcherPriority.High, () => + { + // Update the device list + UpdateDevices(); + }); + } + + private async void DeviceWatcher_Added(DeviceWatcher sender, DeviceInformation args) + { + await coreDispatcher.RunAsync(CoreDispatcherPriority.High, () => + { + // Update the device list + UpdateDevices(); + }); + } + + private async void DeviceWatcher_EnumerationCompleted(DeviceWatcher sender, object args) + { + await coreDispatcher.RunAsync(CoreDispatcherPriority.High, () => + { + // Update the device list + UpdateDevices(); + }); + } + + private async void DeviceWatcher_Updated(DeviceWatcher sender, DeviceInformationUpdate args) + { + await coreDispatcher.RunAsync(CoreDispatcherPriority.High, () => + { + // Update the device list + UpdateDevices(); + }); + } + + private async void UpdateDevices() + { + // Get a list of all MIDI devices + this.DeviceInformationCollection = await DeviceInformation.FindAllAsync(deviceSelectorString); + + deviceListBox.Items.Clear(); + + if (!this.DeviceInformationCollection.Any()) + { + deviceListBox.Items.Add("No MIDI devices found!"); + } + + foreach (var deviceInformation in this.DeviceInformationCollection) + { + deviceListBox.Items.Add(deviceInformation.Name); + } + } + + public void StartWatcher() + { + deviceWatcher.Start(); + } + public void StopWatcher() + { + deviceWatcher.Stop(); + } + + ~MIDIDeviceWatcher() + { + deviceWatcher.Added -= DeviceWatcher_Added; + deviceWatcher.Removed -= DeviceWatcher_Removed; + deviceWatcher.Updated -= DeviceWatcher_Updated; + deviceWatcher.EnumerationCompleted -= DeviceWatcher_EnumerationCompleted; + deviceWatcher = null; + } + } +} diff --git a/MIDIListener.cs b/MIDIListener.cs new file mode 100644 index 0000000..2448b80 --- /dev/null +++ b/MIDIListener.cs @@ -0,0 +1,295 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.Devices.Enumeration; +using Windows.Devices.Midi; +using Windows.UI.Xaml; + +namespace Stensel +{ + class MIDIListener + { + private MidiInPort midiInPort; + private bool[] channels = new bool[16]; + private long timeout = 2500; + private Stopwatch stopwatch = new Stopwatch(); + private DispatcherTimer dispatcher = new DispatcherTimer(); + + public MIDIListener(MidiInPort midiInPort) + { + this.midiInPort = midiInPort; + this.midiInPort.MessageReceived += MidiInPort_MessageRecieved; + dispatcher.Interval = new TimeSpan(50); + dispatcher.Tick += Monitor; + dispatcher.Start(); + } + + ~MIDIListener() + { + midiInPort.MessageReceived -= MidiInPort_MessageRecieved; + dispatcher.Stop(); + } + + private void Monitor(object sender, object e) + { + if(stopwatch.ElapsedMilliseconds > timeout) + { + Debug.WriteLine("Timed out."); + suspendedRecords.AddRange(openControlRecords.Values); + suspendedRecords.AddRange(openDownRecords.Values); + openControlRecords.Clear(); + openDownRecords.Clear(); + StoreCurrentRecord(); + } + if(debouncing && !Debounce()) + { + StoreCurrentRecord(); + } + } + + private static Dictionary openControlRecords = new Dictionary(); + private static Dictionary openDownRecords = new Dictionary(); + private static List suspendedRecords = new List(); + private static Queue unfetchedRecords = new Queue(); + private byte[] controlKeys = { 81, 83, 84, 86, 88, 89 }; + bool heapInProgress = false; + + + public bool HeapInProgress() + { + return heapInProgress; + } + + private void MidiInPort_MessageRecieved(object sender, MidiMessageReceivedEventArgs args) + { + stopwatch.Restart(); + IMidiMessage message = args.Message; + + if (message.Type == MidiMessageType.NoteOn) + { + MidiNoteOnMessage msg = (MidiNoteOnMessage)message; + //channels[msg.Channel] = true; + //DebugChannels(); + + if (controlKeys.Contains(msg.Note) && !openControlRecords.ContainsKey(msg.Channel)) + { + heapInProgress = true; + openControlRecords.Add(msg.Channel, new ChannelRecord(msg.Note)); + } + else if(!openDownRecords.ContainsKey(msg.Note)) + { + heapInProgress = true; + openDownRecords.Add(msg.Note, new ChannelRecord(msg.Note)); + } + } + else if (message.Type == MidiMessageType.NoteOff) + { + MidiNoteOffMessage msg = (MidiNoteOffMessage)message; + //channels[msg.Channel] = false; + //DebugChannels(); + + if (controlKeys.Contains(msg.Note) && openControlRecords.ContainsKey(msg.Channel)) + { + suspendedRecords.Add(openControlRecords[msg.Channel]); + + openControlRecords.Remove(msg.Channel); + } + else if (openDownRecords.ContainsKey(msg.Note)) + { + suspendedRecords.Add(openDownRecords[msg.Note]); + openDownRecords.Remove(msg.Note); + } + + if (openControlRecords.Count == 0 && openDownRecords.Count == 0) + { + BeginDebounce(); + } + } + else if (message.Type == MidiMessageType.ControlChange) + { + MidiControlChangeMessage controlMessage = (MidiControlChangeMessage)message; + int channel = controlMessage.Channel; + + if(openControlRecords.ContainsKey(channel)) + { + switch (controlMessage.Controller) + { + case 1: + openControlRecords[channel].MakeRecord(controlMessage.ControlValue); + //Debug.WriteLine(openRecords[channel].ToString()); + break; + default: + Debug.WriteLine("Got unexpected control change on controller " + controlMessage.Controller); + break; + } + } + } + } + + private static bool debouncing = false; + private static readonly long debounce = 70; + private static Stopwatch debounceTimer = new Stopwatch(); + + private void BeginDebounce() + { + debounceTimer.Restart(); + debouncing = true; + } + + private bool Debounce() + { + if(debounceTimer.ElapsedMilliseconds > debounce && openControlRecords.Count == 0 && openDownRecords.Count == 0) + { + debouncing = false; + debounceTimer.Reset(); + return false; + } + + return true; + } + + private void StoreCurrentRecord() + { + heapInProgress = false; + stopwatch.Reset(); + + if (suspendedRecords.Count < 1) + return; + + Debug.WriteLine("\nGrouping input:"); + ChannelRecord[] safeSus = suspendedRecords.ToArray(); + foreach(ChannelRecord ch in safeSus) + { + ch.Close(); + Debug.WriteLine("\t" + ch.ToString()); + } + + unfetchedRecords.Enqueue(suspendedRecords.ToArray()); + + suspendedRecords.Clear(); + } + + /// + /// Get the last set of records that were recorded + /// + /// null if no last frame to fetch + public ChannelRecord[] FetchLastFrame() + { + if (openControlRecords.Count < 1 && openDownRecords.Count < 1) + return null; + + List records = new List(openControlRecords.Values); + + records.AddRange(openDownRecords.Values); + + ChannelRecord[] safe = records.ToArray(); + List copy = new List(); + foreach(var rec in safe) + { + copy.Add(new ChannelRecord(rec)); + } + + return copy.ToArray(); + } + + /// + /// Get the last set of records that were temporally overlapping + /// + /// null if no record to fetch + public ChannelRecord[] FetchLastHeap() + { + if(unfetchedRecords.Count > 0) + { + return unfetchedRecords.Dequeue(); + } + + return null; + } + + private void DebugChannels() + { + Debug.Write("\n"); + foreach(bool b in channels) + { + if (b) + Debug.Write("1"); + else + Debug.Write("-"); + } + } + } + + public class ChannelRecord + { + private List cc = new List(); + private byte note; + private long downTime; + private long elapsed; + private double average = -1; + + public ChannelRecord(ChannelRecord model) + { + cc.Add(model.GetLast()); + note = model.GetNote(); + } + + public ChannelRecord(byte note) + { + this.note = note; + downTime = Stopwatch.GetTimestamp(); + } + + public void Close() + { + average = GetAverageRecord(); + elapsed = Stopwatch.GetTimestamp() - downTime; + } + + public void MakeRecord(int x) + { + cc.Add(x); + } + + public byte GetNote() + { + return note; + } + + public int GetLast() + { + if(cc.Count > 0) + return cc.Last(); + + return -1; + } + + public double GetAverage() + { + return average; + } + + public long GetElapsed() + { + return elapsed; + } + + private double GetAverageRecord() + { + if(cc.Count > 0) + return cc.Average(); + + return -1; + } + + public override string ToString() + { + if(elapsed > 0) + return "\t## NOTE: " + note + "\t## Average change:" + average; + + return "##NOTE: " + note + "\t##Latest change:" + GetLast(); + } + } +} diff --git a/MIDITransmitter.cs b/MIDITransmitter.cs new file mode 100644 index 0000000..2385525 --- /dev/null +++ b/MIDITransmitter.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.Devices.Midi; +using Windows.UI.Xaml; + +namespace Stensel +{ + class MIDITransmitter + { + private IMidiOutPort midiOutPort; + private Stopwatch stopwatch = new Stopwatch(); + private long noteOpenTime = 20; + private DispatcherTimer dispatcher = new DispatcherTimer(); + private Queue transmitted = new Queue(); + + public MIDITransmitter(IMidiOutPort midiOutPort) + { + this.midiOutPort = midiOutPort; + dispatcher.Tick += SendNotesOff; + dispatcher.Interval = new TimeSpan(50); + dispatcher.Start(); + } + + public void Transmit(byte[] notes) + { + foreach(byte note in notes) + { + midiOutPort.SendMessage(new MidiNoteOnMessage(0, note, 127)); + transmitted.Enqueue(note); + } + + stopwatch.Restart(); + } + + private void SendNotesOff(object sender, object e) + { + if(stopwatch.ElapsedMilliseconds > noteOpenTime) + { + stopwatch.Stop(); + while (transmitted.Count > 0) + midiOutPort.SendMessage(new MidiNoteOffMessage(0, transmitted.Dequeue(), 127)); + } + } + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..b7e9c00 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MainPage.xaml.cs b/MainPage.xaml.cs new file mode 100644 index 0000000..f7e5227 --- /dev/null +++ b/MainPage.xaml.cs @@ -0,0 +1,204 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +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; +using Windows.Devices.Enumeration; +using Windows.Devices.Midi; +using System.Threading.Tasks; +using Windows.UI.Xaml.Shapes; + +namespace Stensel +{ + /// + /// The main window + /// + public sealed partial class MainPage : Page + { + MIDIDeviceWatcher deviceInFinder; + MIDIDeviceWatcher deviceOutFinder; + MIDIListener listener; + MIDITransmitter transmitter; + Layout lo; + DispatcherTimer uiDrawClock = new DispatcherTimer(); + + public MainPage() + { + InitializeComponent(); + Background = new SolidColorBrush(Windows.UI.Colors.LightGray); + // Keep up to date with connected MIDI devices + deviceInFinder = new MIDIDeviceWatcher(MidiInPort.GetDeviceSelector(), midiInPortListBox, Dispatcher); + deviceInFinder.StartWatcher(); + deviceOutFinder = new MIDIDeviceWatcher(MidiOutPort.GetDeviceSelector(), midiOutPortListBox, Dispatcher); + deviceOutFinder.StartWatcher(); + + DrawLayout(); + uiDrawClock.Tick += ShowCurChord; + uiDrawClock.Interval = new TimeSpan(20); + } + + #region Graphics + Dictionary layout = new Dictionary(); + + private async void DrawLayout() + { + lo = new Layout(); + var keys = await lo.LoadLayout(); + + foreach (var lkey in keys) + { + var key = new Rectangle(); + key.Width = 36; + key.Height = 36; + key.Fill = new SolidColorBrush(Windows.UI.Colors.White); + key.SetValue(Canvas.LeftProperty, 38 * lkey.xPos + 5); + key.SetValue(Canvas.TopProperty, 38 * lkey.yPos); + StenoLayout.Children.Add(key); + layout.Add(lkey.name, key); + + var text = new TextBlock(); + text.Width = 38; + text.Height = 38; + text.TextAlignment = TextAlignment.Center; + text.Text = lkey.GetDisplayName(); + text.SetValue(Canvas.LeftProperty, 38 * lkey.xPos + 5); + text.SetValue(Canvas.TopProperty, 38 * lkey.yPos); + StenoLayout.Children.Add(text); + } + } + + private void ShowCurChord(object sender, object e) + { + if (listener != null) + { + var held = listener.FetchLastFrame(); + + if (held != null) + { + var notes = lo.GetActiveNoteNames(held); + + foreach (string name in notes) + { + layout[name].Fill = new SolidColorBrush(Windows.UI.Colors.SteelBlue); + } + } + else + { + foreach (var key in layout.Values) + { + key.Fill = new SolidColorBrush(Windows.UI.Colors.White); + } + } + + + if(transmitter != null) + { + var lastHeap = listener.FetchLastHeap(); + + if (lastHeap != null) + { + byte[] sendNotes = lo.GetActiveNotes(lastHeap); + transmitter.Transmit(sendNotes); + } + } + } + } + #endregion + + /// + /// Called when MIDI input device is selected + /// + /// + /// + private async void midiInPortListBox_SelectionChanged(object sender, SelectionChangedEventArgs args) + { + var devicesInfo = deviceInFinder.DeviceInformationCollection; + if (devicesInfo == null) + { + Debug.WriteLine("Device finder could not locate any device information."); + return; + } + + DeviceInformation deviceInfo = devicesInfo[midiInPortListBox.SelectedIndex]; + + if (deviceInfo == null) + { + Debug.WriteLine("Could not locate device information for selected device."); + return; + } + + Debug.WriteLine("Attempting to listen to device #" + midiInPortListBox.SelectedIndex); + + await SetListener(deviceInfo.Id); + } + + private async void midiOutPortListBox_SelectionChanged(object sender, SelectionChangedEventArgs args) + { + var devicesInfo = deviceOutFinder.DeviceInformationCollection; + if (devicesInfo == null) + { + Debug.WriteLine("Device finder could not locate any device information."); + return; + } + + DeviceInformation deviceInfo = devicesInfo[midiOutPortListBox.SelectedIndex]; + + if (deviceInfo == null) + { + Debug.WriteLine("Could not locate device information for selected device."); + return; + } + + Debug.WriteLine("Attempting to transmit to device #" + midiOutPortListBox.SelectedIndex); + + await SetTransmitter(deviceInfo.Id); + } + + /// + /// Passes a MIDI input port to the MIDIListener + /// + /// the port that is passed + /// task + private async Task SetListener(string portID) + { + MidiInPort listening = await MidiInPort.FromIdAsync(portID); + + if (listening == null) + { + Debug.WriteLine("Unable to create MIDI-in port."); + return; + } + + listener = new MIDIListener(listening); + uiDrawClock.Start(); + } + + /// + /// Passes a MIDI output port to the MIDITransmitter + /// + /// the port that is passed + /// task + private async Task SetTransmitter(string portID) + { + IMidiOutPort transmitting = await MidiOutPort.FromIdAsync(portID); + + if (transmitting == null) + { + Debug.WriteLine("Unable to create MIDI-out port."); + return; + } + + transmitter = new MIDITransmitter(transmitting); + } + } +} diff --git a/Package.appxmanifest b/Package.appxmanifest new file mode 100644 index 0000000..086972a --- /dev/null +++ b/Package.appxmanifest @@ -0,0 +1,49 @@ + + + + + + + + + + Stensel + maxhe + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2c4e498 --- /dev/null +++ b/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("Stensel")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Stensel")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[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/Properties/Default.rd.xml b/Properties/Default.rd.xml new file mode 100644 index 0000000..af00722 --- /dev/null +++ b/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Stensel.csproj b/Stensel.csproj new file mode 100644 index 0000000..4a45b23 --- /dev/null +++ b/Stensel.csproj @@ -0,0 +1,173 @@ + + + + + Debug + x86 + {C30E1E09-DB18-40E1-9DAA-5CE1DE56A650} + AppContainerExe + Properties + Stensel + Stensel + en-US + UAP + 10.0.17763.0 + 10.0.15063.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + Stensel_TemporaryKey.pfx + + + 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.3 + + + + 14.0 + + + + \ No newline at end of file diff --git a/Stensel_TemporaryKey.pfx b/Stensel_TemporaryKey.pfx new file mode 100644 index 0000000..66fe3a9 Binary files /dev/null and b/Stensel_TemporaryKey.pfx differ diff --git a/bin/x86/Debug/App.xbf b/bin/x86/Debug/App.xbf new file mode 100644 index 0000000..1690986 Binary files /dev/null and b/bin/x86/Debug/App.xbf differ diff --git a/bin/x86/Debug/AppX/App.xbf b/bin/x86/Debug/AppX/App.xbf new file mode 100644 index 0000000..1690986 Binary files /dev/null and b/bin/x86/Debug/AppX/App.xbf differ diff --git a/bin/x86/Debug/AppX/AppxManifest.xml b/bin/x86/Debug/AppX/AppxManifest.xml new file mode 100644 index 0000000..af20e63 --- /dev/null +++ b/bin/x86/Debug/AppX/AppxManifest.xml @@ -0,0 +1,56 @@ + + + + + + + Stensel + maxhe + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + Stensel.exe + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png b/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000..735f57a Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png differ diff --git a/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png b/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000..023e7f1 Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png differ diff --git a/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png b/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000..af49fec Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png differ diff --git a/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png b/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000..ce342a2 Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png differ diff --git a/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000..f6c02ce Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/bin/x86/Debug/AppX/Assets/Stenotype.txt b/bin/x86/Debug/AppX/Assets/Stenotype.txt new file mode 100644 index 0000000..bd09f38 --- /dev/null +++ b/bin/x86/Debug/AppX/Assets/Stenotype.txt @@ -0,0 +1,78 @@ +'Key definitions (Key_Name;Key_X;Key_Y) +#;2;1 +S;2;2 +T;3;1 +K;3;2 +P;4;1 +W;4;2 +H;5;1 +R;5;2 +*;6;1 +-F;7;1 +-R;7;2 +-P;8;1 +-B;8;2 +-L;9;1 +-G;9;2 +-T;10;1 +-S;10;2 +-D;11;1 +-Z;11;2 +A;4;3 +O;5;3 +E;7;3 +U;8;3 + +--- +'Key binds (NOTE;KEY_1,KEY_2,...) +37;# +39;#,S +40;S +41;T +42;T,K +43;K +44;P +45;P,W +46;W +47;H +48;H,R +49;R +50;H,* +51;R,* +52;* +53;A +54;A,O +55;O + +59;E +60;E,U +61;U +62;*,-F +63;-F +64;*,-R +65;-F,-R +66;-R +67;-P +68;-P,-B +69;-B +70;-L +71;-L,-G +72;-G +73;-T +74;-T,-S +75;-S +76;-T,-D +77;-D +78;-S,-Z +79;-D,-Z +80;-Z +82;H,R,* +83;*,-F,-R +84;-T,-S,-D,-Z + + +--- +'Control change bindings ( !NOTE +' UPTO;NOTE_1,NOTE_2,... +' ? ) +--- \ No newline at end of file diff --git a/bin/x86/Debug/AppX/Assets/StoreLogo.png b/bin/x86/Debug/AppX/Assets/StoreLogo.png new file mode 100644 index 0000000..7385b56 Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/StoreLogo.png differ diff --git a/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png b/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000..288995b Binary files /dev/null and b/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png differ diff --git a/bin/x86/Debug/AppX/MainPage.xbf b/bin/x86/Debug/AppX/MainPage.xbf new file mode 100644 index 0000000..cd70b7a Binary files /dev/null and b/bin/x86/Debug/AppX/MainPage.xbf differ diff --git a/bin/x86/Debug/AppX/Microsoft.CSharp.dll b/bin/x86/Debug/AppX/Microsoft.CSharp.dll new file mode 100644 index 0000000..cc29bd3 Binary files /dev/null and b/bin/x86/Debug/AppX/Microsoft.CSharp.dll differ diff --git a/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd b/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd new file mode 100644 index 0000000..f0443a0 Binary files /dev/null and b/bin/x86/Debug/AppX/Microsoft.UI.Xaml.Markup.winmd differ diff --git a/bin/x86/Debug/AppX/Microsoft.VisualBasic.dll b/bin/x86/Debug/AppX/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..f04420d Binary files /dev/null and b/bin/x86/Debug/AppX/Microsoft.VisualBasic.dll differ diff --git a/bin/x86/Debug/AppX/Microsoft.Win32.Primitives.dll b/bin/x86/Debug/AppX/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..f575d8c Binary files /dev/null and b/bin/x86/Debug/AppX/Microsoft.Win32.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/Properties/Default.rd.xml b/bin/x86/Debug/AppX/Properties/Default.rd.xml new file mode 100644 index 0000000..af00722 --- /dev/null +++ b/bin/x86/Debug/AppX/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/AppX/Stensel.exe b/bin/x86/Debug/AppX/Stensel.exe new file mode 100644 index 0000000..f71ecd8 Binary files /dev/null and b/bin/x86/Debug/AppX/Stensel.exe differ diff --git a/bin/x86/Debug/AppX/Stensel.xr.xml b/bin/x86/Debug/AppX/Stensel.xr.xml new file mode 100644 index 0000000..0e066a0 --- /dev/null +++ b/bin/x86/Debug/AppX/Stensel.xr.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/AppX/System.AppContext.dll b/bin/x86/Debug/AppX/System.AppContext.dll new file mode 100644 index 0000000..dc03e24 Binary files /dev/null and b/bin/x86/Debug/AppX/System.AppContext.dll differ diff --git a/bin/x86/Debug/AppX/System.Buffers.dll b/bin/x86/Debug/AppX/System.Buffers.dll new file mode 100644 index 0000000..0688ef3 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Buffers.dll differ diff --git a/bin/x86/Debug/AppX/System.Collections.Concurrent.dll b/bin/x86/Debug/AppX/System.Collections.Concurrent.dll new file mode 100644 index 0000000..24327c2 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Collections.Concurrent.dll differ diff --git a/bin/x86/Debug/AppX/System.Collections.Immutable.dll b/bin/x86/Debug/AppX/System.Collections.Immutable.dll new file mode 100644 index 0000000..e9f8f6a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Collections.Immutable.dll differ diff --git a/bin/x86/Debug/AppX/System.Collections.NonGeneric.dll b/bin/x86/Debug/AppX/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..a962377 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Collections.NonGeneric.dll differ diff --git a/bin/x86/Debug/AppX/System.Collections.Specialized.dll b/bin/x86/Debug/AppX/System.Collections.Specialized.dll new file mode 100644 index 0000000..eea77bb Binary files /dev/null and b/bin/x86/Debug/AppX/System.Collections.Specialized.dll differ diff --git a/bin/x86/Debug/AppX/System.Collections.dll b/bin/x86/Debug/AppX/System.Collections.dll new file mode 100644 index 0000000..9eb397a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Collections.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll b/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..4a47c25 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.DataAnnotations.dll b/bin/x86/Debug/AppX/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..ddcb675 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll b/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..1460241 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.dll b/bin/x86/Debug/AppX/System.ComponentModel.dll new file mode 100644 index 0000000..6aacf6e Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.dll differ diff --git a/bin/x86/Debug/AppX/System.Core.dll b/bin/x86/Debug/AppX/System.Core.dll new file mode 100644 index 0000000..e23c9a9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Core.dll differ diff --git a/bin/x86/Debug/AppX/System.Data.Common.dll b/bin/x86/Debug/AppX/System.Data.Common.dll new file mode 100644 index 0000000..df9fcaa Binary files /dev/null and b/bin/x86/Debug/AppX/System.Data.Common.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.Contracts.dll b/bin/x86/Debug/AppX/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..5bdd5c1 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Contracts.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.Debug.dll b/bin/x86/Debug/AppX/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..9eedf59 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Debug.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.DiagnosticSource.dll b/bin/x86/Debug/AppX/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bad2393 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll b/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..c8c0e94 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll b/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..d8960ae Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll b/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..af29927 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll differ diff --git a/bin/x86/Debug/AppX/System.Dynamic.Runtime.dll b/bin/x86/Debug/AppX/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..c811b00 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Dynamic.Runtime.dll differ diff --git a/bin/x86/Debug/AppX/System.Globalization.Calendars.dll b/bin/x86/Debug/AppX/System.Globalization.Calendars.dll new file mode 100644 index 0000000..65fa3aa Binary files /dev/null and b/bin/x86/Debug/AppX/System.Globalization.Calendars.dll differ diff --git a/bin/x86/Debug/AppX/System.Globalization.Extensions.dll b/bin/x86/Debug/AppX/System.Globalization.Extensions.dll new file mode 100644 index 0000000..cb6045e Binary files /dev/null and b/bin/x86/Debug/AppX/System.Globalization.Extensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Globalization.dll b/bin/x86/Debug/AppX/System.Globalization.dll new file mode 100644 index 0000000..0777675 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Globalization.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.Compression.ZipFile.dll b/bin/x86/Debug/AppX/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..9a31a0b Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.Compression.ZipFile.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.Compression.dll b/bin/x86/Debug/AppX/System.IO.Compression.dll new file mode 100644 index 0000000..14d8f9d Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.Compression.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.FileSystem.Primitives.dll b/bin/x86/Debug/AppX/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d5b9bf4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.FileSystem.dll b/bin/x86/Debug/AppX/System.IO.FileSystem.dll new file mode 100644 index 0000000..b05d71f Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.FileSystem.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll b/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..d5b19b6 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.UnmanagedMemoryStream.dll b/bin/x86/Debug/AppX/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..197e7f9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.dll b/bin/x86/Debug/AppX/System.IO.dll new file mode 100644 index 0000000..0e5a8e3 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.dll differ diff --git a/bin/x86/Debug/AppX/System.Linq.Expressions.dll b/bin/x86/Debug/AppX/System.Linq.Expressions.dll new file mode 100644 index 0000000..0744cdc Binary files /dev/null and b/bin/x86/Debug/AppX/System.Linq.Expressions.dll differ diff --git a/bin/x86/Debug/AppX/System.Linq.Parallel.dll b/bin/x86/Debug/AppX/System.Linq.Parallel.dll new file mode 100644 index 0000000..0d67970 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Linq.Parallel.dll differ diff --git a/bin/x86/Debug/AppX/System.Linq.Queryable.dll b/bin/x86/Debug/AppX/System.Linq.Queryable.dll new file mode 100644 index 0000000..b297aa2 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Linq.Queryable.dll differ diff --git a/bin/x86/Debug/AppX/System.Linq.dll b/bin/x86/Debug/AppX/System.Linq.dll new file mode 100644 index 0000000..35ff442 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Linq.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Http.Rtc.dll b/bin/x86/Debug/AppX/System.Net.Http.Rtc.dll new file mode 100644 index 0000000..7ba218d Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Http.Rtc.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Http.dll b/bin/x86/Debug/AppX/System.Net.Http.dll new file mode 100644 index 0000000..ffb8e60 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Http.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.NameResolution.dll b/bin/x86/Debug/AppX/System.Net.NameResolution.dll new file mode 100644 index 0000000..2cb4208 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.NameResolution.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll b/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..fded237 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Primitives.dll b/bin/x86/Debug/AppX/System.Net.Primitives.dll new file mode 100644 index 0000000..69f794f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Requests.dll b/bin/x86/Debug/AppX/System.Net.Requests.dll new file mode 100644 index 0000000..1367e78 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Requests.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Sockets.dll b/bin/x86/Debug/AppX/System.Net.Sockets.dll new file mode 100644 index 0000000..dfc8198 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Sockets.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll b/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..c566177 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.WebSockets.Client.dll b/bin/x86/Debug/AppX/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..94ea8c8 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebSockets.Client.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.WebSockets.dll b/bin/x86/Debug/AppX/System.Net.WebSockets.dll new file mode 100644 index 0000000..f2374de Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebSockets.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.dll b/bin/x86/Debug/AppX/System.Net.dll new file mode 100644 index 0000000..7cd9974 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.dll differ diff --git a/bin/x86/Debug/AppX/System.Numerics.Vectors.WindowsRuntime.dll b/bin/x86/Debug/AppX/System.Numerics.Vectors.WindowsRuntime.dll new file mode 100644 index 0000000..473f109 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Numerics.Vectors.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/AppX/System.Numerics.Vectors.dll b/bin/x86/Debug/AppX/System.Numerics.Vectors.dll new file mode 100644 index 0000000..fa383b8 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Numerics.Vectors.dll differ diff --git a/bin/x86/Debug/AppX/System.Numerics.dll b/bin/x86/Debug/AppX/System.Numerics.dll new file mode 100644 index 0000000..627156d Binary files /dev/null and b/bin/x86/Debug/AppX/System.Numerics.dll differ diff --git a/bin/x86/Debug/AppX/System.ObjectModel.dll b/bin/x86/Debug/AppX/System.ObjectModel.dll new file mode 100644 index 0000000..44c879d Binary files /dev/null and b/bin/x86/Debug/AppX/System.ObjectModel.dll differ diff --git a/bin/x86/Debug/AppX/System.Private.DataContractSerialization.dll b/bin/x86/Debug/AppX/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..3ae4cca Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.DataContractSerialization.dll differ diff --git a/bin/x86/Debug/AppX/System.Private.ServiceModel.dll b/bin/x86/Debug/AppX/System.Private.ServiceModel.dll new file mode 100644 index 0000000..7f8e41c Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.ServiceModel.dll differ diff --git a/bin/x86/Debug/AppX/System.Private.Uri.dll b/bin/x86/Debug/AppX/System.Private.Uri.dll new file mode 100644 index 0000000..f8eeaab Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.Uri.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Context.dll b/bin/x86/Debug/AppX/System.Reflection.Context.dll new file mode 100644 index 0000000..564e02e Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Context.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.DispatchProxy.dll b/bin/x86/Debug/AppX/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..b16c58a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.DispatchProxy.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Emit.ILGeneration.dll b/bin/x86/Debug/AppX/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..559fc21 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Emit.Lightweight.dll b/bin/x86/Debug/AppX/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..fa31624 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Emit.dll b/bin/x86/Debug/AppX/System.Reflection.Emit.dll new file mode 100644 index 0000000..18a32d9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Emit.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Extensions.dll b/bin/x86/Debug/AppX/System.Reflection.Extensions.dll new file mode 100644 index 0000000..083d704 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Extensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Metadata.dll b/bin/x86/Debug/AppX/System.Reflection.Metadata.dll new file mode 100644 index 0000000..accf84d Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Metadata.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.Primitives.dll b/bin/x86/Debug/AppX/System.Reflection.Primitives.dll new file mode 100644 index 0000000..b52f853 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.TypeExtensions.dll b/bin/x86/Debug/AppX/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..e3e673a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.TypeExtensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Reflection.dll b/bin/x86/Debug/AppX/System.Reflection.dll new file mode 100644 index 0000000..642b130 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.dll differ diff --git a/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll b/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..741d819 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Extensions.dll b/bin/x86/Debug/AppX/System.Runtime.Extensions.dll new file mode 100644 index 0000000..2ff89fb Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Extensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Handles.dll b/bin/x86/Debug/AppX/System.Runtime.Handles.dll new file mode 100644 index 0000000..da8e08c Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Handles.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.InteropServices.WindowsRuntime.dll b/bin/x86/Debug/AppX/System.Runtime.InteropServices.WindowsRuntime.dll new file mode 100644 index 0000000..b3c6ab4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.InteropServices.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.InteropServices.dll b/bin/x86/Debug/AppX/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..6f8cedf Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.InteropServices.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Numerics.dll b/bin/x86/Debug/AppX/System.Runtime.Numerics.dll new file mode 100644 index 0000000..0d196f4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Numerics.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Serialization.Json.dll b/bin/x86/Debug/AppX/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..f5233ff Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Serialization.Json.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Serialization.Primitives.dll b/bin/x86/Debug/AppX/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7cbc843 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Serialization.Xml.dll b/bin/x86/Debug/AppX/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..70e5394 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.Serialization.dll b/bin/x86/Debug/AppX/System.Runtime.Serialization.dll new file mode 100644 index 0000000..282fbd4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Serialization.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.UI.Xaml.dll b/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.UI.Xaml.dll new file mode 100644 index 0000000..8ec74c2 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.UI.Xaml.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.dll b/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.dll new file mode 100644 index 0000000..ccb18b5 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.dll b/bin/x86/Debug/AppX/System.Runtime.dll new file mode 100644 index 0000000..3ede743 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Claims.dll b/bin/x86/Debug/AppX/System.Security.Claims.dll new file mode 100644 index 0000000..e4c14aa Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Claims.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Cryptography.Algorithms.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..bfaf55f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Cryptography.Cng.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..07c412a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.Cng.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Cryptography.Encoding.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..e8ccf99 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Cryptography.Primitives.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..8ea0c6b Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Cryptography.X509Certificates.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..448307d Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.Principal.dll b/bin/x86/Debug/AppX/System.Security.Principal.dll new file mode 100644 index 0000000..b721770 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Principal.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.Duplex.dll b/bin/x86/Debug/AppX/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..2e983c0 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.Duplex.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.Http.dll b/bin/x86/Debug/AppX/System.ServiceModel.Http.dll new file mode 100644 index 0000000..a13d07d Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.Http.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.NetTcp.dll b/bin/x86/Debug/AppX/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..4172a45 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.NetTcp.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.Primitives.dll b/bin/x86/Debug/AppX/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..d9c2134 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.Security.dll b/bin/x86/Debug/AppX/System.ServiceModel.Security.dll new file mode 100644 index 0000000..c9283e1 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.Security.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.Web.dll b/bin/x86/Debug/AppX/System.ServiceModel.Web.dll new file mode 100644 index 0000000..646ffac Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.Web.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceModel.dll b/bin/x86/Debug/AppX/System.ServiceModel.dll new file mode 100644 index 0000000..0a90823 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.dll differ diff --git a/bin/x86/Debug/AppX/System.Text.Encoding.CodePages.dll b/bin/x86/Debug/AppX/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..d87d287 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Text.Encoding.CodePages.dll differ diff --git a/bin/x86/Debug/AppX/System.Text.Encoding.Extensions.dll b/bin/x86/Debug/AppX/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..15fdff7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Text.Encoding.Extensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Text.Encoding.dll b/bin/x86/Debug/AppX/System.Text.Encoding.dll new file mode 100644 index 0000000..6d08bdd Binary files /dev/null and b/bin/x86/Debug/AppX/System.Text.Encoding.dll differ diff --git a/bin/x86/Debug/AppX/System.Text.RegularExpressions.dll b/bin/x86/Debug/AppX/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..befbd29 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Text.RegularExpressions.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Overlapped.dll b/bin/x86/Debug/AppX/System.Threading.Overlapped.dll new file mode 100644 index 0000000..a838f37 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Overlapped.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Tasks.Dataflow.dll b/bin/x86/Debug/AppX/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..1e51bc0 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Tasks.Extensions.dll b/bin/x86/Debug/AppX/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..42a11c8 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Tasks.Parallel.dll b/bin/x86/Debug/AppX/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..a975480 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Tasks.dll b/bin/x86/Debug/AppX/System.Threading.Tasks.dll new file mode 100644 index 0000000..3acea8a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Tasks.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Timer.dll b/bin/x86/Debug/AppX/System.Threading.Timer.dll new file mode 100644 index 0000000..0a1e5c7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Timer.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.dll b/bin/x86/Debug/AppX/System.Threading.dll new file mode 100644 index 0000000..a87db09 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.dll differ diff --git a/bin/x86/Debug/AppX/System.Windows.dll b/bin/x86/Debug/AppX/System.Windows.dll new file mode 100644 index 0000000..7a79665 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Windows.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.Linq.dll b/bin/x86/Debug/AppX/System.Xml.Linq.dll new file mode 100644 index 0000000..447e8c4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.Linq.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.ReaderWriter.dll b/bin/x86/Debug/AppX/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..28f4e25 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.ReaderWriter.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.Serialization.dll b/bin/x86/Debug/AppX/System.Xml.Serialization.dll new file mode 100644 index 0000000..909bbac Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.Serialization.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.XDocument.dll b/bin/x86/Debug/AppX/System.Xml.XDocument.dll new file mode 100644 index 0000000..5de6dc2 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XDocument.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.XmlDocument.dll b/bin/x86/Debug/AppX/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..ae717d3 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XmlDocument.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.XmlSerializer.dll b/bin/x86/Debug/AppX/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..c53911c Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XmlSerializer.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.dll b/bin/x86/Debug/AppX/System.Xml.dll new file mode 100644 index 0000000..67102bb Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.dll differ diff --git a/bin/x86/Debug/AppX/System.dll b/bin/x86/Debug/AppX/System.dll new file mode 100644 index 0000000..cb75496 Binary files /dev/null and b/bin/x86/Debug/AppX/System.dll differ diff --git a/bin/x86/Debug/AppX/WinMetadata/Windows.winmd b/bin/x86/Debug/AppX/WinMetadata/Windows.winmd new file mode 100644 index 0000000..cb42bab Binary files /dev/null and b/bin/x86/Debug/AppX/WinMetadata/Windows.winmd differ diff --git a/bin/x86/Debug/AppX/clrcompression.dll b/bin/x86/Debug/AppX/clrcompression.dll new file mode 100644 index 0000000..89a77bd Binary files /dev/null and b/bin/x86/Debug/AppX/clrcompression.dll differ diff --git a/bin/x86/Debug/AppX/clrjit.dll b/bin/x86/Debug/AppX/clrjit.dll new file mode 100644 index 0000000..ec57c2c Binary files /dev/null and b/bin/x86/Debug/AppX/clrjit.dll differ diff --git a/bin/x86/Debug/AppX/entrypoint/Stensel.exe b/bin/x86/Debug/AppX/entrypoint/Stensel.exe new file mode 100644 index 0000000..9550deb Binary files /dev/null and b/bin/x86/Debug/AppX/entrypoint/Stensel.exe differ diff --git a/bin/x86/Debug/AppX/resources.pri b/bin/x86/Debug/AppX/resources.pri new file mode 100644 index 0000000..7738ecf Binary files /dev/null and b/bin/x86/Debug/AppX/resources.pri differ diff --git a/bin/x86/Debug/AppX/vs.appxrecipe b/bin/x86/Debug/AppX/vs.appxrecipe new file mode 100644 index 0000000..120564d --- /dev/null +++ b/bin/x86/Debug/AppX/vs.appxrecipe @@ -0,0 +1,629 @@ + + + + INFIMUS + maxhe + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + aa738db1-8a2b-4999-ad1c-c6e02e23abf5 + CN=maxhe + C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\ + + + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\AppX + ED9887DF42E11F08CEF0970C8B0F43603F865C2DDC90D253182F81121C0AA54B + aa738db1-8a2b-4999-ad1c-c6e02e23abf5_1.0.0.0_x86__s4k1df8h82830 + aa738db1-8a2b-4999-ad1c-c6e02e23abf5_s4k1df8h82830!App + aa738db1-8a2b-4999-ad1c-c6e02e23abf5 + CN=maxhe + 1.0.0.0 + + + + AppxManifest.xml + true + 2019-01-25T17:37:27.592 + + + + + entrypoint\Stensel.exe + 2019-01-25T17:37:27.153 + + + Microsoft.CSharp.dll + 2016-06-11T21:13:10.000 + + + System.ComponentModel.DataAnnotations.dll + 2016-07-01T16:10:48.000 + + + System.Core.dll + 2016-07-01T16:10:48.000 + + + System.Net.dll + 2016-07-01T16:10:48.000 + + + System.Numerics.dll + 2016-07-01T16:10:48.000 + + + System.Runtime.Serialization.dll + 2016-07-01T16:10:48.000 + + + System.ServiceModel.Web.dll + 2016-07-01T16:10:48.000 + + + System.ServiceModel.dll + 2016-07-01T16:10:48.000 + + + System.Windows.dll + 2016-07-01T16:10:48.000 + + + System.Xml.Linq.dll + 2016-07-01T16:10:48.000 + + + System.Xml.Serialization.dll + 2016-07-01T16:10:48.000 + + + System.Xml.dll + 2016-07-01T16:10:48.000 + + + System.dll + 2016-07-01T16:10:48.000 + + + Microsoft.VisualBasic.dll + 2016-06-11T21:13:10.000 + + + System.Collections.dll + 2016-06-11T21:13:24.000 + + + System.Diagnostics.Tools.dll + 2016-06-11T21:13:32.000 + + + System.Diagnostics.Tracing.dll + 2016-06-11T21:13:38.000 + + + System.Globalization.dll + 2016-06-11T21:13:38.000 + + + System.Globalization.Calendars.dll + 2016-06-11T21:13:38.000 + + + System.IO.dll + 2016-06-11T21:13:50.000 + + + System.Reflection.dll + 2016-06-11T21:14:16.000 + + + System.Reflection.Extensions.dll + 2016-06-11T21:14:14.000 + + + System.Reflection.Primitives.dll + 2016-06-11T21:14:18.000 + + + System.Resources.ResourceManager.dll + 2016-06-11T21:14:20.000 + + + System.Runtime.dll + 2016-06-11T21:14:32.000 + + + System.Runtime.Handles.dll + 2016-06-11T21:14:24.000 + + + System.Runtime.InteropServices.dll + 2016-06-11T21:14:22.000 + + + System.Text.Encoding.dll + 2016-06-11T21:14:48.000 + + + System.Text.Encoding.Extensions.dll + 2016-06-11T21:14:50.000 + + + System.Threading.Tasks.dll + 2016-06-11T21:14:54.000 + + + System.Threading.Timer.dll + 2016-06-11T21:14:58.000 + + + Microsoft.Win32.Primitives.dll + 2016-06-11T21:13:14.000 + + + System.Diagnostics.Debug.dll + 2016-06-11T21:13:26.000 + + + System.IO.FileSystem.dll + 2016-06-11T21:13:44.000 + + + System.Net.Primitives.dll + 2016-06-11T21:14:00.000 + + + System.Net.Sockets.dll + 2016-06-11T21:14:04.000 + + + System.Runtime.Extensions.dll + 2016-06-11T21:14:20.000 + + + clrjit.dll + 2016-06-13T16:27:02.000 + + + clrcompression.dll + 2016-06-13T19:51:30.000 + + + System.Private.Uri.dll + 2016-07-01T13:48:12.000 + + + System.AppContext.dll + 2016-06-11T21:13:20.000 + + + System.Buffers.dll + 2016-06-11T21:13:14.000 + + + System.Collections.Concurrent.dll + 2016-06-11T21:13:16.000 + + + System.Collections.Immutable.dll + 2016-06-11T21:13:16.000 + + + System.Collections.NonGeneric.dll + 2016-06-11T21:13:22.000 + + + System.Collections.Specialized.dll + 2016-06-11T21:13:22.000 + + + System.ComponentModel.dll + 2016-06-11T21:13:24.000 + + + System.ComponentModel.Annotations.dll + 2016-06-11T21:13:22.000 + + + System.ComponentModel.EventBasedAsync.dll + 2016-06-11T21:13:20.000 + + + System.Data.Common.dll + 2016-06-11T21:13:32.000 + + + System.Diagnostics.Contracts.dll + 2016-06-11T21:13:28.000 + + + System.Diagnostics.DiagnosticSource.dll + 2016-06-11T21:13:28.000 + + + System.Diagnostics.StackTrace.dll + 2016-07-01T13:48:16.000 + + + System.Dynamic.Runtime.dll + 2016-06-11T21:13:42.000 + + + System.Globalization.Extensions.dll + 2016-06-11T21:13:40.000 + + + System.IO.Compression.dll + 2016-07-01T13:48:16.000 + + + System.IO.Compression.ZipFile.dll + 2016-06-11T21:13:42.000 + + + System.IO.FileSystem.Primitives.dll + 2016-06-11T21:13:46.000 + + + System.IO.IsolatedStorage.dll + 2016-06-11T21:13:48.000 + + + System.IO.UnmanagedMemoryStream.dll + 2016-06-11T21:13:50.000 + + + System.Linq.dll + 2016-06-11T21:14:02.000 + + + System.Linq.Expressions.dll + 2016-06-11T21:13:54.000 + + + System.Linq.Parallel.dll + 2016-06-11T21:13:52.000 + + + System.Linq.Queryable.dll + 2016-06-11T21:13:58.000 + + + System.Net.Http.dll + 2016-06-11T21:13:58.000 + + + System.Net.Http.Rtc.dll + 2016-06-11T21:13:56.000 + + + System.Net.NameResolution.dll + 2016-06-11T21:13:58.000 + + + System.Net.NetworkInformation.dll + 2016-06-11T21:14:04.000 + + + System.Net.Requests.dll + 2016-06-11T21:14:02.000 + + + System.Net.WebHeaderCollection.dll + 2016-06-11T21:14:08.000 + + + System.Net.WebSockets.dll + 2016-06-11T21:14:08.000 + + + System.Net.WebSockets.Client.dll + 2017-11-20T13:34:00.000 + + + System.Numerics.Vectors.dll + 2016-06-11T21:14:10.000 + + + System.Numerics.Vectors.WindowsRuntime.dll + 2016-06-11T21:14:06.000 + + + System.ObjectModel.dll + 2016-06-11T21:14:10.000 + + + System.Private.DataContractSerialization.dll + 2017-02-09T12:26:02.000 + + + System.Private.ServiceModel.dll + 2018-07-19T13:45:16.000 + + + System.Reflection.Context.dll + 2016-06-11T21:14:10.000 + + + System.Reflection.DispatchProxy.dll + 2016-06-11T21:14:14.000 + + + System.Reflection.Emit.dll + 2016-06-11T21:14:16.000 + + + System.Reflection.Emit.ILGeneration.dll + 2016-06-11T21:14:14.000 + + + System.Reflection.Emit.Lightweight.dll + 2016-06-11T21:14:16.000 + + + System.Reflection.Metadata.dll + 2016-06-11T21:14:14.000 + + + System.Reflection.TypeExtensions.dll + 2016-06-11T21:14:22.000 + + + System.Runtime.InteropServices.WindowsRuntime.dll + 2016-06-11T21:14:26.000 + + + System.Runtime.Numerics.dll + 2016-06-11T21:14:30.000 + + + System.Runtime.Serialization.Json.dll + 2017-02-09T12:26:02.000 + + + System.Runtime.Serialization.Primitives.dll + 2016-06-11T21:14:32.000 + + + System.Runtime.Serialization.Xml.dll + 2017-02-09T12:26:02.000 + + + System.Runtime.WindowsRuntime.dll + 2016-06-11T21:14:36.000 + + + System.Runtime.WindowsRuntime.UI.Xaml.dll + 2016-06-11T21:14:32.000 + + + System.Security.Claims.dll + 2016-06-11T21:14:40.000 + + + System.Security.Cryptography.Algorithms.dll + 2016-06-11T21:14:42.000 + + + System.Security.Cryptography.Cng.dll + 2016-06-11T21:14:42.000 + + + System.Security.Cryptography.Encoding.dll + 2016-06-11T21:14:38.000 + + + System.Security.Cryptography.Primitives.dll + 2016-06-11T21:14:42.000 + + + System.Security.Cryptography.X509Certificates.dll + 2016-06-11T21:14:48.000 + + + System.Security.Principal.dll + 2016-06-11T21:14:46.000 + + + System.ServiceModel.Duplex.dll + 2018-07-19T13:45:20.000 + + + System.ServiceModel.Http.dll + 2018-07-19T13:45:22.000 + + + System.ServiceModel.NetTcp.dll + 2018-07-19T13:45:24.000 + + + System.ServiceModel.Primitives.dll + 2018-07-19T13:45:24.000 + + + System.ServiceModel.Security.dll + 2018-07-19T13:45:26.000 + + + System.Text.Encoding.CodePages.dll + 2016-06-11T21:14:46.000 + + + System.Text.RegularExpressions.dll + 2016-06-11T21:14:52.000 + + + System.Threading.dll + 2016-06-11T21:15:00.000 + + + System.Threading.Overlapped.dll + 2016-06-11T21:14:54.000 + + + System.Threading.Tasks.Dataflow.dll + 2016-06-11T21:14:52.000 + + + System.Threading.Tasks.Extensions.dll + 2016-06-11T21:14:52.000 + + + System.Threading.Tasks.Parallel.dll + 2016-06-11T21:14:54.000 + + + System.Xml.ReaderWriter.dll + 2016-06-11T21:15:00.000 + + + System.Xml.XDocument.dll + 2016-06-11T21:15:00.000 + + + System.Xml.XmlDocument.dll + 2016-06-11T21:15:02.000 + + + System.Xml.XmlSerializer.dll + 2016-06-11T21:15:04.000 + + + Microsoft.UI.Xaml.Markup.winmd + 2018-10-23T00:33:40.000 + + + Properties\Default.rd.xml + 2019-01-25T12:18:07.694 + + + Assets\LockScreenLogo.scale-200.png + 2019-01-18T11:34:06.670 + + + Assets\SplashScreen.scale-200.png + true + 2019-01-18T11:34:06.670 + + + Assets\Square150x150Logo.scale-200.png + true + 2019-01-18T11:34:06.670 + + + Assets\Square44x44Logo.scale-200.png + true + 2019-01-18T11:34:06.670 + + + Assets\Square44x44Logo.targetsize-24_altform-unplated.png + true + 2019-01-18T11:34:06.670 + + + Assets\StoreLogo.png + true + 2019-01-18T11:34:06.670 + + + Assets\Wide310x150Logo.scale-200.png + true + 2019-01-18T11:34:06.670 + + + Stensel.xr.xml + 2019-01-25T12:21:22.709 + + + App.xbf + 2019-01-25T17:37:26.931 + + + MainPage.xbf + 2019-01-25T17:37:26.931 + + + WinMetadata\Windows.winmd + 2018-10-22T23:44:28.000 + + + resources.pri + 2019-01-25T12:21:24.998 + + + Stensel.exe + 2019-01-25T17:37:27.589 + + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + ARM + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\ARM\Microsoft.NET.CoreRuntime.1.1.appx + + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + x64 + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\x64\Microsoft.NET.CoreRuntime.1.1.appx + + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + x86 + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\x86\Microsoft.NET.CoreRuntime.1.1.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.27023.1 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + ARM64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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/bin/x86/Debug/AppxManifest.xml b/bin/x86/Debug/AppxManifest.xml new file mode 100644 index 0000000..a40690b --- /dev/null +++ b/bin/x86/Debug/AppxManifest.xml @@ -0,0 +1,54 @@ + + + + + + + Stensel + maxhe + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + CLRHost.dll + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/Core/AppxManifest.xml b/bin/x86/Debug/Core/AppxManifest.xml new file mode 100644 index 0000000..af20e63 --- /dev/null +++ b/bin/x86/Debug/Core/AppxManifest.xml @@ -0,0 +1,56 @@ + + + + + + + Stensel + maxhe + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + Stensel.exe + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/Core/Stensel.exe b/bin/x86/Debug/Core/Stensel.exe new file mode 100644 index 0000000..f71ecd8 Binary files /dev/null and b/bin/x86/Debug/Core/Stensel.exe differ diff --git a/bin/x86/Debug/MainPage.xbf b/bin/x86/Debug/MainPage.xbf new file mode 100644 index 0000000..cd70b7a Binary files /dev/null and b/bin/x86/Debug/MainPage.xbf differ diff --git a/bin/x86/Debug/Microsoft.CSharp.dll b/bin/x86/Debug/Microsoft.CSharp.dll new file mode 100644 index 0000000..cc29bd3 Binary files /dev/null and b/bin/x86/Debug/Microsoft.CSharp.dll differ diff --git a/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd b/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd new file mode 100644 index 0000000..f0443a0 Binary files /dev/null and b/bin/x86/Debug/Microsoft.UI.Xaml.Markup.winmd differ diff --git a/bin/x86/Debug/Microsoft.VisualBasic.dll b/bin/x86/Debug/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..f04420d Binary files /dev/null and b/bin/x86/Debug/Microsoft.VisualBasic.dll differ diff --git a/bin/x86/Debug/Microsoft.Win32.Primitives.dll b/bin/x86/Debug/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..f575d8c Binary files /dev/null and b/bin/x86/Debug/Microsoft.Win32.Primitives.dll differ diff --git a/bin/x86/Debug/Stensel.build.appxrecipe b/bin/x86/Debug/Stensel.build.appxrecipe new file mode 100644 index 0000000..903e4c2 --- /dev/null +++ b/bin/x86/Debug/Stensel.build.appxrecipe @@ -0,0 +1,483 @@ + + + + INFIMUS + maxhe + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + aa738db1-8a2b-4999-ad1c-c6e02e23abf5 + CN=maxhe + C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\ + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\AppX + + + + AppxManifest.xml + true + + + + + entrypoint\Stensel.exe + + + Microsoft.CSharp.dll + + + System.ComponentModel.DataAnnotations.dll + + + System.Core.dll + + + System.Net.dll + + + System.Numerics.dll + + + System.Runtime.Serialization.dll + + + System.ServiceModel.Web.dll + + + System.ServiceModel.dll + + + System.Windows.dll + + + System.Xml.Linq.dll + + + System.Xml.Serialization.dll + + + System.Xml.dll + + + System.dll + + + Microsoft.VisualBasic.dll + + + System.Collections.dll + + + System.Diagnostics.Tools.dll + + + System.Diagnostics.Tracing.dll + + + System.Globalization.dll + + + System.Globalization.Calendars.dll + + + System.IO.dll + + + System.Reflection.dll + + + System.Reflection.Extensions.dll + + + System.Reflection.Primitives.dll + + + System.Resources.ResourceManager.dll + + + System.Runtime.dll + + + System.Runtime.Handles.dll + + + System.Runtime.InteropServices.dll + + + System.Text.Encoding.dll + + + System.Text.Encoding.Extensions.dll + + + System.Threading.Tasks.dll + + + System.Threading.Timer.dll + + + Microsoft.Win32.Primitives.dll + + + System.Diagnostics.Debug.dll + + + System.IO.FileSystem.dll + + + System.Net.Primitives.dll + + + System.Net.Sockets.dll + + + System.Runtime.Extensions.dll + + + clrjit.dll + + + clrcompression.dll + + + System.Private.Uri.dll + + + System.AppContext.dll + + + System.Buffers.dll + + + System.Collections.Concurrent.dll + + + System.Collections.Immutable.dll + + + System.Collections.NonGeneric.dll + + + System.Collections.Specialized.dll + + + System.ComponentModel.dll + + + System.ComponentModel.Annotations.dll + + + System.ComponentModel.EventBasedAsync.dll + + + System.Data.Common.dll + + + System.Diagnostics.Contracts.dll + + + System.Diagnostics.DiagnosticSource.dll + + + System.Diagnostics.StackTrace.dll + + + System.Dynamic.Runtime.dll + + + System.Globalization.Extensions.dll + + + System.IO.Compression.dll + + + System.IO.Compression.ZipFile.dll + + + System.IO.FileSystem.Primitives.dll + + + System.IO.IsolatedStorage.dll + + + System.IO.UnmanagedMemoryStream.dll + + + System.Linq.dll + + + System.Linq.Expressions.dll + + + System.Linq.Parallel.dll + + + System.Linq.Queryable.dll + + + System.Net.Http.dll + + + System.Net.Http.Rtc.dll + + + System.Net.NameResolution.dll + + + System.Net.NetworkInformation.dll + + + System.Net.Requests.dll + + + System.Net.WebHeaderCollection.dll + + + System.Net.WebSockets.dll + + + System.Net.WebSockets.Client.dll + + + System.Numerics.Vectors.dll + + + System.Numerics.Vectors.WindowsRuntime.dll + + + System.ObjectModel.dll + + + System.Private.DataContractSerialization.dll + + + System.Private.ServiceModel.dll + + + System.Reflection.Context.dll + + + System.Reflection.DispatchProxy.dll + + + System.Reflection.Emit.dll + + + System.Reflection.Emit.ILGeneration.dll + + + System.Reflection.Emit.Lightweight.dll + + + System.Reflection.Metadata.dll + + + System.Reflection.TypeExtensions.dll + + + System.Runtime.InteropServices.WindowsRuntime.dll + + + System.Runtime.Numerics.dll + + + System.Runtime.Serialization.Json.dll + + + System.Runtime.Serialization.Primitives.dll + + + System.Runtime.Serialization.Xml.dll + + + System.Runtime.WindowsRuntime.dll + + + System.Runtime.WindowsRuntime.UI.Xaml.dll + + + System.Security.Claims.dll + + + System.Security.Cryptography.Algorithms.dll + + + System.Security.Cryptography.Cng.dll + + + System.Security.Cryptography.Encoding.dll + + + System.Security.Cryptography.Primitives.dll + + + System.Security.Cryptography.X509Certificates.dll + + + System.Security.Principal.dll + + + System.ServiceModel.Duplex.dll + + + System.ServiceModel.Http.dll + + + System.ServiceModel.NetTcp.dll + + + System.ServiceModel.Primitives.dll + + + System.ServiceModel.Security.dll + + + System.Text.Encoding.CodePages.dll + + + System.Text.RegularExpressions.dll + + + System.Threading.dll + + + System.Threading.Overlapped.dll + + + System.Threading.Tasks.Dataflow.dll + + + System.Threading.Tasks.Extensions.dll + + + System.Threading.Tasks.Parallel.dll + + + System.Xml.ReaderWriter.dll + + + System.Xml.XDocument.dll + + + System.Xml.XmlDocument.dll + + + System.Xml.XmlSerializer.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 + + + Stensel.xr.xml + + + App.xbf + + + MainPage.xbf + + + WinMetadata\Windows.winmd + + + resources.pri + + + Stensel.exe + + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + ARM + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\ARM\Microsoft.NET.CoreRuntime.1.1.appx + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + x64 + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\x64\Microsoft.NET.CoreRuntime.1.1.appx + + + + Microsoft.NET.CoreRuntime.1.1 + 1.1.27004.0 + x86 + Name = Microsoft.NET.CoreRuntime.1.1, MinVersion = 1.1.27004.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.NET.CoreRuntime\1.1\.\AppX\x86\Microsoft.NET.CoreRuntime.1.1.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.27023.1 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + ARM64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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.27023.1 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, 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/bin/x86/Debug/Stensel.exe b/bin/x86/Debug/Stensel.exe new file mode 100644 index 0000000..9550deb Binary files /dev/null and b/bin/x86/Debug/Stensel.exe differ diff --git a/bin/x86/Debug/Stensel.pdb b/bin/x86/Debug/Stensel.pdb new file mode 100644 index 0000000..22f7044 Binary files /dev/null and b/bin/x86/Debug/Stensel.pdb differ diff --git a/bin/x86/Debug/Stensel.xr.xml b/bin/x86/Debug/Stensel.xr.xml new file mode 100644 index 0000000..0e066a0 --- /dev/null +++ b/bin/x86/Debug/Stensel.xr.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/System.AppContext.dll b/bin/x86/Debug/System.AppContext.dll new file mode 100644 index 0000000..dc03e24 Binary files /dev/null and b/bin/x86/Debug/System.AppContext.dll differ diff --git a/bin/x86/Debug/System.Buffers.dll b/bin/x86/Debug/System.Buffers.dll new file mode 100644 index 0000000..0688ef3 Binary files /dev/null and b/bin/x86/Debug/System.Buffers.dll differ diff --git a/bin/x86/Debug/System.Collections.Concurrent.dll b/bin/x86/Debug/System.Collections.Concurrent.dll new file mode 100644 index 0000000..24327c2 Binary files /dev/null and b/bin/x86/Debug/System.Collections.Concurrent.dll differ diff --git a/bin/x86/Debug/System.Collections.Immutable.dll b/bin/x86/Debug/System.Collections.Immutable.dll new file mode 100644 index 0000000..e9f8f6a Binary files /dev/null and b/bin/x86/Debug/System.Collections.Immutable.dll differ diff --git a/bin/x86/Debug/System.Collections.NonGeneric.dll b/bin/x86/Debug/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..a962377 Binary files /dev/null and b/bin/x86/Debug/System.Collections.NonGeneric.dll differ diff --git a/bin/x86/Debug/System.Collections.Specialized.dll b/bin/x86/Debug/System.Collections.Specialized.dll new file mode 100644 index 0000000..eea77bb Binary files /dev/null and b/bin/x86/Debug/System.Collections.Specialized.dll differ diff --git a/bin/x86/Debug/System.Collections.dll b/bin/x86/Debug/System.Collections.dll new file mode 100644 index 0000000..9eb397a Binary files /dev/null and b/bin/x86/Debug/System.Collections.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.Annotations.dll b/bin/x86/Debug/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..4a47c25 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.Annotations.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.DataAnnotations.dll b/bin/x86/Debug/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..ddcb675 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll b/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..1460241 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.dll b/bin/x86/Debug/System.ComponentModel.dll new file mode 100644 index 0000000..6aacf6e Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.dll differ diff --git a/bin/x86/Debug/System.Core.dll b/bin/x86/Debug/System.Core.dll new file mode 100644 index 0000000..e23c9a9 Binary files /dev/null and b/bin/x86/Debug/System.Core.dll differ diff --git a/bin/x86/Debug/System.Data.Common.dll b/bin/x86/Debug/System.Data.Common.dll new file mode 100644 index 0000000..df9fcaa Binary files /dev/null and b/bin/x86/Debug/System.Data.Common.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.Contracts.dll b/bin/x86/Debug/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..5bdd5c1 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Contracts.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.Debug.dll b/bin/x86/Debug/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..9eedf59 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Debug.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.DiagnosticSource.dll b/bin/x86/Debug/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..bad2393 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.StackTrace.dll b/bin/x86/Debug/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..c8c0e94 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.Tools.dll b/bin/x86/Debug/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..d8960ae Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Tools.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.Tracing.dll b/bin/x86/Debug/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..af29927 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Tracing.dll differ diff --git a/bin/x86/Debug/System.Dynamic.Runtime.dll b/bin/x86/Debug/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..c811b00 Binary files /dev/null and b/bin/x86/Debug/System.Dynamic.Runtime.dll differ diff --git a/bin/x86/Debug/System.Globalization.Calendars.dll b/bin/x86/Debug/System.Globalization.Calendars.dll new file mode 100644 index 0000000..65fa3aa Binary files /dev/null and b/bin/x86/Debug/System.Globalization.Calendars.dll differ diff --git a/bin/x86/Debug/System.Globalization.Extensions.dll b/bin/x86/Debug/System.Globalization.Extensions.dll new file mode 100644 index 0000000..cb6045e Binary files /dev/null and b/bin/x86/Debug/System.Globalization.Extensions.dll differ diff --git a/bin/x86/Debug/System.Globalization.dll b/bin/x86/Debug/System.Globalization.dll new file mode 100644 index 0000000..0777675 Binary files /dev/null and b/bin/x86/Debug/System.Globalization.dll differ diff --git a/bin/x86/Debug/System.IO.Compression.ZipFile.dll b/bin/x86/Debug/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..9a31a0b Binary files /dev/null and b/bin/x86/Debug/System.IO.Compression.ZipFile.dll differ diff --git a/bin/x86/Debug/System.IO.Compression.dll b/bin/x86/Debug/System.IO.Compression.dll new file mode 100644 index 0000000..14d8f9d Binary files /dev/null and b/bin/x86/Debug/System.IO.Compression.dll differ diff --git a/bin/x86/Debug/System.IO.FileSystem.Primitives.dll b/bin/x86/Debug/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d5b9bf4 Binary files /dev/null and b/bin/x86/Debug/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/x86/Debug/System.IO.FileSystem.dll b/bin/x86/Debug/System.IO.FileSystem.dll new file mode 100644 index 0000000..b05d71f Binary files /dev/null and b/bin/x86/Debug/System.IO.FileSystem.dll differ diff --git a/bin/x86/Debug/System.IO.IsolatedStorage.dll b/bin/x86/Debug/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..d5b19b6 Binary files /dev/null and b/bin/x86/Debug/System.IO.IsolatedStorage.dll differ diff --git a/bin/x86/Debug/System.IO.UnmanagedMemoryStream.dll b/bin/x86/Debug/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..197e7f9 Binary files /dev/null and b/bin/x86/Debug/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/x86/Debug/System.IO.dll b/bin/x86/Debug/System.IO.dll new file mode 100644 index 0000000..0e5a8e3 Binary files /dev/null and b/bin/x86/Debug/System.IO.dll differ diff --git a/bin/x86/Debug/System.Linq.Expressions.dll b/bin/x86/Debug/System.Linq.Expressions.dll new file mode 100644 index 0000000..0744cdc Binary files /dev/null and b/bin/x86/Debug/System.Linq.Expressions.dll differ diff --git a/bin/x86/Debug/System.Linq.Parallel.dll b/bin/x86/Debug/System.Linq.Parallel.dll new file mode 100644 index 0000000..0d67970 Binary files /dev/null and b/bin/x86/Debug/System.Linq.Parallel.dll differ diff --git a/bin/x86/Debug/System.Linq.Queryable.dll b/bin/x86/Debug/System.Linq.Queryable.dll new file mode 100644 index 0000000..b297aa2 Binary files /dev/null and b/bin/x86/Debug/System.Linq.Queryable.dll differ diff --git a/bin/x86/Debug/System.Linq.dll b/bin/x86/Debug/System.Linq.dll new file mode 100644 index 0000000..35ff442 Binary files /dev/null and b/bin/x86/Debug/System.Linq.dll differ diff --git a/bin/x86/Debug/System.Net.Http.Rtc.dll b/bin/x86/Debug/System.Net.Http.Rtc.dll new file mode 100644 index 0000000..7ba218d Binary files /dev/null and b/bin/x86/Debug/System.Net.Http.Rtc.dll differ diff --git a/bin/x86/Debug/System.Net.Http.dll b/bin/x86/Debug/System.Net.Http.dll new file mode 100644 index 0000000..ffb8e60 Binary files /dev/null and b/bin/x86/Debug/System.Net.Http.dll differ diff --git a/bin/x86/Debug/System.Net.NameResolution.dll b/bin/x86/Debug/System.Net.NameResolution.dll new file mode 100644 index 0000000..2cb4208 Binary files /dev/null and b/bin/x86/Debug/System.Net.NameResolution.dll differ diff --git a/bin/x86/Debug/System.Net.NetworkInformation.dll b/bin/x86/Debug/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..fded237 Binary files /dev/null and b/bin/x86/Debug/System.Net.NetworkInformation.dll differ diff --git a/bin/x86/Debug/System.Net.Primitives.dll b/bin/x86/Debug/System.Net.Primitives.dll new file mode 100644 index 0000000..69f794f Binary files /dev/null and b/bin/x86/Debug/System.Net.Primitives.dll differ diff --git a/bin/x86/Debug/System.Net.Requests.dll b/bin/x86/Debug/System.Net.Requests.dll new file mode 100644 index 0000000..1367e78 Binary files /dev/null and b/bin/x86/Debug/System.Net.Requests.dll differ diff --git a/bin/x86/Debug/System.Net.Sockets.dll b/bin/x86/Debug/System.Net.Sockets.dll new file mode 100644 index 0000000..dfc8198 Binary files /dev/null and b/bin/x86/Debug/System.Net.Sockets.dll differ diff --git a/bin/x86/Debug/System.Net.WebHeaderCollection.dll b/bin/x86/Debug/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..c566177 Binary files /dev/null and b/bin/x86/Debug/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x86/Debug/System.Net.WebSockets.Client.dll b/bin/x86/Debug/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..94ea8c8 Binary files /dev/null and b/bin/x86/Debug/System.Net.WebSockets.Client.dll differ diff --git a/bin/x86/Debug/System.Net.WebSockets.dll b/bin/x86/Debug/System.Net.WebSockets.dll new file mode 100644 index 0000000..f2374de Binary files /dev/null and b/bin/x86/Debug/System.Net.WebSockets.dll differ diff --git a/bin/x86/Debug/System.Net.dll b/bin/x86/Debug/System.Net.dll new file mode 100644 index 0000000..7cd9974 Binary files /dev/null and b/bin/x86/Debug/System.Net.dll differ diff --git a/bin/x86/Debug/System.Numerics.Vectors.WindowsRuntime.dll b/bin/x86/Debug/System.Numerics.Vectors.WindowsRuntime.dll new file mode 100644 index 0000000..473f109 Binary files /dev/null and b/bin/x86/Debug/System.Numerics.Vectors.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/System.Numerics.Vectors.dll b/bin/x86/Debug/System.Numerics.Vectors.dll new file mode 100644 index 0000000..fa383b8 Binary files /dev/null and b/bin/x86/Debug/System.Numerics.Vectors.dll differ diff --git a/bin/x86/Debug/System.Numerics.dll b/bin/x86/Debug/System.Numerics.dll new file mode 100644 index 0000000..627156d Binary files /dev/null and b/bin/x86/Debug/System.Numerics.dll differ diff --git a/bin/x86/Debug/System.ObjectModel.dll b/bin/x86/Debug/System.ObjectModel.dll new file mode 100644 index 0000000..44c879d Binary files /dev/null and b/bin/x86/Debug/System.ObjectModel.dll differ diff --git a/bin/x86/Debug/System.Private.DataContractSerialization.dll b/bin/x86/Debug/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..3ae4cca Binary files /dev/null and b/bin/x86/Debug/System.Private.DataContractSerialization.dll differ diff --git a/bin/x86/Debug/System.Private.ServiceModel.dll b/bin/x86/Debug/System.Private.ServiceModel.dll new file mode 100644 index 0000000..7f8e41c Binary files /dev/null and b/bin/x86/Debug/System.Private.ServiceModel.dll differ diff --git a/bin/x86/Debug/System.Private.Uri.dll b/bin/x86/Debug/System.Private.Uri.dll new file mode 100644 index 0000000..f8eeaab Binary files /dev/null and b/bin/x86/Debug/System.Private.Uri.dll differ diff --git a/bin/x86/Debug/System.Reflection.Context.dll b/bin/x86/Debug/System.Reflection.Context.dll new file mode 100644 index 0000000..564e02e Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Context.dll differ diff --git a/bin/x86/Debug/System.Reflection.DispatchProxy.dll b/bin/x86/Debug/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..b16c58a Binary files /dev/null and b/bin/x86/Debug/System.Reflection.DispatchProxy.dll differ diff --git a/bin/x86/Debug/System.Reflection.Emit.ILGeneration.dll b/bin/x86/Debug/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..559fc21 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/x86/Debug/System.Reflection.Emit.Lightweight.dll b/bin/x86/Debug/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..fa31624 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/x86/Debug/System.Reflection.Emit.dll b/bin/x86/Debug/System.Reflection.Emit.dll new file mode 100644 index 0000000..18a32d9 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Emit.dll differ diff --git a/bin/x86/Debug/System.Reflection.Extensions.dll b/bin/x86/Debug/System.Reflection.Extensions.dll new file mode 100644 index 0000000..083d704 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Extensions.dll differ diff --git a/bin/x86/Debug/System.Reflection.Metadata.dll b/bin/x86/Debug/System.Reflection.Metadata.dll new file mode 100644 index 0000000..accf84d Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Metadata.dll differ diff --git a/bin/x86/Debug/System.Reflection.Primitives.dll b/bin/x86/Debug/System.Reflection.Primitives.dll new file mode 100644 index 0000000..b52f853 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.Primitives.dll differ diff --git a/bin/x86/Debug/System.Reflection.TypeExtensions.dll b/bin/x86/Debug/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..e3e673a Binary files /dev/null and b/bin/x86/Debug/System.Reflection.TypeExtensions.dll differ diff --git a/bin/x86/Debug/System.Reflection.dll b/bin/x86/Debug/System.Reflection.dll new file mode 100644 index 0000000..642b130 Binary files /dev/null and b/bin/x86/Debug/System.Reflection.dll differ diff --git a/bin/x86/Debug/System.Resources.ResourceManager.dll b/bin/x86/Debug/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..741d819 Binary files /dev/null and b/bin/x86/Debug/System.Resources.ResourceManager.dll differ diff --git a/bin/x86/Debug/System.Runtime.Extensions.dll b/bin/x86/Debug/System.Runtime.Extensions.dll new file mode 100644 index 0000000..2ff89fb Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Extensions.dll differ diff --git a/bin/x86/Debug/System.Runtime.Handles.dll b/bin/x86/Debug/System.Runtime.Handles.dll new file mode 100644 index 0000000..da8e08c Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Handles.dll differ diff --git a/bin/x86/Debug/System.Runtime.InteropServices.WindowsRuntime.dll b/bin/x86/Debug/System.Runtime.InteropServices.WindowsRuntime.dll new file mode 100644 index 0000000..b3c6ab4 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.InteropServices.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/System.Runtime.InteropServices.dll b/bin/x86/Debug/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..6f8cedf Binary files /dev/null and b/bin/x86/Debug/System.Runtime.InteropServices.dll differ diff --git a/bin/x86/Debug/System.Runtime.Numerics.dll b/bin/x86/Debug/System.Runtime.Numerics.dll new file mode 100644 index 0000000..0d196f4 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Numerics.dll differ diff --git a/bin/x86/Debug/System.Runtime.Serialization.Json.dll b/bin/x86/Debug/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..f5233ff Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Serialization.Json.dll differ diff --git a/bin/x86/Debug/System.Runtime.Serialization.Primitives.dll b/bin/x86/Debug/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7cbc843 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/x86/Debug/System.Runtime.Serialization.Xml.dll b/bin/x86/Debug/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..70e5394 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/x86/Debug/System.Runtime.Serialization.dll b/bin/x86/Debug/System.Runtime.Serialization.dll new file mode 100644 index 0000000..282fbd4 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Serialization.dll differ diff --git a/bin/x86/Debug/System.Runtime.WindowsRuntime.UI.Xaml.dll b/bin/x86/Debug/System.Runtime.WindowsRuntime.UI.Xaml.dll new file mode 100644 index 0000000..8ec74c2 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.WindowsRuntime.UI.Xaml.dll differ diff --git a/bin/x86/Debug/System.Runtime.WindowsRuntime.dll b/bin/x86/Debug/System.Runtime.WindowsRuntime.dll new file mode 100644 index 0000000..ccb18b5 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.WindowsRuntime.dll differ diff --git a/bin/x86/Debug/System.Runtime.dll b/bin/x86/Debug/System.Runtime.dll new file mode 100644 index 0000000..3ede743 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.dll differ diff --git a/bin/x86/Debug/System.Security.Claims.dll b/bin/x86/Debug/System.Security.Claims.dll new file mode 100644 index 0000000..e4c14aa Binary files /dev/null and b/bin/x86/Debug/System.Security.Claims.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.Algorithms.dll b/bin/x86/Debug/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..bfaf55f Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.Cng.dll b/bin/x86/Debug/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..07c412a Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Cng.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.Encoding.dll b/bin/x86/Debug/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..e8ccf99 Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.Primitives.dll b/bin/x86/Debug/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..8ea0c6b Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.X509Certificates.dll b/bin/x86/Debug/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..448307d Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/x86/Debug/System.Security.Principal.dll b/bin/x86/Debug/System.Security.Principal.dll new file mode 100644 index 0000000..b721770 Binary files /dev/null and b/bin/x86/Debug/System.Security.Principal.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.Duplex.dll b/bin/x86/Debug/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..2e983c0 Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.Duplex.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.Http.dll b/bin/x86/Debug/System.ServiceModel.Http.dll new file mode 100644 index 0000000..a13d07d Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.Http.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.NetTcp.dll b/bin/x86/Debug/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..4172a45 Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.NetTcp.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.Primitives.dll b/bin/x86/Debug/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..d9c2134 Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.Primitives.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.Security.dll b/bin/x86/Debug/System.ServiceModel.Security.dll new file mode 100644 index 0000000..c9283e1 Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.Security.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.Web.dll b/bin/x86/Debug/System.ServiceModel.Web.dll new file mode 100644 index 0000000..646ffac Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.Web.dll differ diff --git a/bin/x86/Debug/System.ServiceModel.dll b/bin/x86/Debug/System.ServiceModel.dll new file mode 100644 index 0000000..0a90823 Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.dll differ diff --git a/bin/x86/Debug/System.Text.Encoding.CodePages.dll b/bin/x86/Debug/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..d87d287 Binary files /dev/null and b/bin/x86/Debug/System.Text.Encoding.CodePages.dll differ diff --git a/bin/x86/Debug/System.Text.Encoding.Extensions.dll b/bin/x86/Debug/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..15fdff7 Binary files /dev/null and b/bin/x86/Debug/System.Text.Encoding.Extensions.dll differ diff --git a/bin/x86/Debug/System.Text.Encoding.dll b/bin/x86/Debug/System.Text.Encoding.dll new file mode 100644 index 0000000..6d08bdd Binary files /dev/null and b/bin/x86/Debug/System.Text.Encoding.dll differ diff --git a/bin/x86/Debug/System.Text.RegularExpressions.dll b/bin/x86/Debug/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..befbd29 Binary files /dev/null and b/bin/x86/Debug/System.Text.RegularExpressions.dll differ diff --git a/bin/x86/Debug/System.Threading.Overlapped.dll b/bin/x86/Debug/System.Threading.Overlapped.dll new file mode 100644 index 0000000..a838f37 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Overlapped.dll differ diff --git a/bin/x86/Debug/System.Threading.Tasks.Dataflow.dll b/bin/x86/Debug/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..1e51bc0 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/x86/Debug/System.Threading.Tasks.Extensions.dll b/bin/x86/Debug/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..42a11c8 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/x86/Debug/System.Threading.Tasks.Parallel.dll b/bin/x86/Debug/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..a975480 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/x86/Debug/System.Threading.Tasks.dll b/bin/x86/Debug/System.Threading.Tasks.dll new file mode 100644 index 0000000..3acea8a Binary files /dev/null and b/bin/x86/Debug/System.Threading.Tasks.dll differ diff --git a/bin/x86/Debug/System.Threading.Timer.dll b/bin/x86/Debug/System.Threading.Timer.dll new file mode 100644 index 0000000..0a1e5c7 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Timer.dll differ diff --git a/bin/x86/Debug/System.Threading.dll b/bin/x86/Debug/System.Threading.dll new file mode 100644 index 0000000..a87db09 Binary files /dev/null and b/bin/x86/Debug/System.Threading.dll differ diff --git a/bin/x86/Debug/System.Windows.dll b/bin/x86/Debug/System.Windows.dll new file mode 100644 index 0000000..7a79665 Binary files /dev/null and b/bin/x86/Debug/System.Windows.dll differ diff --git a/bin/x86/Debug/System.Xml.Linq.dll b/bin/x86/Debug/System.Xml.Linq.dll new file mode 100644 index 0000000..447e8c4 Binary files /dev/null and b/bin/x86/Debug/System.Xml.Linq.dll differ diff --git a/bin/x86/Debug/System.Xml.ReaderWriter.dll b/bin/x86/Debug/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..28f4e25 Binary files /dev/null and b/bin/x86/Debug/System.Xml.ReaderWriter.dll differ diff --git a/bin/x86/Debug/System.Xml.Serialization.dll b/bin/x86/Debug/System.Xml.Serialization.dll new file mode 100644 index 0000000..909bbac Binary files /dev/null and b/bin/x86/Debug/System.Xml.Serialization.dll differ diff --git a/bin/x86/Debug/System.Xml.XDocument.dll b/bin/x86/Debug/System.Xml.XDocument.dll new file mode 100644 index 0000000..5de6dc2 Binary files /dev/null and b/bin/x86/Debug/System.Xml.XDocument.dll differ diff --git a/bin/x86/Debug/System.Xml.XmlDocument.dll b/bin/x86/Debug/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..ae717d3 Binary files /dev/null and b/bin/x86/Debug/System.Xml.XmlDocument.dll differ diff --git a/bin/x86/Debug/System.Xml.XmlSerializer.dll b/bin/x86/Debug/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..c53911c Binary files /dev/null and b/bin/x86/Debug/System.Xml.XmlSerializer.dll differ diff --git a/bin/x86/Debug/System.Xml.dll b/bin/x86/Debug/System.Xml.dll new file mode 100644 index 0000000..67102bb Binary files /dev/null and b/bin/x86/Debug/System.Xml.dll differ diff --git a/bin/x86/Debug/System.dll b/bin/x86/Debug/System.dll new file mode 100644 index 0000000..cb75496 Binary files /dev/null and b/bin/x86/Debug/System.dll differ diff --git a/bin/x86/Debug/clrcompression.dll b/bin/x86/Debug/clrcompression.dll new file mode 100644 index 0000000..89a77bd Binary files /dev/null and b/bin/x86/Debug/clrcompression.dll differ diff --git a/bin/x86/Debug/clrjit.dll b/bin/x86/Debug/clrjit.dll new file mode 100644 index 0000000..ec57c2c Binary files /dev/null and b/bin/x86/Debug/clrjit.dll differ diff --git a/bin/x86/Debug/resources.pri b/bin/x86/Debug/resources.pri new file mode 100644 index 0000000..7738ecf Binary files /dev/null and b/bin/x86/Debug/resources.pri differ diff --git a/obj/ARM/Debug/App.g.cs b/obj/ARM/Debug/App.g.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..9d891bf Binary files /dev/null and b/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/ARM/Debug/Stensel.csproj.CoreCompileInputs.cache b/obj/ARM/Debug/Stensel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e142525 --- /dev/null +++ b/obj/ARM/Debug/Stensel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ae6a71512f419e677fb2a2168a44569552452c18 diff --git a/obj/ARM/Debug/Stensel.csprojAssemblyReference.cache b/obj/ARM/Debug/Stensel.csprojAssemblyReference.cache new file mode 100644 index 0000000..a1711b8 Binary files /dev/null and b/obj/ARM/Debug/Stensel.csprojAssemblyReference.cache differ diff --git a/obj/ARM/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/obj/ARM/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/ARM/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/obj/ARM/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/ARM/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/obj/ARM/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/ARM/Debug/XamlSaveStateFile.xml b/obj/ARM/Debug/XamlSaveStateFile.xml new file mode 100644 index 0000000..a136324 --- /dev/null +++ b/obj/ARM/Debug/XamlSaveStateFile.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/obj/Stensel.csproj.nuget.cache b/obj/Stensel.csproj.nuget.cache new file mode 100644 index 0000000..8358d2e --- /dev/null +++ b/obj/Stensel.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "9kNViSRzzW2Kwuuvpey8LwGJarApwYki2N+WcT5XBYb9JLu3MKA5Vj7TujQFVAbyAXeYOAHnI7rxTL0a0ADSLA==", + "success": true +} \ No newline at end of file diff --git a/obj/Stensel.csproj.nuget.g.props b/obj/Stensel.csproj.nuget.g.props new file mode 100644 index 0000000..184382a --- /dev/null +++ b/obj/Stensel.csproj.nuget.g.props @@ -0,0 +1,28 @@ + + + + True + NuGet + C:\Users\maxhe\source\repos\Stensel\Stensel\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\maxhe\.nuget\packages\;C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\ + PackageReference + 4.9.2 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.sharedlibrary-x86\1.7.0 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.sharedlibrary-x64\1.7.0 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.sharedlibrary-arm\1.7.0 + C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.compiler\1.7.3 + + \ No newline at end of file diff --git a/obj/Stensel.csproj.nuget.g.targets b/obj/Stensel.csproj.nuget.g.targets new file mode 100644 index 0000000..5622ca8 --- /dev/null +++ b/obj/Stensel.csproj.nuget.g.targets @@ -0,0 +1,13 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..5218f58 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,27979 @@ +{ + "version": 3, + "targets": { + "UAP,Version=v10.0.15063": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "lib/netcore50/System.Core.dll": {}, + "lib/netcore50/System.Net.dll": {}, + "lib/netcore50/System.Numerics.dll": {}, + "lib/netcore50/System.Runtime.Serialization.dll": {}, + "lib/netcore50/System.ServiceModel.Web.dll": {}, + "lib/netcore50/System.ServiceModel.dll": {}, + "lib/netcore50/System.Windows.dll": {}, + "lib/netcore50/System.Xml.Linq.dll": {}, + "lib/netcore50/System.Xml.Serialization.dll": {}, + "lib/netcore50/System.Xml.dll": {}, + "lib/netcore50/System.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Core.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Net.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Numerics.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.ServiceModel.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Windows.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.Xml.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/System.dll": { + "assetType": "runtime", + "rid": "aot" + }, + "runtimes/aot/lib/netcore50/mscorlib.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.AppContext.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": { + "assetType": "runtime", + "rid": "win7" + } + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/_._": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/_._": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": { + "assetType": "runtime", + "rid": "win8-aot" + }, + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": { + "assetType": "runtime", + "rid": "win8" + } + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + }, + "runtimeTargets": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": { + "assetType": "runtime", + "rid": "win8" + } + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Threading.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtimeTargets": { + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": { + "assetType": "runtime", + "rid": "aot" + } + } + } + }, + "UAP,Version=v10.0.15063/win10-arm": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "lib/netcore50/System.Core.dll": {}, + "lib/netcore50/System.Net.dll": {}, + "lib/netcore50/System.Numerics.dll": {}, + "lib/netcore50/System.Runtime.Serialization.dll": {}, + "lib/netcore50/System.ServiceModel.Web.dll": {}, + "lib/netcore50/System.ServiceModel.dll": {}, + "lib/netcore50/System.Windows.dll": {}, + "lib/netcore50/System.Xml.Linq.dll": {}, + "lib/netcore50/System.Xml.Serialization.dll": {}, + "lib/netcore50/System.Xml.dll": {}, + "lib/netcore50/System.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.any.System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win8-arm.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll": {}, + "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll": {} + }, + "native": { + "runtimes/win8-arm/native/System.Private.CoreLib.ni.dll": {}, + "runtimes/win8-arm/native/clretwrc.dll": {}, + "runtimes/win8-arm/native/coreclr.dll": {}, + "runtimes/win8-arm/native/dbgshim.dll": {}, + "runtimes/win8-arm/native/mscordaccore.dll": {}, + "runtimes/win8-arm/native/mscordbi.dll": {}, + "runtimes/win8-arm/native/mscorlib.ni.dll": {}, + "runtimes/win8-arm/native/mscorrc.debug.dll": {}, + "runtimes/win8-arm/native/mscorrc.dll": {}, + "runtimes/win8-arm/native/sos.dll": {} + } + }, + "runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "native": { + "runtimes/win8-arm/native/clrcompression.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Collections": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tracing": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.any.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Extensions": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Primitives": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Resources.ResourceManager": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.any.System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.any.System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.any.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-arm-aot": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/aot/lib/netcore50/System.Core.dll": {}, + "runtimes/aot/lib/netcore50/System.Net.dll": {}, + "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, + "runtimes/aot/lib/netcore50/System.Windows.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.dll": {}, + "runtimes/aot/lib/netcore50/System.dll": {}, + "runtimes/aot/lib/netcore50/mscorlib.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.aot.System.Collections/4.0.10": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.aot.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.aot.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.aot.System.IO/4.1.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.IO.dll": {} + } + }, + "runtime.aot.System.Reflection/4.0.10": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.aot.System.Reflection.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.aot.System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.aot.System.Resources.ResourceManager/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.aot.System.Runtime/4.0.20": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.aot.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} + } + }, + "runtime.aot.System.Runtime.InteropServices/4.0.20": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.aot.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.aot.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.aot.System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "runtime": { + "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win8-arm-aot/lib/netstandard1.0/_._": {} + }, + "native": { + "runtimes/win8-arm-aot/native/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Collections": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tracing": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.aot.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Primitives": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Resources.ResourceManager": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.aot.System.Runtime": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.aot.System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-arm64-aot": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "lib/netcore50/System.Core.dll": {}, + "lib/netcore50/System.Net.dll": {}, + "lib/netcore50/System.Numerics.dll": {}, + "lib/netcore50/System.Runtime.Serialization.dll": {}, + "lib/netcore50/System.ServiceModel.Web.dll": {}, + "lib/netcore50/System.ServiceModel.dll": {}, + "lib/netcore50/System.Windows.dll": {}, + "lib/netcore50/System.Xml.Linq.dll": {}, + "lib/netcore50/System.Xml.Serialization.dll": {}, + "lib/netcore50/System.Xml.dll": {}, + "lib/netcore50/System.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-x64": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "dependencies": { + "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" + } + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "lib/netcore50/System.Core.dll": {}, + "lib/netcore50/System.Net.dll": {}, + "lib/netcore50/System.Numerics.dll": {}, + "lib/netcore50/System.Runtime.Serialization.dll": {}, + "lib/netcore50/System.ServiceModel.Web.dll": {}, + "lib/netcore50/System.ServiceModel.dll": {}, + "lib/netcore50/System.Windows.dll": {}, + "lib/netcore50/System.Xml.Linq.dll": {}, + "lib/netcore50/System.Xml.Serialization.dll": {}, + "lib/netcore50/System.Xml.dll": {}, + "lib/netcore50/System.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.any.System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7-x64.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrjit.dll": {} + } + }, + "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {}, + "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {} + }, + "native": { + "runtimes/win7-x64/native/System.Private.CoreLib.ni.dll": {}, + "runtimes/win7-x64/native/clretwrc.dll": {}, + "runtimes/win7-x64/native/coreclr.dll": {}, + "runtimes/win7-x64/native/dbgshim.dll": {}, + "runtimes/win7-x64/native/mscordaccore.dll": {}, + "runtimes/win7-x64/native/mscordbi.dll": {}, + "runtimes/win7-x64/native/mscorlib.ni.dll": {}, + "runtimes/win7-x64/native/mscorrc.debug.dll": {}, + "runtimes/win7-x64/native/mscorrc.dll": {}, + "runtimes/win7-x64/native/sos.dll": {} + } + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Collections": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tracing": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.any.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Extensions": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Primitives": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Resources.ResourceManager": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.any.System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.any.System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.any.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-x64-aot": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "dependencies": { + "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" + } + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/aot/lib/netcore50/System.Core.dll": {}, + "runtimes/aot/lib/netcore50/System.Net.dll": {}, + "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, + "runtimes/aot/lib/netcore50/System.Windows.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.dll": {}, + "runtimes/aot/lib/netcore50/System.dll": {}, + "runtimes/aot/lib/netcore50/mscorlib.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.aot.System.Collections/4.0.10": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.aot.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.aot.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.aot.System.IO/4.1.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.IO.dll": {} + } + }, + "runtime.aot.System.Reflection/4.0.10": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.aot.System.Reflection.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.aot.System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.aot.System.Resources.ResourceManager/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.aot.System.Runtime/4.0.20": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.aot.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} + } + }, + "runtime.aot.System.Runtime.InteropServices/4.0.20": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.aot.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.aot.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.aot.System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "runtime": { + "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll": {} + } + }, + "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "native": { + "runtimes/win7-x64-aot/native/_._": {} + } + }, + "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win7-x64-aot/lib/netstandard1.0/_._": {} + }, + "native": { + "runtimes/win7-x64-aot/native/_._": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Collections": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tracing": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.aot.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Primitives": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Resources.ResourceManager": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.aot.System.Runtime": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.aot.System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-x86": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "dependencies": { + "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" + } + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "lib/netcore50/System.Core.dll": {}, + "lib/netcore50/System.Net.dll": {}, + "lib/netcore50/System.Numerics.dll": {}, + "lib/netcore50/System.Runtime.Serialization.dll": {}, + "lib/netcore50/System.ServiceModel.Web.dll": {}, + "lib/netcore50/System.ServiceModel.dll": {}, + "lib/netcore50/System.Windows.dll": {}, + "lib/netcore50/System.Xml.Linq.dll": {}, + "lib/netcore50/System.Xml.Serialization.dll": {}, + "lib/netcore50/System.Xml.dll": {}, + "lib/netcore50/System.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.any.System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7-x86.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrjit.dll": {} + } + }, + "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {}, + "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {} + }, + "native": { + "runtimes/win7-x86/native/System.Private.CoreLib.ni.dll": {}, + "runtimes/win7-x86/native/clretwrc.dll": {}, + "runtimes/win7-x86/native/coreclr.dll": {}, + "runtimes/win7-x86/native/dbgshim.dll": {}, + "runtimes/win7-x86/native/mscordaccore.dll": {}, + "runtimes/win7-x86/native/mscordbi.dll": {}, + "runtimes/win7-x86/native/mscorlib.ni.dll": {}, + "runtimes/win7-x86/native/mscorrc.debug.dll": {}, + "runtimes/win7-x86/native/mscorrc.dll": {}, + "runtimes/win7-x86/native/sos.dll": {} + } + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Collections": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tracing": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.any.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Extensions": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Primitives": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Resources.ResourceManager": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.any.System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.any.System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.any.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0.15063/win10-x86-aot": { + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", + "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} + } + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "type": "package", + "build": { + "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, + "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} + } + }, + "Microsoft.NETCore/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.VisualBasic": "10.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.1", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.NetworkInformation": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Numerics.Vectors": "4.1.1", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "dependencies": { + "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" + } + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + }, + "compile": { + "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcore50/System.Core.dll": {}, + "ref/netcore50/System.Net.dll": {}, + "ref/netcore50/System.Numerics.dll": {}, + "ref/netcore50/System.Runtime.Serialization.dll": {}, + "ref/netcore50/System.ServiceModel.Web.dll": {}, + "ref/netcore50/System.ServiceModel.dll": {}, + "ref/netcore50/System.Windows.dll": {}, + "ref/netcore50/System.Xml.Linq.dll": {}, + "ref/netcore50/System.Xml.Serialization.dll": {}, + "ref/netcore50/System.Xml.dll": {}, + "ref/netcore50/System.dll": {}, + "ref/netcore50/mscorlib.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/aot/lib/netcore50/System.Core.dll": {}, + "runtimes/aot/lib/netcore50/System.Net.dll": {}, + "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, + "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, + "runtimes/aot/lib/netcore50/System.Windows.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, + "runtimes/aot/lib/netcore50/System.Xml.dll": {}, + "runtimes/aot/lib/netcore50/System.dll": {}, + "runtimes/aot/lib/netcore50/mscorlib.dll": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" + } + }, + "Microsoft.NETCore.Targets/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore": "5.0.2", + "Microsoft.NETCore.Portable.Compatibility": "1.0.2", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", + "Microsoft.NETCore.Targets": "1.0.2", + "Microsoft.Net.Native.Compiler": "1.7.3", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.StackTrace": "4.0.2", + "System.IO.IsolatedStorage": "4.0.1", + "System.Net.Http.Rtc": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.2", + "System.Numerics.Vectors.WindowsRuntime": "4.0.1", + "System.Reflection.Context": "4.0.1", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.Serialization.Json": "4.0.3", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.2", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", + "System.ServiceModel.Duplex": "4.0.4", + "System.ServiceModel.Http": "4.1.3", + "System.ServiceModel.NetTcp": "4.1.3", + "System.ServiceModel.Primitives": "4.1.3", + "System.ServiceModel.Security": "4.0.4", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Threading.Overlapped": "4.0.1", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.3" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "build": { + "build/Microsoft.NETCore.UniversalWindowsPlatform.props": {}, + "build/Microsoft.NetCore.UniversalWindowsPlatform.targets": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.aot.System.Collections/4.0.10": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Collections.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.aot.System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.aot.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.dll": {} + } + }, + "runtime.aot.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} + } + }, + "runtime.aot.System.IO/4.1.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.IO.dll": {} + } + }, + "runtime.aot.System.Reflection/4.0.10": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "runtime.aot.System.Reflection.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "runtime.aot.System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "runtime.aot.System.Resources.ResourceManager/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.aot.System.Runtime/4.0.20": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.dll": {} + } + }, + "runtime.aot.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} + } + }, + "runtime.aot.System.Runtime.InteropServices/4.0.20": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.aot.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.aot.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} + } + }, + "runtime.aot.System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "4.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + } + }, + "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": { + "type": "package", + "runtime": { + "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll": {} + } + }, + "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { + "type": "package", + "native": { + "runtimes/win7-x86-aot/native/_._": {} + } + }, + "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/win7-x86-aot/lib/netstandard1.0/_._": {} + }, + "native": { + "runtimes/win7-x86-aot/native/_._": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Collections": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Collections.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Diagnostics.Tracing": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Globalization.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.aot.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.aot.System.IO": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.IO.Compression/4.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.IsolatedStorage/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Expressions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Net.Http": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} + } + }, + "System.Net.NetworkInformation/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.win.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.win.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebSockets.dll": {} + } + }, + "System.Net.WebSockets.Client/4.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.1.1", + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.2", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.1.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Queryable": "4.0.1", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Net.WebSockets": "4.0.0", + "System.Net.WebSockets.Client": "4.0.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Runtime.WindowsRuntime": "4.0.11", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.win7.System.Private.Uri": "4.0.2" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection": "4.0.10" + }, + "compile": { + "ref/netcore50/System.Reflection.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Context/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/_._": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Reflection.Primitives": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Contracts": "4.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.aot.System.Resources.ResourceManager": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.aot.System.Runtime": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.win.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.aot.System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.3": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.2", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.WindowsRuntime": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netcore50/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netcore50/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Duplex/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.ServiceModel.Primitives": "4.1.3", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.1.3": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.11", + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.1.3": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Private.ServiceModel": "4.1.3", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.4": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.1.3", + "System.Runtime": "4.1.0", + "System.Runtime.Serialization.Xml": "4.1.1", + "System.ServiceModel.Primitives": "4.1.3" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.aot.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/win81/_._": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netcore50/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netcore50/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "ref/netcore50/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CSharp/4.0.1": { + "sha512": "SuvSPFxuJldijkn+ShXv63AyjmvDOMj3mIARq98WbQT5ZfqaG9XfBfDsHu66t/Zo8iNo6lrw0hTPwubbecXSEg==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Net.Native.Compiler/1.7.3": { + "sha512": "ed0kCs6Gxfw2ZGf34eqO8cwaD16Ll1FKw+jBfGevdiHqc2kTwux9yqkHwhe9WP8jzSbuZX3o4y3wMUUkz5gSeg==", + "type": "package", + "path": "microsoft.net.native.compiler/1.7.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "build/Microsoft.Net.Native.Compiler.props", + "build/Microsoft.Net.Native.Compiler.targets", + "microsoft.net.native.compiler.1.7.3.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/Packages/Microsoft.NETNative.Analyzer/1.0.0/Microsoft.NETNative.Analyzer.1.0.0.nupkg", + "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/Microsoft.NETNative.Analyzer.1.0.0.nupkg.sha512", + "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/analyzers/dotnet/cs/NativeGatekeeper.dll", + "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/install.ps1", + "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/uninstall.ps1", + "tools/Runtime/arm/CommandProvider.dll", + "tools/Runtime/arm/Microsoft.NET.Native.Runtime.1.7.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/Runtime/x64/CommandProvider.dll", + "tools/Runtime/x64/Microsoft.NET.Native.Runtime.1.7.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/Runtime/x86/CommandProvider.dll", + "tools/Runtime/x86/Microsoft.NET.Native.Runtime.1.7.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/SharedLibraryXML/Callisto.rd.xml", + "tools/SharedLibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", + "tools/SharedLibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", + "tools/SharedLibraryXML/HugeFlow.Common.rd.xml", + "tools/SharedLibraryXML/JulMar.Windows.Interactivity.rd.xml", + "tools/SharedLibraryXML/MarkedUp.rd.xml", + "tools/SharedLibraryXML/Microsoft.ApplicationInsights.rd.xml", + "tools/SharedLibraryXML/Microsoft.PlayerFramework.rd.xml", + "tools/SharedLibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", + "tools/SharedLibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", + "tools/SharedLibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", + "tools/SharedLibraryXML/MonoGame.Framework.rd.xml", + "tools/SharedLibraryXML/MyToolkit.rd.xml", + "tools/SharedLibraryXML/Newtonsoft.Json.rd.xml", + "tools/SharedLibraryXML/SharpDX.DXGI.rd.xml", + "tools/SharedLibraryXML/SharpDX.Direct2D1.rd.xml", + "tools/SharedLibraryXML/SharpDX.rd.xml", + "tools/SharedLibraryXML/System.Reactive.Core.rd.xml", + "tools/SharedLibraryXML/System.Reactive.Linq.rd.xml", + "tools/SharedLibraryXML/System.Reactive.PlatformServices.rd.xml", + "tools/SharedLibraryXML/Telerik.Core.rd.xml", + "tools/SharedLibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", + "tools/SharedLibraryXML/UnityEngine.rd.xml", + "tools/SharedLibraryXML/WinRT.Triggers.rd.xml", + "tools/SharedLibraryXML/WinRTXamlToolkit.rd.xml", + "tools/SharedLibraryXML/protobuf-net.rd.xml", + "tools/arm/etwevents.man", + "tools/arm/ilc/IlcInternals.settings.targets", + "tools/arm/ilc/IlcInternals.targets", + "tools/arm/ilc/Microsoft.Cci.dll", + "tools/arm/ilc/cs/Ilc.resources.dll", + "tools/arm/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", + "tools/arm/ilc/csc/Microsoft.CodeAnalysis.dll", + "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", + "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/arm/ilc/csc/System.AppContext.dll", + "tools/arm/ilc/csc/System.Collections.Immutable.dll", + "tools/arm/ilc/csc/System.Diagnostics.StackTrace.dll", + "tools/arm/ilc/csc/System.IO.FileSystem.Primitives.dll", + "tools/arm/ilc/csc/System.IO.FileSystem.dll", + "tools/arm/ilc/csc/System.Reflection.Metadata.dll", + "tools/arm/ilc/csc/csc.exe", + "tools/arm/ilc/csc/csc.exe.config", + "tools/arm/ilc/de/Ilc.resources.dll", + "tools/arm/ilc/es/Ilc.resources.dll", + "tools/arm/ilc/fr/Ilc.resources.dll", + "tools/arm/ilc/ilc.exe", + "tools/arm/ilc/ilc.exe.config", + "tools/arm/ilc/it/Ilc.resources.dll", + "tools/arm/ilc/ja/Ilc.resources.dll", + "tools/arm/ilc/ko/Ilc.resources.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", + "tools/arm/ilc/lib/MSCRT/ucrtbase.dll", + "tools/arm/ilc/lib/MSCRT/vcruntime140_app.dll", + "tools/arm/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", + "tools/arm/ilc/lib/McgDependencies/System.Private.MCG.dll", + "tools/arm/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/arm/ilc/lib/Native/Interop.Native.lib", + "tools/arm/ilc/lib/Native/TypeLoader.Native.lib", + "tools/arm/ilc/lib/Native/corelib.native.lib", + "tools/arm/ilc/lib/Native/pgort.lib", + "tools/arm/ilc/lib/Native/vmath.lib", + "tools/arm/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", + "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", + "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", + "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.dll", + "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.pdb", + "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.CompilerServices.dll", + "tools/arm/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/arm/ilc/lib/Private/System.Private.CoreLib.Diagnostics.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.Reflection.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.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.PortableServiceModelThunks.dll", + "tools/arm/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", + "tools/arm/ilc/lib/Private/System.Private.PortableThunks.dll", + "tools/arm/ilc/lib/Private/System.Private.PortableThunks.pdb", + "tools/arm/ilc/lib/Private/System.Private.Reflection.Augments.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.Extensibility.dll", + "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.Reflection.MissingMetadataException.dll", + "tools/arm/ilc/lib/Private/System.Private.Reflection.dll", + "tools/arm/ilc/lib/Private/System.Private.Reflection.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.Threading.AsyncCausalitySupport.dll", + "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/Runtime/mrt100_app.dll", + "tools/arm/ilc/lib/Runtime/mrt100_app.pdb", + "tools/arm/ilc/pl/Ilc.resources.dll", + "tools/arm/ilc/pt-BR/Ilc.resources.dll", + "tools/arm/ilc/ru/Ilc.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/Gatekeeper.Engine.dll", + "tools/arm/ilc/tools/Gatekeeper.exe", + "tools/arm/ilc/tools/Gatekeeper.exe.config", + "tools/arm/ilc/tools/GatekeeperConfig.xml", + "tools/arm/ilc/tools/McgCodeDom.dll", + "tools/arm/ilc/tools/McgEngine.dll", + "tools/arm/ilc/tools/MdTransform.dll", + "tools/arm/ilc/tools/MethodBodyEditor.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.NetNative.IL2IL.dll", + "tools/arm/ilc/tools/Microsoft.NetNative.Instrumentation.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/NativeFormatWriter.dll", + "tools/arm/ilc/tools/Newtonsoft.Json.dll", + "tools/arm/ilc/tools/ReducerEngine.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/TypeNameUtilities.dll", + "tools/arm/ilc/tools/WCFDispatchProxy.dll", + "tools/arm/ilc/tools/c2n.dll", + "tools/arm/ilc/tools/cs/CciExtensions.resources.dll", + "tools/arm/ilc/tools/cs/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/cs/McgEngine.resources.dll", + "tools/arm/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/cs/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/cs/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/cs/sg.resources.dll", + "tools/arm/ilc/tools/de/CciExtensions.resources.dll", + "tools/arm/ilc/tools/de/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/de/McgEngine.resources.dll", + "tools/arm/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/de/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/de/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/de/sg.resources.dll", + "tools/arm/ilc/tools/es/CciExtensions.resources.dll", + "tools/arm/ilc/tools/es/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/es/McgEngine.resources.dll", + "tools/arm/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/es/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/es/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/es/sg.resources.dll", + "tools/arm/ilc/tools/fr/CciExtensions.resources.dll", + "tools/arm/ilc/tools/fr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/fr/McgEngine.resources.dll", + "tools/arm/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/fr/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/fr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/fr/sg.resources.dll", + "tools/arm/ilc/tools/it/CciExtensions.resources.dll", + "tools/arm/ilc/tools/it/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/it/McgEngine.resources.dll", + "tools/arm/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/it/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/it/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/it/sg.resources.dll", + "tools/arm/ilc/tools/ja/CciExtensions.resources.dll", + "tools/arm/ilc/tools/ja/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/ja/McgEngine.resources.dll", + "tools/arm/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ja/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/ja/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/ja/sg.resources.dll", + "tools/arm/ilc/tools/ko/CciExtensions.resources.dll", + "tools/arm/ilc/tools/ko/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/ko/McgEngine.resources.dll", + "tools/arm/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ko/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/ko/TypeNameUtilities.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/pgocvt.exe", + "tools/arm/ilc/tools/pgodb140.dll", + "tools/arm/ilc/tools/pgomgr.exe", + "tools/arm/ilc/tools/pl/CciExtensions.resources.dll", + "tools/arm/ilc/tools/pl/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/pl/McgEngine.resources.dll", + "tools/arm/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pl/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/pl/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/pl/sg.resources.dll", + "tools/arm/ilc/tools/pt-BR/CciExtensions.resources.dll", + "tools/arm/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/pt-BR/McgEngine.resources.dll", + "tools/arm/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pt-BR/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/pt-BR/sg.resources.dll", + "tools/arm/ilc/tools/rhbind.exe", + "tools/arm/ilc/tools/ru/CciExtensions.resources.dll", + "tools/arm/ilc/tools/ru/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/ru/McgEngine.resources.dll", + "tools/arm/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ru/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/ru/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/arm/ilc/tools/tr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/tr/McgEngine.resources.dll", + "tools/arm/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/tr/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/tr/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/arm/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/zh-Hans/McgEngine.resources.dll", + "tools/arm/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hans/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/zh-Hans/sg.resources.dll", + "tools/arm/ilc/tools/zh-Hant/CciExtensions.resources.dll", + "tools/arm/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tools/zh-Hant/McgEngine.resources.dll", + "tools/arm/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hant/ReducerEngine.resources.dll", + "tools/arm/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/zh-Hant/sg.resources.dll", + "tools/arm/ilc/tr/Ilc.resources.dll", + "tools/arm/ilc/zh-Hans/Ilc.resources.dll", + "tools/arm/ilc/zh-Hant/Ilc.resources.dll", + "tools/arm/mrt100etw.dll", + "tools/x64/etwevents.man", + "tools/x64/ilc/IlcInternals.settings.targets", + "tools/x64/ilc/IlcInternals.targets", + "tools/x64/ilc/Microsoft.Cci.dll", + "tools/x64/ilc/cs/Ilc.resources.dll", + "tools/x64/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", + "tools/x64/ilc/csc/Microsoft.CodeAnalysis.dll", + "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", + "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/x64/ilc/csc/System.AppContext.dll", + "tools/x64/ilc/csc/System.Collections.Immutable.dll", + "tools/x64/ilc/csc/System.Diagnostics.StackTrace.dll", + "tools/x64/ilc/csc/System.IO.FileSystem.Primitives.dll", + "tools/x64/ilc/csc/System.IO.FileSystem.dll", + "tools/x64/ilc/csc/System.Reflection.Metadata.dll", + "tools/x64/ilc/csc/csc.exe", + "tools/x64/ilc/csc/csc.exe.config", + "tools/x64/ilc/de/Ilc.resources.dll", + "tools/x64/ilc/es/Ilc.resources.dll", + "tools/x64/ilc/fr/Ilc.resources.dll", + "tools/x64/ilc/ilc.exe", + "tools/x64/ilc/ilc.exe.config", + "tools/x64/ilc/it/Ilc.resources.dll", + "tools/x64/ilc/ja/Ilc.resources.dll", + "tools/x64/ilc/ko/Ilc.resources.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", + "tools/x64/ilc/lib/MSCRT/ucrtbase.dll", + "tools/x64/ilc/lib/MSCRT/vcruntime140_app.dll", + "tools/x64/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", + "tools/x64/ilc/lib/McgDependencies/System.Private.MCG.dll", + "tools/x64/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/x64/ilc/lib/Native/Interop.Native.lib", + "tools/x64/ilc/lib/Native/TypeLoader.Native.lib", + "tools/x64/ilc/lib/Native/corelib.native.lib", + "tools/x64/ilc/lib/Native/pgort.lib", + "tools/x64/ilc/lib/Native/vmath.lib", + "tools/x64/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", + "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", + "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", + "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.dll", + "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.pdb", + "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.CompilerServices.dll", + "tools/x64/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x64/ilc/lib/Private/System.Private.CoreLib.Diagnostics.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.Reflection.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.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.PortableServiceModelThunks.dll", + "tools/x64/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", + "tools/x64/ilc/lib/Private/System.Private.PortableThunks.dll", + "tools/x64/ilc/lib/Private/System.Private.PortableThunks.pdb", + "tools/x64/ilc/lib/Private/System.Private.Reflection.Augments.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.Extensibility.dll", + "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.Reflection.MissingMetadataException.dll", + "tools/x64/ilc/lib/Private/System.Private.Reflection.dll", + "tools/x64/ilc/lib/Private/System.Private.Reflection.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.Threading.AsyncCausalitySupport.dll", + "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/Runtime/mrt100_app.dll", + "tools/x64/ilc/lib/Runtime/mrt100_app.pdb", + "tools/x64/ilc/pl/Ilc.resources.dll", + "tools/x64/ilc/pt-BR/Ilc.resources.dll", + "tools/x64/ilc/ru/Ilc.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/Gatekeeper.Engine.dll", + "tools/x64/ilc/tools/Gatekeeper.exe", + "tools/x64/ilc/tools/Gatekeeper.exe.config", + "tools/x64/ilc/tools/GatekeeperConfig.xml", + "tools/x64/ilc/tools/McgCodeDom.dll", + "tools/x64/ilc/tools/McgEngine.dll", + "tools/x64/ilc/tools/MdTransform.dll", + "tools/x64/ilc/tools/MethodBodyEditor.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.NetNative.IL2IL.dll", + "tools/x64/ilc/tools/Microsoft.NetNative.Instrumentation.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/NativeFormatWriter.dll", + "tools/x64/ilc/tools/Newtonsoft.Json.dll", + "tools/x64/ilc/tools/ReducerEngine.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/TypeNameUtilities.dll", + "tools/x64/ilc/tools/WCFDispatchProxy.dll", + "tools/x64/ilc/tools/c2n.dll", + "tools/x64/ilc/tools/cs/CciExtensions.resources.dll", + "tools/x64/ilc/tools/cs/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/cs/McgEngine.resources.dll", + "tools/x64/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/cs/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/cs/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/cs/sg.resources.dll", + "tools/x64/ilc/tools/de/CciExtensions.resources.dll", + "tools/x64/ilc/tools/de/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/de/McgEngine.resources.dll", + "tools/x64/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/de/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/de/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/de/sg.resources.dll", + "tools/x64/ilc/tools/es/CciExtensions.resources.dll", + "tools/x64/ilc/tools/es/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/es/McgEngine.resources.dll", + "tools/x64/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/es/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/es/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/es/sg.resources.dll", + "tools/x64/ilc/tools/fr/CciExtensions.resources.dll", + "tools/x64/ilc/tools/fr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/fr/McgEngine.resources.dll", + "tools/x64/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/fr/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/fr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/fr/sg.resources.dll", + "tools/x64/ilc/tools/it/CciExtensions.resources.dll", + "tools/x64/ilc/tools/it/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/it/McgEngine.resources.dll", + "tools/x64/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/it/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/it/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/it/sg.resources.dll", + "tools/x64/ilc/tools/ja/CciExtensions.resources.dll", + "tools/x64/ilc/tools/ja/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/ja/McgEngine.resources.dll", + "tools/x64/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ja/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/ja/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/ja/sg.resources.dll", + "tools/x64/ilc/tools/ko/CciExtensions.resources.dll", + "tools/x64/ilc/tools/ko/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/ko/McgEngine.resources.dll", + "tools/x64/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ko/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/ko/TypeNameUtilities.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/pgocvt.exe", + "tools/x64/ilc/tools/pgodb140.dll", + "tools/x64/ilc/tools/pgomgr.exe", + "tools/x64/ilc/tools/pl/CciExtensions.resources.dll", + "tools/x64/ilc/tools/pl/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/pl/McgEngine.resources.dll", + "tools/x64/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pl/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/pl/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/pl/sg.resources.dll", + "tools/x64/ilc/tools/pt-BR/CciExtensions.resources.dll", + "tools/x64/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/pt-BR/McgEngine.resources.dll", + "tools/x64/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pt-BR/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/pt-BR/sg.resources.dll", + "tools/x64/ilc/tools/rhbind.exe", + "tools/x64/ilc/tools/ru/CciExtensions.resources.dll", + "tools/x64/ilc/tools/ru/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/ru/McgEngine.resources.dll", + "tools/x64/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ru/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/ru/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/x64/ilc/tools/tr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/tr/McgEngine.resources.dll", + "tools/x64/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/tr/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/tr/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/x64/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/zh-Hans/McgEngine.resources.dll", + "tools/x64/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hans/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x64/ilc/tools/zh-Hant/CciExtensions.resources.dll", + "tools/x64/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tools/zh-Hant/McgEngine.resources.dll", + "tools/x64/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hant/ReducerEngine.resources.dll", + "tools/x64/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x64/ilc/tr/Ilc.resources.dll", + "tools/x64/ilc/zh-Hans/Ilc.resources.dll", + "tools/x64/ilc/zh-Hant/Ilc.resources.dll", + "tools/x64/mrt100etw.dll", + "tools/x86/etwevents.man", + "tools/x86/ilc/IlcInternals.settings.targets", + "tools/x86/ilc/IlcInternals.targets", + "tools/x86/ilc/Microsoft.Cci.dll", + "tools/x86/ilc/cs/Ilc.resources.dll", + "tools/x86/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", + "tools/x86/ilc/csc/Microsoft.CodeAnalysis.dll", + "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", + "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/x86/ilc/csc/System.AppContext.dll", + "tools/x86/ilc/csc/System.Collections.Immutable.dll", + "tools/x86/ilc/csc/System.Diagnostics.StackTrace.dll", + "tools/x86/ilc/csc/System.IO.FileSystem.Primitives.dll", + "tools/x86/ilc/csc/System.IO.FileSystem.dll", + "tools/x86/ilc/csc/System.Reflection.Metadata.dll", + "tools/x86/ilc/csc/csc.exe", + "tools/x86/ilc/csc/csc.exe.config", + "tools/x86/ilc/de/Ilc.resources.dll", + "tools/x86/ilc/es/Ilc.resources.dll", + "tools/x86/ilc/fr/Ilc.resources.dll", + "tools/x86/ilc/ilc.exe", + "tools/x86/ilc/ilc.exe.config", + "tools/x86/ilc/it/Ilc.resources.dll", + "tools/x86/ilc/ja/Ilc.resources.dll", + "tools/x86/ilc/ko/Ilc.resources.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", + "tools/x86/ilc/lib/MSCRT/ucrtbase.dll", + "tools/x86/ilc/lib/MSCRT/vcruntime140_app.dll", + "tools/x86/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", + "tools/x86/ilc/lib/McgDependencies/System.Private.MCG.dll", + "tools/x86/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/x86/ilc/lib/Native/Interop.Native.lib", + "tools/x86/ilc/lib/Native/TypeLoader.Native.lib", + "tools/x86/ilc/lib/Native/corelib.native.lib", + "tools/x86/ilc/lib/Native/pgort.lib", + "tools/x86/ilc/lib/Native/vmath.lib", + "tools/x86/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", + "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", + "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", + "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.dll", + "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.pdb", + "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.CompilerServices.dll", + "tools/x86/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x86/ilc/lib/Private/System.Private.CoreLib.Diagnostics.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.Reflection.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.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.PortableServiceModelThunks.dll", + "tools/x86/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", + "tools/x86/ilc/lib/Private/System.Private.PortableThunks.dll", + "tools/x86/ilc/lib/Private/System.Private.PortableThunks.pdb", + "tools/x86/ilc/lib/Private/System.Private.Reflection.Augments.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.Extensibility.dll", + "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.Reflection.MissingMetadataException.dll", + "tools/x86/ilc/lib/Private/System.Private.Reflection.dll", + "tools/x86/ilc/lib/Private/System.Private.Reflection.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.Threading.AsyncCausalitySupport.dll", + "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/Runtime/mrt100_app.dll", + "tools/x86/ilc/lib/Runtime/mrt100_app.pdb", + "tools/x86/ilc/pl/Ilc.resources.dll", + "tools/x86/ilc/pt-BR/Ilc.resources.dll", + "tools/x86/ilc/ru/Ilc.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/Gatekeeper.Engine.dll", + "tools/x86/ilc/tools/Gatekeeper.exe", + "tools/x86/ilc/tools/Gatekeeper.exe.config", + "tools/x86/ilc/tools/GatekeeperConfig.xml", + "tools/x86/ilc/tools/McgCodeDom.dll", + "tools/x86/ilc/tools/McgEngine.dll", + "tools/x86/ilc/tools/MdTransform.dll", + "tools/x86/ilc/tools/MethodBodyEditor.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.NetNative.IL2IL.dll", + "tools/x86/ilc/tools/Microsoft.NetNative.Instrumentation.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/NativeFormatWriter.dll", + "tools/x86/ilc/tools/Newtonsoft.Json.dll", + "tools/x86/ilc/tools/ReducerEngine.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/TypeNameUtilities.dll", + "tools/x86/ilc/tools/WCFDispatchProxy.dll", + "tools/x86/ilc/tools/c2n.dll", + "tools/x86/ilc/tools/cs/CciExtensions.resources.dll", + "tools/x86/ilc/tools/cs/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/cs/McgEngine.resources.dll", + "tools/x86/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/cs/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/cs/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/cs/sg.resources.dll", + "tools/x86/ilc/tools/de/CciExtensions.resources.dll", + "tools/x86/ilc/tools/de/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/de/McgEngine.resources.dll", + "tools/x86/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/de/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/de/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/de/sg.resources.dll", + "tools/x86/ilc/tools/es/CciExtensions.resources.dll", + "tools/x86/ilc/tools/es/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/es/McgEngine.resources.dll", + "tools/x86/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/es/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/es/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/es/sg.resources.dll", + "tools/x86/ilc/tools/fr/CciExtensions.resources.dll", + "tools/x86/ilc/tools/fr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/fr/McgEngine.resources.dll", + "tools/x86/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/fr/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/fr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/fr/sg.resources.dll", + "tools/x86/ilc/tools/it/CciExtensions.resources.dll", + "tools/x86/ilc/tools/it/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/it/McgEngine.resources.dll", + "tools/x86/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/it/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/it/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/it/sg.resources.dll", + "tools/x86/ilc/tools/ja/CciExtensions.resources.dll", + "tools/x86/ilc/tools/ja/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/ja/McgEngine.resources.dll", + "tools/x86/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ja/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/ja/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/ja/sg.resources.dll", + "tools/x86/ilc/tools/ko/CciExtensions.resources.dll", + "tools/x86/ilc/tools/ko/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/ko/McgEngine.resources.dll", + "tools/x86/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ko/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/ko/TypeNameUtilities.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/pgocvt.exe", + "tools/x86/ilc/tools/pgodb140.dll", + "tools/x86/ilc/tools/pgomgr.exe", + "tools/x86/ilc/tools/pl/CciExtensions.resources.dll", + "tools/x86/ilc/tools/pl/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/pl/McgEngine.resources.dll", + "tools/x86/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pl/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/pl/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/pl/sg.resources.dll", + "tools/x86/ilc/tools/pt-BR/CciExtensions.resources.dll", + "tools/x86/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/pt-BR/McgEngine.resources.dll", + "tools/x86/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pt-BR/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/pt-BR/sg.resources.dll", + "tools/x86/ilc/tools/rhbind.exe", + "tools/x86/ilc/tools/ru/CciExtensions.resources.dll", + "tools/x86/ilc/tools/ru/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/ru/McgEngine.resources.dll", + "tools/x86/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ru/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/ru/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/x86/ilc/tools/tr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/tr/McgEngine.resources.dll", + "tools/x86/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/tr/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/tr/TypeNameUtilities.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/CciExtensions.resources.dll", + "tools/x86/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/zh-Hans/McgEngine.resources.dll", + "tools/x86/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hans/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x86/ilc/tools/zh-Hant/CciExtensions.resources.dll", + "tools/x86/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tools/zh-Hant/McgEngine.resources.dll", + "tools/x86/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hant/ReducerEngine.resources.dll", + "tools/x86/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x86/ilc/tr/Ilc.resources.dll", + "tools/x86/ilc/zh-Hans/Ilc.resources.dll", + "tools/x86/ilc/zh-Hant/Ilc.resources.dll", + "tools/x86/mrt100etw.dll" + ] + }, + "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "sha512": "eI4KNNMOpgpBkdXHFgmXD2l5gNdJJOV+ntN1Fwwnm93Rr7pmD8MGssJpI7wo7+uieaFIfAZ2waZjEnRR4Uu90A==", + "type": "package", + "path": "microsoft.net.native.sharedlibrary-arm/1.7.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "build/Microsoft.Net.Native.SharedLibrary-arm.props", + "build/Microsoft.Net.Native.SharedLibrary-arm.targets", + "microsoft.net.native.sharedlibrary-arm.1.7.0.nupkg.sha512", + "microsoft.net.native.sharedlibrary-arm.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.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "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.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "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.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" + ] + }, + "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "sha512": "3nrUuvayvlOdmx7yzUBu2PzKeQmZ0mwqhMfarOzt6X1tKjIrOONCFqH148rP7TgQDJBfKVSShB1f+BedF69emw==", + "type": "package", + "path": "microsoft.net.native.sharedlibrary-x64/1.7.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "build/Microsoft.Net.Native.SharedLibrary-x64.props", + "build/Microsoft.Net.Native.SharedLibrary-x64.targets", + "microsoft.net.native.sharedlibrary-x64.1.7.0.nupkg.sha512", + "microsoft.net.native.sharedlibrary-x64.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.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "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.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "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.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" + ] + }, + "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "sha512": "nC682cBwXA/ITw1BKnPxMBp93uHHFPmG/X9P+mQt1yCJBXnEcNi7XzzOROmqMuNwwtk5ci/cQE4HQDytn3O39g==", + "type": "package", + "path": "microsoft.net.native.sharedlibrary-x86/1.7.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "build/Microsoft.Net.Native.SharedLibrary-x86.props", + "build/Microsoft.Net.Native.SharedLibrary-x86.targets", + "microsoft.net.native.sharedlibrary-x86.1.7.0.nupkg.sha512", + "microsoft.net.native.sharedlibrary-x86.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.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", + "tools/SharedLibrary/chk/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", + "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "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.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.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.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", + "tools/SharedLibrary/ret/ILToc/System.IO.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.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.Reflection.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.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.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.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.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.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.IO.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.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.Reflection.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.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.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.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/SharedLibrary.dll", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "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.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.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.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.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.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" + ] + }, + "Microsoft.NETCore/5.0.2": { + "sha512": "wHb/fpL+6IxrZBAL2BwRJmj51RwYr3TVcnw5KIsxUtqLxjsqgasTbBmE9kZPAlhhljnt+m2EYMc7vcFuAhGNqA==", + "type": "package", + "path": "microsoft.netcore/5.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.5.0.2.nupkg.sha512", + "microsoft.netcore.nuspec" + ] + }, + "Microsoft.NETCore.Jit/1.0.3": { + "sha512": "/l8xYwtoJrFSx9zMWRClaKrgR+BTstCD1E5P90ADgiwH0GwlEqVhLoFIrsXpYj0j9vCB/fzOq7D/ZzuCbtmrTQ==", + "type": "package", + "path": "microsoft.netcore.jit/1.0.3", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.jit.1.0.3.nupkg.sha512", + "microsoft.netcore.jit.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Platforms/1.0.2": { + "sha512": "Z6nHORZtHe6t8rgnqnLKcrTp5CRB2GK46CDbMhhrnc1HHiuhIrDqKDqjJ/fgtM/f26FYk8Y8pKLTB6rzAeGNZA==", + "type": "package", + "path": "microsoft.netcore.platforms/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.0.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.2": { + "sha512": "sR4m1GQ8Tbg+Xdbf8Y8yC+LXKSUJUVe/B5vckCAU9Jd5MYf84gC1D0u2YeA72B4WjeWewCyHRB20ddA8hyLmqQ==", + "type": "package", + "path": "microsoft.netcore.portable.compatibility/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.DataAnnotations.dll", + "lib/netcore50/System.Core.dll", + "lib/netcore50/System.Net.dll", + "lib/netcore50/System.Numerics.dll", + "lib/netcore50/System.Runtime.Serialization.dll", + "lib/netcore50/System.ServiceModel.Web.dll", + "lib/netcore50/System.ServiceModel.dll", + "lib/netcore50/System.Windows.dll", + "lib/netcore50/System.Xml.Linq.dll", + "lib/netcore50/System.Xml.Serialization.dll", + "lib/netcore50/System.Xml.dll", + "lib/netcore50/System.dll", + "lib/netstandard1.0/System.ComponentModel.DataAnnotations.dll", + "lib/netstandard1.0/System.Core.dll", + "lib/netstandard1.0/System.Net.dll", + "lib/netstandard1.0/System.Numerics.dll", + "lib/netstandard1.0/System.Runtime.Serialization.dll", + "lib/netstandard1.0/System.ServiceModel.Web.dll", + "lib/netstandard1.0/System.ServiceModel.dll", + "lib/netstandard1.0/System.Windows.dll", + "lib/netstandard1.0/System.Xml.Linq.dll", + "lib/netstandard1.0/System.Xml.Serialization.dll", + "lib/netstandard1.0/System.Xml.dll", + "lib/netstandard1.0/System.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "microsoft.netcore.portable.compatibility.1.0.2.nupkg.sha512", + "microsoft.netcore.portable.compatibility.nuspec", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.DataAnnotations.dll", + "ref/netcore50/System.Core.dll", + "ref/netcore50/System.Net.dll", + "ref/netcore50/System.Numerics.dll", + "ref/netcore50/System.Runtime.Serialization.dll", + "ref/netcore50/System.ServiceModel.Web.dll", + "ref/netcore50/System.ServiceModel.dll", + "ref/netcore50/System.Windows.dll", + "ref/netcore50/System.Xml.Linq.dll", + "ref/netcore50/System.Xml.Serialization.dll", + "ref/netcore50/System.Xml.dll", + "ref/netcore50/System.dll", + "ref/netcore50/mscorlib.dll", + "ref/netstandard1.0/System.ComponentModel.DataAnnotations.dll", + "ref/netstandard1.0/System.Core.dll", + "ref/netstandard1.0/System.Net.dll", + "ref/netstandard1.0/System.Numerics.dll", + "ref/netstandard1.0/System.Runtime.Serialization.dll", + "ref/netstandard1.0/System.ServiceModel.Web.dll", + "ref/netstandard1.0/System.ServiceModel.dll", + "ref/netstandard1.0/System.Windows.dll", + "ref/netstandard1.0/System.Xml.Linq.dll", + "ref/netstandard1.0/System.Xml.Serialization.dll", + "ref/netstandard1.0/System.Xml.dll", + "ref/netstandard1.0/System.dll", + "ref/netstandard1.0/mscorlib.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", + "runtimes/aot/lib/netcore50/System.Core.dll", + "runtimes/aot/lib/netcore50/System.Net.dll", + "runtimes/aot/lib/netcore50/System.Numerics.dll", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", + "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", + "runtimes/aot/lib/netcore50/System.ServiceModel.dll", + "runtimes/aot/lib/netcore50/System.Windows.dll", + "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", + "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", + "runtimes/aot/lib/netcore50/System.Xml.dll", + "runtimes/aot/lib/netcore50/System.dll", + "runtimes/aot/lib/netcore50/mscorlib.dll" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { + "sha512": "tjD5r9Lxy+MD+YRJcuds5+sT+xGHkVt2Hb5LfLZIgkFmwUewBRPm/42UXi4oxhV1OIdRtt4ymwsiuFCwT16T9w==", + "type": "package", + "path": "microsoft.netcore.runtime.coreclr/1.0.3", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.runtime.coreclr.1.0.3.nupkg.sha512", + "microsoft.netcore.runtime.coreclr.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.0.2": { + "sha512": "yk4GtuNbFz2sxA5NNIp2bnOwGZVlB4U+F4gWy5YnMEKmGzzJfQ4wg7zQUx334+WMQ5PiQEuS4UuOpsW+V0PzVg==", + "type": "package", + "path": "microsoft.netcore.targets/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.0.2.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "1nTvK10WUDP1CvhCvqMCpQg2aSKrGObuVhtea7vYs27EmxY+QDND4LLDMJcVErPj0hrwhOibMqTeo/zkwPW9gg==", + "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/6.2.3", + "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.3.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.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.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.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.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.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.AccessControl.dll", + "ref/uap10.0.15138/System.IO.Pipes.AccessControl.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.dll", + "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.Memory.dll", + "ref/uap10.0.15138/System.Memory.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.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.Resources.Reader.dll", + "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.Unsafe.dll", + "ref/uap10.0.15138/System.Runtime.CompilerServices.Unsafe.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.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.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.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.Extensions.dll", + "ref/uap10.0.15138/System.Threading.Tasks.Extensions.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.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.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" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.VisualBasic/10.0.1": { + "sha512": "etxchRjJpWEU8QcD6mtxqeXGCzlL3LyiHoDTBAxEkih3W9KTRZINkgnDAr1Diy8hD9ifaPQq2u5QPuHDrg/uog==", + "type": "package", + "path": "microsoft.visualbasic/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/Microsoft.VisualBasic.dll", + "lib/netstandard1.3/Microsoft.VisualBasic.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "microsoft.visualbasic.10.0.1.nupkg.sha512", + "microsoft.visualbasic.nuspec", + "ref/net45/_._", + "ref/netcore50/Microsoft.VisualBasic.dll", + "ref/netcore50/Microsoft.VisualBasic.xml", + "ref/netcore50/de/Microsoft.VisualBasic.xml", + "ref/netcore50/es/Microsoft.VisualBasic.xml", + "ref/netcore50/fr/Microsoft.VisualBasic.xml", + "ref/netcore50/it/Microsoft.VisualBasic.xml", + "ref/netcore50/ja/Microsoft.VisualBasic.xml", + "ref/netcore50/ko/Microsoft.VisualBasic.xml", + "ref/netcore50/ru/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/Microsoft.VisualBasic.dll", + "ref/netstandard1.1/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "runtime.any.System.Collections/4.0.11": { + "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", + "type": "package", + "path": "runtime.any.system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.0.11.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.0.1.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.0.11": { + "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", + "type": "package", + "path": "runtime.any.system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.0.11.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.0.1.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.1.0": { + "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", + "type": "package", + "path": "runtime.any.system.io/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.1.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.1.0": { + "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", + "type": "package", + "path": "runtime.any.system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.1.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.1.0": { + "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.0.1.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.aot.System.Collections/4.0.10": { + "sha512": "JaNCSMYW8RoPTrzlqRp3IsPdbSp8IhnNQ3qeKVGtBggT/9bZFz6FjfU+YG3NEiy/yPo03NMQ5EtXMT2MCIrV1A==", + "type": "package", + "path": "runtime.aot.system.collections/4.0.10", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.collections.4.0.10.nupkg.sha512", + "runtime.aot.system.collections.nuspec", + "runtimes/aot/lib/netcore50/System.Collections.dll" + ] + }, + "runtime.aot.System.Diagnostics.Tools/4.0.1": { + "sha512": "29xXSZEpRNd2wJsEXX40CEaWhhQjfqFGal4f1DuqY7Gd7+ARcV7zJK9aKRX9SkHnQfx3qSm3+D/VWBPI7pgEYQ==", + "type": "package", + "path": "runtime.aot.system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.diagnostics.tools.4.0.1.nupkg.sha512", + "runtime.aot.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "runtime.aot.System.Diagnostics.Tracing/4.0.20": { + "sha512": "1zaLtCd4/msBeR4hDRjywdONAqnMl+mfsYO2er+kj9HEMQfrItSdApImXakl3CTRqb1S8upuBru2v/SLEY2vtg==", + "type": "package", + "path": "runtime.aot.system.diagnostics.tracing/4.0.20", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.diagnostics.tracing.4.0.20.nupkg.sha512", + "runtime.aot.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "runtime.aot.System.Globalization/4.0.11": { + "sha512": "eEPSEA2yUp1HLNlp8Cve/J6UpN2mFnWUJhjqVEw+d+JUkWrzE2+ebl+0kf91Nwls4Mnia0GkjRRDiDKt8XeAAQ==", + "type": "package", + "path": "runtime.aot.system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.globalization.4.0.11.nupkg.sha512", + "runtime.aot.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/System.Globalization.dll" + ] + }, + "runtime.aot.System.Globalization.Calendars/4.0.1": { + "sha512": "nXHH2LS832GzQMr//792HTXyuUGlREv/8IZ24USS+q8QobtPwAis0mDumSoSd6z+IoiFGK7ol1Ev/ab+dRiVTg==", + "type": "package", + "path": "runtime.aot.system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.globalization.calendars.4.0.1.nupkg.sha512", + "runtime.aot.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "runtime.aot.System.IO/4.1.0": { + "sha512": "zI0PBKDpAvTNbxTgcZutcb50D7jHJaC9vQLxKhUBn4gS7VHQqnZjqyEqXBxc4rnx6rdZzlMADNZAMUWNW42Sxw==", + "type": "package", + "path": "runtime.aot.system.io/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.io.4.1.0.nupkg.sha512", + "runtime.aot.system.io.nuspec", + "runtimes/aot/lib/netcore50/System.IO.dll", + "runtimes/aot/lib/netstandard1.3/System.IO.dll" + ] + }, + "runtime.aot.System.Reflection/4.0.10": { + "sha512": "vrUbKdxXRNkmIsiMFP03cKLmzGoN7ObqU7rpjr/9ABL2ovHO7vyFhVfkpUXg4uX94ixgVaytbISLe+yxFQtl8w==", + "type": "package", + "path": "runtime.aot.system.reflection/4.0.10", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.reflection.4.0.10.nupkg.sha512", + "runtime.aot.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/System.Reflection.dll" + ] + }, + "runtime.aot.System.Reflection.Extensions/4.0.0": { + "sha512": "WWw59m7k4XZLWN6XbptSR0TOdrLgwh5XEBj77QaUZQ+PcmvSzdJ79Jfp76ncQb5SzJZVu5ByZ7ufWX2bIeDpFQ==", + "type": "package", + "path": "runtime.aot.system.reflection.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.reflection.extensions.4.0.0.nupkg.sha512", + "runtime.aot.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "runtime.aot.System.Reflection.Primitives/4.0.0": { + "sha512": "826QEny5/GvZ270fhG70vnzYlFnTxNAHiHfyRS2zMZ5X1MpAsiW0y0XHAJjq7MrrnRjyG3qHF0zqytpNPJLaFQ==", + "type": "package", + "path": "runtime.aot.system.reflection.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.reflection.primitives.4.0.0.nupkg.sha512", + "runtime.aot.system.reflection.primitives.nuspec", + "runtimes/aot/lib/MonoAndroid10/_._", + "runtimes/aot/lib/MonoTouch10/_._", + "runtimes/aot/lib/net45/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll", + "runtimes/aot/lib/win8/_._", + "runtimes/aot/lib/wp80/_._", + "runtimes/aot/lib/wpa81/_._", + "runtimes/aot/lib/xamarinios10/_._", + "runtimes/aot/lib/xamarinmac20/_._", + "runtimes/aot/lib/xamarintvos10/_._", + "runtimes/aot/lib/xamarinwatchos10/_._" + ] + }, + "runtime.aot.System.Resources.ResourceManager/4.0.0": { + "sha512": "j+xK1M/oJ5ll7WT6UD9oQ/YUESFtT0YN3th1TIliJjK5J0Ek4vDPTMDQceu3WFy7aQOThDmIxjkAVSxZV7OWIA==", + "type": "package", + "path": "runtime.aot.system.resources.resourcemanager/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.resources.resourcemanager.4.0.0.nupkg.sha512", + "runtime.aot.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "runtime.aot.System.Runtime/4.0.20": { + "sha512": "ax423Smc+2Bcm8Go70iwj30hpjUIuahVtBAqlGXzhOoRwRR4vlEN3OGp8qTecWki3ZhGrbOXy+A1U89V3DzG/w==", + "type": "package", + "path": "runtime.aot.system.runtime/4.0.20", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.runtime.4.0.20.nupkg.sha512", + "runtime.aot.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.dll" + ] + }, + "runtime.aot.System.Runtime.Handles/4.0.1": { + "sha512": "UPzDQF5lwQ+BN+B1Zu2u3b5YQvIo4A96N9v5Uwo4VL1hWEf4STqiZgRogumy21TeRLjtEpF7I5JqIDhcc3OMCw==", + "type": "package", + "path": "runtime.aot.system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.runtime.handles.4.0.1.nupkg.sha512", + "runtime.aot.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "runtime.aot.System.Runtime.InteropServices/4.0.20": { + "sha512": "s4P2Jlf6ev4RgeLjNIq4hXsESIuE6t0Ljf+KVfRGDvrZ+yJuoPjwS3zMkm2SPj5Qif1HZ9vskKTdHPtk1B89Bw==", + "type": "package", + "path": "runtime.aot.system.runtime.interopservices/4.0.20", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.runtime.interopservices.4.0.20.nupkg.sha512", + "runtime.aot.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "runtime.aot.System.Text.Encoding/4.0.11": { + "sha512": "mUltrQRF5trt9DvIDPxV5E3girWcXlJgQBnYHfy1b8RQU2Ipob6xzCqlDnnECa8+FdhD8C/A7s7krxvHWcJ/pw==", + "type": "package", + "path": "runtime.aot.system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.text.encoding.4.0.11.nupkg.sha512", + "runtime.aot.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { + "sha512": "N6XCU9y8ZC51LfxnE5tgNFy+3emNQTRY6W3NeLqlHLcina5vbChsSsPDOCpEIGMTOMxbODe5HtWYbzaOOSFtGg==", + "type": "package", + "path": "runtime.aot.system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.text.encoding.extensions.4.0.11.nupkg.sha512", + "runtime.aot.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "runtime.aot.System.Threading.Tasks/4.0.11": { + "sha512": "55coohhmT0Usdq536a54bqGK4ij2D1ZTaJo8lQ3k/piwVx+Dl2r3xmDGsims+jVimQVayU2tXptKSAn9nhgRfA==", + "type": "package", + "path": "runtime.aot.system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.threading.tasks.4.0.11.nupkg.sha512", + "runtime.aot.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "runtime.aot.System.Threading.Timer/4.0.1": { + "sha512": "c4IE4f4MBSzr3b8uSCIpqc70uXbkNJx9oAASbEMhFGdyxljpwz14xYR5hp8AgnF4msF8tPL6zgOf7lDlSo0j/g==", + "type": "package", + "path": "runtime.aot.system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.aot.system.threading.timer.4.0.1.nupkg.sha512", + "runtime.aot.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/System.Threading.Timer.dll" + ] + }, + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "type": "package", + "path": "runtime.native.system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "type": "package", + "path": "runtime.native.system.security.cryptography/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "runtime.native.system.security.cryptography.nuspec" + ] + }, + "runtime.win.Microsoft.Win32.Primitives/4.0.1": { + "sha512": "0alFxXfT7M+xhhgMkNzG/Mnfii3o+DGQV9gkmhfLr6wsRPNxlIHdz4yQC8ksHqqmOu1Sq0FD9FxrSQyGo+8syA==", + "type": "package", + "path": "runtime.win.microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.microsoft.win32.primitives.4.0.1.nupkg.sha512", + "runtime.win.microsoft.win32.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.win.System.Diagnostics.Debug/4.0.11": { + "sha512": "q8Fm954ezFLfmG0tHNUmsNy+qaEjWtWqYhWh3cGSVjtJwkcBsfigWCh+fdaIVZ9K7m+6lgb3ElL2BBU6G+RijA==", + "type": "package", + "path": "runtime.win.system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.diagnostics.debug.4.0.11.nupkg.sha512", + "runtime.win.system.diagnostics.debug.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp80/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.IO.FileSystem/4.0.1": { + "sha512": "4FG9RK8J5CsUpXjkiZWS07aJu+H+vTIeQkFKXyjwibfBedUM168SCEaqV3Bjkbv4b3pUuf5Gy1RaqX/HnmKlZw==", + "type": "package", + "path": "runtime.win.system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.io.filesystem.4.0.1.nupkg.sha512", + "runtime.win.system.io.filesystem.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp8/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.Net.Primitives/4.0.11": { + "sha512": "36AsEkT9p+4cLHHh7sgSIOPWWeTKMh/DOoeQCzJmaLM8rtD9YaRZMmXGynf77ZP5KoXWwA4Y3aGbntrPbmmlcA==", + "type": "package", + "path": "runtime.win.system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.primitives.4.0.11.nupkg.sha512", + "runtime.win.system.net.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Primitives.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.win.System.Net.Sockets/4.1.0": { + "sha512": "BviTpQJbl+T/XVkwLw5xupFq9WXKru9KM/2U/ijmLuO2XEeMgdwk3g0e9sHWqvbrLvVT9yDf+SpbRXM1LNxTvA==", + "type": "package", + "path": "runtime.win.system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.sockets.4.1.0.nupkg.sha512", + "runtime.win.system.net.sockets.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Sockets.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" + ] + }, + "runtime.win.System.Runtime.Extensions/4.1.0": { + "sha512": "U3F/M+djxVXuKJaoW2AGpAE2ZWAp372140jsX4d/ctqki+Qb61HuyQY4yUPSA/gdKGbbq6HXzZ6oxB6/G3MYPA==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.1.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "yd3MHby8zUeTAtWGxx0gM2vYpThYqYqUbEbVrXY6Hm1K+wrJSjsxJ1v5jeCqsJBY3mcygGl/DHZnACJ/RChK7Q==", + "type": "package", + "path": "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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-aot.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "fzsKrHHfrv6wpLE1sxAHcWoB9vpAyoNjxVTnBJkzeXow2ZivR1H7wdpnsoKXIIb0d2EzYrrezHeHy4gI6tqqTA==", + "type": "package", + "path": "runtime.win10-arm-aot.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win10-arm-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win10-arm-aot.runtime.native.system.io.compression.nuspec", + "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll" + ] + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "ARCGW2RsQJlW/D3R4W7iOG00SY1EuYyNLDW1wMtho2KEF1Yrm0gTrP5R+Pihvz3DnnbD2WttJrJTUzCbCuHUdQ==", + "type": "package", + "path": "runtime.win10-arm.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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.3": { + "sha512": "R7Kp71uu8IVGgoi8amXz4D6uVKsIX+OFpE6A9jHv31p3SAn/JHGirLPdVDBLSrz38IZEqpWbrWCLCZWV3cJ/hg==", + "type": "package", + "path": "runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm64-aot.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "lEFHTJyjHvcfiIJNcwqHB37kFsNMvlFeOE1z5KCWFZVA8/wOpmHVCPp6J4DNE8e/DqCHUWRWtg2bl7ZWQP9GPg==", + "type": "package", + "path": "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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-aot.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "qr2+iGSxqUjVW3eATYzV4GHN6qQOu5cDTzCGf7VZ4aaxXGv2P/XVk9BkQ6WdPCDitEdIuWmtFYIFvGdvY/qN6Q==", + "type": "package", + "path": "runtime.win10-x64-aot.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win10-x64-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win10-x64-aot.runtime.native.system.io.compression.nuspec", + "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll" + ] + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "iufkZip18UWFljbZjVpXcCqB8LBvxAoFMLRAMyANVNXkuayKYuQPl/E07muRlCYmkDTUFGyQioU5WHBawCu/gw==", + "type": "package", + "path": "runtime.win10-x64.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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.3": { + "sha512": "cyuG6c1fX2tuLByZ+RyIqzI22Y1qcusVA2xWma1T3q0dJY43oUu8p37hRnLLg+iKCmeWx2p6pf365xR9wl/0qQ==", + "type": "package", + "path": "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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-aot.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "c3yeCSi1emskJMjeqbX6B+neZRozhYk4et/Lv/6s05Yz30jcwY2Mj5PAr7mvmlAZtP5+HLbxz+Ux+RNNM/1GUA==", + "type": "package", + "path": "runtime.win10-x86-aot.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win10-x86-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win10-x86-aot.runtime.native.system.io.compression.nuspec", + "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll" + ] + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.2.3": { + "sha512": "brlcvN8Tp9bz+jp46O2iNXhqcEbnvtpmViUENyzAJj+BNm60TxUJbG56+9D+yauA+5BT2CR3nEkfeTnWV8/ILQ==", + "type": "package", + "path": "runtime.win10-x86.microsoft.netcore.universalwindowsplatform/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86.microsoft.netcore.universalwindowsplatform.6.2.3.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.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.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" + ] + }, + "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { + "sha512": "pXLZyhN1gFNVjmmZloXzGxbdZyUjkiHKpojzxUxCZ2U+T0jD6ooK3rYhwqFzlSjVKUAdQ9QNDoixxnEr3/5VWw==", + "type": "package", + "path": "runtime.win7-x64.microsoft.netcore.jit/1.0.3", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.microsoft.netcore.jit.1.0.3.nupkg.sha512", + "runtime.win7-x64.microsoft.netcore.jit.nuspec", + "runtimes/win7-x64-aot/native/_._", + "runtimes/win7-x64/native/clrjit.dll" + ] + }, + "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "YaXA5RVLCYIcV1N31A7MJhWJnNkNfGnyRBNH1yYilUrBDvzMxNsbXX2pD7owWsC/go/4LRwbHbdWWXwHowKNvw==", + "type": "package", + "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.0.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard1.0/_._", + "runtime.win7-x64.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", + "runtime.win7-x64.microsoft.netcore.runtime.coreclr.nuspec", + "runtimes/win7-x64-aot/lib/netstandard1.0/_._", + "runtimes/win7-x64-aot/native/_._", + "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll", + "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll", + "runtimes/win7-x64/native/System.Private.CoreLib.ni.dll", + "runtimes/win7-x64/native/clretwrc.dll", + "runtimes/win7-x64/native/coreclr.dll", + "runtimes/win7-x64/native/dbgshim.dll", + "runtimes/win7-x64/native/mscordaccore.dll", + "runtimes/win7-x64/native/mscordbi.dll", + "runtimes/win7-x64/native/mscorlib.ni.dll", + "runtimes/win7-x64/native/mscorrc.debug.dll", + "runtimes/win7-x64/native/mscorrc.dll", + "runtimes/win7-x64/native/sos.dll", + "tools/crossgen.exe" + ] + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "4LLiT65shsAsGc+mUKV3vUw1SXfOaQWGWoblOYpYuZJSVkA3/LPx92M2GSYyn2sHR/XOFtY5TZmxJKgGlZOLFw==", + "type": "package", + "path": "runtime.win7-x64.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win7-x64.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x64/native/clrcompression.dll" + ] + }, + "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { + "sha512": "bU1EUneMeB6JltMNDCekL7nP1dluxOlnUgmAFx8EGsD6a+lgaYoDLk7V7F3H5Zpw/LeCxl5XmZqgPObGAlW7Dg==", + "type": "package", + "path": "runtime.win7-x86.microsoft.netcore.jit/1.0.3", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.microsoft.netcore.jit.1.0.3.nupkg.sha512", + "runtime.win7-x86.microsoft.netcore.jit.nuspec", + "runtimes/win7-x86-aot/native/_._", + "runtimes/win7-x86/native/clrjit.dll" + ] + }, + "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "80Jj8QlMLAnTq+BDhoHBnSNXRKqVjjZM9VjHcpw9/F98cBmh80rBdbnM0AAr54htjhzupYvwLqwuKnlzxec04A==", + "type": "package", + "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard1.0/_._", + "runtime.win7-x86.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", + "runtime.win7-x86.microsoft.netcore.runtime.coreclr.nuspec", + "runtimes/win7-x86-aot/lib/netstandard1.0/_._", + "runtimes/win7-x86-aot/native/_._", + "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll", + "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll", + "runtimes/win7-x86/native/System.Private.CoreLib.ni.dll", + "runtimes/win7-x86/native/clretwrc.dll", + "runtimes/win7-x86/native/coreclr.dll", + "runtimes/win7-x86/native/dbgshim.dll", + "runtimes/win7-x86/native/mscordaccore.dll", + "runtimes/win7-x86/native/mscordbi.dll", + "runtimes/win7-x86/native/mscorlib.ni.dll", + "runtimes/win7-x86/native/mscorrc.debug.dll", + "runtimes/win7-x86/native/mscorrc.dll", + "runtimes/win7-x86/native/sos.dll", + "tools/crossgen.exe" + ] + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "3jgpS2GhE76QqeoTxCakx6jlX7EIeXvxHnFFDa03Jf++s9+EGnRD38R6GDb1ism73xo6IHe0iev7zd5y+oD3BA==", + "type": "package", + "path": "runtime.win7-x86.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win7-x86.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x86/native/clrcompression.dll" + ] + }, + "runtime.win7.System.Private.Uri/4.0.2": { + "sha512": "N0nsmkEe+e3fl28KZ9LrHQ06XvhTC4FGyWacInV90h3pmty2s0fnG0GZ41rQw8d51s+pLcTQ0dKS0eN0xESY7g==", + "type": "package", + "path": "runtime.win7.system.private.uri/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win7.system.private.uri.4.0.2.nupkg.sha512", + "runtime.win7.system.private.uri.nuspec", + "runtimes/aot/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "0V6sq7Dg0bQPrJtm/Qw5Zu0e7gidnRPLaqUhKIkLYzVn64jkat+JnR6LcezryD3c0Wuva/MdJWYSAaOPq5V/Zw==", + "type": "package", + "path": "runtime.win8-arm.microsoft.netcore.runtime.coreclr/1.0.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard1.0/_._", + "runtime.win8-arm.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", + "runtime.win8-arm.microsoft.netcore.runtime.coreclr.nuspec", + "runtimes/win8-arm-aot/lib/netstandard1.0/_._", + "runtimes/win8-arm-aot/native/_._", + "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll", + "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll", + "runtimes/win8-arm/native/System.Private.CoreLib.ni.dll", + "runtimes/win8-arm/native/clretwrc.dll", + "runtimes/win8-arm/native/coreclr.dll", + "runtimes/win8-arm/native/dbgshim.dll", + "runtimes/win8-arm/native/mscordaccore.dll", + "runtimes/win8-arm/native/mscordbi.dll", + "runtimes/win8-arm/native/mscorlib.ni.dll", + "runtimes/win8-arm/native/mscorrc.debug.dll", + "runtimes/win8-arm/native/mscorrc.dll", + "runtimes/win8-arm/native/sos.dll", + "tools/crossgen.exe", + "tools/sos.dll" + ] + }, + "runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": { + "sha512": "EwyUwoJJLeSqfmeZoX9nxKx8Q9pEwX5zLLgSwtdH04+TzUYxaDIaoNqH5hfhoaSl2VoDsHGbEnQ6Y5bXLcWSkA==", + "type": "package", + "path": "runtime.win8-arm.runtime.native.system.io.compression/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win8-arm.runtime.native.system.io.compression.4.0.1.nupkg.sha512", + "runtime.win8-arm.runtime.native.system.io.compression.nuspec", + "runtimes/win8-arm/native/clrcompression.dll" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "type": "package", + "path": "system.buffers/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.0.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "type": "package", + "path": "system.collections.concurrent/4.0.12", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.0.12.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.2.0": { + "sha512": "2KnDB5xOmdERBZDniirmMPmY4AIUM7AbAIn+faLNShDc3mk0pe8iiPzBuJc5vMhTmMwEZbV2QbRAcaY+y2zwkw==", + "type": "package", + "path": "system.collections.immutable/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.2.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.1": { + "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "type": "package", + "path": "system.collections.nongeneric/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.0.1.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.1": { + "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", + "type": "package", + "path": "system.collections.specialized/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.0.1.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.0.1.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.1.0": { + "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "type": "package", + "path": "system.componentmodel.annotations/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.1.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.Data.Common/4.1.0": { + "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==", + "type": "package", + "path": "system.data.common/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.1.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1": { + "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==", + "type": "package", + "path": "system.diagnostics.contracts/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/netstandard1.0/System.Diagnostics.Contracts.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/netcore50/de/System.Diagnostics.Contracts.xml", + "ref/netcore50/es/System.Diagnostics.Contracts.xml", + "ref/netcore50/fr/System.Diagnostics.Contracts.xml", + "ref/netcore50/it/System.Diagnostics.Contracts.xml", + "ref/netcore50/ja/System.Diagnostics.Contracts.xml", + "ref/netcore50/ko/System.Diagnostics.Contracts.xml", + "ref/netcore50/ru/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/System.Diagnostics.Contracts.dll", + "ref/netstandard1.0/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "system.diagnostics.contracts.4.0.1.nupkg.sha512", + "system.diagnostics.contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.2": { + "sha512": "MmP424iVWLyeW7XGtwC5NyfzsIwodFKwhW6yns3d+Sh8WFsFoPWq2cUlJJDAteapIm2qoJ8fc3VwIUroolbsEA==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.0.2.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "type": "package", + "path": "system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.1.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "type": "package", + "path": "system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.0.1.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.0.1.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.1.1": { + "sha512": "ac/GG9DNsUr/grHGstCtWDoglgWr1OhL/yAZjXfpXtx52RmVVCpO52pShIDilQrD9dDZxw8zluiXEfezhPaYzg==", + "type": "package", + "path": "system.io.compression/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.1.1.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "type": "package", + "path": "system.io.compression.zipfile/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.0.1.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "type": "package", + "path": "system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.0.1.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.IsolatedStorage/4.0.1": { + "sha512": "PuSuDi3FV84wh6RbF+Dvr0BvLJ6MCpvNIdVE3K0sSnOVKEV7mOQ0qnEvO1tWjxquMaugULTxJHHLaxkCHCz4IQ==", + "type": "package", + "path": "system.io.isolatedstorage/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcore50/System.IO.IsolatedStorage.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.4/System.IO.IsolatedStorage.dll", + "ref/netstandard1.4/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/de/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/es/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/fr/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/it/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/ja/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/ko/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/ru/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/zh-hans/System.IO.IsolatedStorage.xml", + "ref/netstandard1.4/zh-hant/System.IO.IsolatedStorage.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.isolatedstorage.4.0.1.nupkg.sha512", + "system.io.isolatedstorage.nuspec" + ] + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", + "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.UnmanagedMemoryStream.dll", + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512", + "system.io.unmanagedmemorystream.nuspec" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "c0U23U9LISUgsz1XKSj5y8Z9pZf5rXVfxN+KxjAKEzIfxBtnb7XqHbMi7gOWDj3qpxVIdCo8jgpof7gb1SXVSg==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.1": { + "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", + "type": "package", + "path": "system.linq.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.0.1.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "type": "package", + "path": "system.linq.queryable/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/netstandard1.3/System.Linq.Queryable.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/netcore50/de/System.Linq.Queryable.xml", + "ref/netcore50/es/System.Linq.Queryable.xml", + "ref/netcore50/fr/System.Linq.Queryable.xml", + "ref/netcore50/it/System.Linq.Queryable.xml", + "ref/netcore50/ja/System.Linq.Queryable.xml", + "ref/netcore50/ko/System.Linq.Queryable.xml", + "ref/netcore50/ru/System.Linq.Queryable.xml", + "ref/netcore50/zh-hans/System.Linq.Queryable.xml", + "ref/netcore50/zh-hant/System.Linq.Queryable.xml", + "ref/netstandard1.0/System.Linq.Queryable.dll", + "ref/netstandard1.0/System.Linq.Queryable.xml", + "ref/netstandard1.0/de/System.Linq.Queryable.xml", + "ref/netstandard1.0/es/System.Linq.Queryable.xml", + "ref/netstandard1.0/fr/System.Linq.Queryable.xml", + "ref/netstandard1.0/it/System.Linq.Queryable.xml", + "ref/netstandard1.0/ja/System.Linq.Queryable.xml", + "ref/netstandard1.0/ko/System.Linq.Queryable.xml", + "ref/netstandard1.0/ru/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.queryable.4.0.1.nupkg.sha512", + "system.linq.queryable.nuspec" + ] + }, + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "type": "package", + "path": "system.net.http/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.1.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.Rtc/4.0.1": { + "sha512": "o2AlTAvlZOc0dRUpmr379G57VUjSQ+JO7X2vIduaV+zReroM7WVwvtg6q1tGBrT4aVFvqWPDavWuBgSMTwugyw==", + "type": "package", + "path": "system.net.http.rtc/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/win8/_._", + "ref/netcore50/System.Net.Http.Rtc.dll", + "ref/netcore50/System.Net.Http.Rtc.xml", + "ref/netcore50/de/System.Net.Http.Rtc.xml", + "ref/netcore50/es/System.Net.Http.Rtc.xml", + "ref/netcore50/fr/System.Net.Http.Rtc.xml", + "ref/netcore50/it/System.Net.Http.Rtc.xml", + "ref/netcore50/ja/System.Net.Http.Rtc.xml", + "ref/netcore50/ko/System.Net.Http.Rtc.xml", + "ref/netcore50/ru/System.Net.Http.Rtc.xml", + "ref/netcore50/zh-hans/System.Net.Http.Rtc.xml", + "ref/netcore50/zh-hant/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/System.Net.Http.Rtc.dll", + "ref/netstandard1.1/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/de/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/es/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/fr/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/it/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/ja/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/ko/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/ru/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.Rtc.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.Rtc.xml", + "ref/win8/_._", + "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll", + "system.net.http.rtc.4.0.1.nupkg.sha512", + "system.net.http.rtc.nuspec" + ] + }, + "System.Net.NameResolution/4.0.0": { + "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "type": "package", + "path": "system.net.nameresolution/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.0.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.NetworkInformation/4.1.0": { + "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==", + "type": "package", + "path": "system.net.networkinformation/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.NetworkInformation.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.NetworkInformation.dll", + "ref/netcore50/System.Net.NetworkInformation.dll", + "ref/netcore50/System.Net.NetworkInformation.xml", + "ref/netcore50/de/System.Net.NetworkInformation.xml", + "ref/netcore50/es/System.Net.NetworkInformation.xml", + "ref/netcore50/fr/System.Net.NetworkInformation.xml", + "ref/netcore50/it/System.Net.NetworkInformation.xml", + "ref/netcore50/ja/System.Net.NetworkInformation.xml", + "ref/netcore50/ko/System.Net.NetworkInformation.xml", + "ref/netcore50/ru/System.Net.NetworkInformation.xml", + "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml", + "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/System.Net.NetworkInformation.dll", + "ref/netstandard1.0/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/de/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/es/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/it/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/System.Net.NetworkInformation.dll", + "ref/netstandard1.3/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/de/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/es/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/it/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "runtimes/win/lib/net46/System.Net.NetworkInformation.dll", + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "system.net.networkinformation.4.1.0.nupkg.sha512", + "system.net.networkinformation.nuspec" + ] + }, + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "type": "package", + "path": "system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.0.11.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.0.11": { + "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "type": "package", + "path": "system.net.requests/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.0.11.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "type": "package", + "path": "system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.1.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.0.1": { + "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "type": "package", + "path": "system.net.webheadercollection/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.0.1.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0": { + "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==", + "type": "package", + "path": "system.net.websockets/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/netstandard1.3/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/netstandard1.3/System.Net.WebSockets.dll", + "ref/netstandard1.3/System.Net.WebSockets.xml", + "ref/netstandard1.3/de/System.Net.WebSockets.xml", + "ref/netstandard1.3/es/System.Net.WebSockets.xml", + "ref/netstandard1.3/fr/System.Net.WebSockets.xml", + "ref/netstandard1.3/it/System.Net.WebSockets.xml", + "ref/netstandard1.3/ja/System.Net.WebSockets.xml", + "ref/netstandard1.3/ko/System.Net.WebSockets.xml", + "ref/netstandard1.3/ru/System.Net.WebSockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.websockets.4.0.0.nupkg.sha512", + "system.net.websockets.nuspec" + ] + }, + "System.Net.WebSockets.Client/4.0.2": { + "sha512": "NUCcDroX4lCQXgOrzlwIZ1u9YJ0krfyF0wk0ONnyLUmcQoEiYV2/OfUPRqUwQBbpH1BlGApkLgoQUwMqb5+c1g==", + "type": "package", + "path": "system.net.websockets.client/4.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.Client.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.Client.dll", + "ref/netstandard1.3/System.Net.WebSockets.Client.dll", + "ref/netstandard1.3/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/de/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/es/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/it/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll", + "runtimes/win/lib/net46/System.Net.WebSockets.Client.dll", + "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll", + "runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll", + "system.net.websockets.client.4.0.2.nupkg.sha512", + "system.net.websockets.client.nuspec" + ] + }, + "System.Numerics.Vectors/4.1.1": { + "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", + "type": "package", + "path": "system.numerics.vectors/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.1.1.nupkg.sha512", + "system.numerics.vectors.nuspec" + ] + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.1": { + "sha512": "T4RJY6Z+0AuynCnMy8VMyP1g2mrB/OGubx5Og6d8ve6LkVLPrpiGtV5iMJeBv7lTDF1zhviILg+LecgKBjkWag==", + "type": "package", + "path": "system.numerics.vectors.windowsruntime/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll", + "system.numerics.vectors.windowsruntime.4.0.1.nupkg.sha512", + "system.numerics.vectors.windowsruntime.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.1.2": { + "sha512": "e700XsW/HO7qlnatKyVXEFHJMNXDkPOkn4pmpddXcJk6KEsnYIpJUHDFycHKB3mRVsgRtUYiDRbRKhecwo2ezg==", + "type": "package", + "path": "system.private.datacontractserialization/4.1.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.3/System.Private.DataContractSerialization.dll", + "ref/netstandard/_._", + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.1.2.nupkg.sha512", + "system.private.datacontractserialization.nuspec" + ] + }, + "System.Private.ServiceModel/4.1.3": { + "sha512": "nXoKlG2znsZ5lcR/ULZ7hIFrEqRBW8m5PK1qHf5T/eeogmuL50WpuHxhpNM/arTYS5FtlSN8Sl7YXZIGPcf/zQ==", + "type": "package", + "path": "system.private.servicemodel/4.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", + "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll", + "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll", + "system.private.servicemodel.4.1.3.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Private.Uri/4.0.1": { + "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", + "type": "package", + "path": "system.private.uri/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.0.1.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Context/4.0.1": { + "sha512": "nU4qA/juVb7OCAqLdWAnxeyTjs5tbwQmtF6ep1gTVSa79aGF1J5orD88WHQmNhgVbgfhSGPnz4+d94o/iBXZ7g==", + "type": "package", + "path": "system.reflection.context/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Context.dll", + "lib/netstandard1.1/System.Reflection.Context.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Context.dll", + "ref/netcore50/System.Reflection.Context.xml", + "ref/netcore50/de/System.Reflection.Context.xml", + "ref/netcore50/es/System.Reflection.Context.xml", + "ref/netcore50/fr/System.Reflection.Context.xml", + "ref/netcore50/it/System.Reflection.Context.xml", + "ref/netcore50/ja/System.Reflection.Context.xml", + "ref/netcore50/ko/System.Reflection.Context.xml", + "ref/netcore50/ru/System.Reflection.Context.xml", + "ref/netcore50/zh-hans/System.Reflection.Context.xml", + "ref/netcore50/zh-hant/System.Reflection.Context.xml", + "ref/netstandard1.1/System.Reflection.Context.dll", + "ref/netstandard1.1/System.Reflection.Context.xml", + "ref/netstandard1.1/de/System.Reflection.Context.xml", + "ref/netstandard1.1/es/System.Reflection.Context.xml", + "ref/netstandard1.1/fr/System.Reflection.Context.xml", + "ref/netstandard1.1/it/System.Reflection.Context.xml", + "ref/netstandard1.1/ja/System.Reflection.Context.xml", + "ref/netstandard1.1/ko/System.Reflection.Context.xml", + "ref/netstandard1.1/ru/System.Reflection.Context.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Context.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Context.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "system.reflection.context.4.0.1.nupkg.sha512", + "system.reflection.context.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.0.1": { + "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.0.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "type": "package", + "path": "system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.0.1.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "type": "package", + "path": "system.reflection.metadata/1.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.3.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "type": "package", + "path": "system.reflection.typeextensions/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.1.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "type": "package", + "path": "system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.0.1.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "type": "package", + "path": "system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.1.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { + "sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==", + "type": "package", + "path": "system.runtime.interopservices.windowsruntime/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios1/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "system.runtime.interopservices.windowsruntime.4.0.1.nupkg.sha512", + "system.runtime.interopservices.windowsruntime.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "type": "package", + "path": "system.runtime.numerics/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.0.1.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.0.3": { + "sha512": "siAQb9mZmY7dsBtdbC0OE7W1/y4DGgrIRHTghtN40v79wAvHluBm1wzlrCauCWMyp6WVxkcTzoesjZnx5+fM9g==", + "type": "package", + "path": "system.runtime.serialization.json/4.0.3", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.0.3.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.1.2": { + "sha512": "MDlAdO3DaLsoeGOadY811tONi+sz3qiaLwT0B+Plr6dwFfx2RNM+turm1cz1G1jKy2zZP86x417COdMIRsWZxw==", + "type": "package", + "path": "system.runtime.serialization.xml/4.1.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Xml.dll", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.xml.4.1.2.nupkg.sha512", + "system.runtime.serialization.xml.nuspec" + ] + }, + "System.Runtime.WindowsRuntime/4.0.11": { + "sha512": "C7rjmukRI0zE1Upl9hhmO4ZxasFYUTadXtgikLTgWwmIwa1jAD7yhOHKX3odajlRnSt34Ih+5VZliaqfFvQOcg==", + "type": "package", + "path": "system.runtime.windowsruntime/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/portable-win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/netcore50/System.Runtime.WindowsRuntime.dll", + "ref/netcore50/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/de/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/es/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/fr/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/it/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ja/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ko/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ru/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/System.Runtime.WindowsRuntime.dll", + "ref/netstandard1.0/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/de/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/es/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/fr/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/it/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/ja/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/ko/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/ru/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/System.Runtime.WindowsRuntime.dll", + "ref/netstandard1.2/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/de/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/es/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/fr/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/it/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/ja/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/ko/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/ru/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/portable-win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll", + "system.runtime.windowsruntime.4.0.11.nupkg.sha512", + "system.runtime.windowsruntime.nuspec" + ] + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { + "sha512": "ZG2uW8JYmFs1sGlhhAoW/F5WmZotkeSxzMils72qGEsJI6+JcQUa6oleSujULC4nk13F5Us9zvlvD2WfB+9Thw==", + "type": "package", + "path": "system.runtime.windowsruntime.ui.xaml/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/portable-win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/portable-win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "system.runtime.windowsruntime.ui.xaml.4.0.1.nupkg.sha512", + "system.runtime.windowsruntime.ui.xaml.nuspec" + ] + }, + "System.Security.Claims/4.0.1": { + "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "type": "package", + "path": "system.security.claims/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.0.1.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.2.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "type": "package", + "path": "system.security.cryptography.cng/4.2.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.2.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "type": "package", + "path": "system.security.cryptography.encoding/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "type": "package", + "path": "system.security.cryptography.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1": { + "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "type": "package", + "path": "system.security.principal/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.0.1.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.ServiceModel.Duplex/4.0.4": { + "sha512": "yBFdrm04/c3ApEM8TmHnN+d5nEXBX7ZDQ5kgL06TuXHWR6M8OogaUVFqfb9hkBH/PrA1aFLgaTTj4PqhvRSTBQ==", + "type": "package", + "path": "system.servicemodel.duplex/4.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/netstandard1.3/System.ServiceModel.Duplex.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netstandard1.1/System.ServiceModel.Duplex.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "system.servicemodel.duplex.4.0.4.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.1.3": { + "sha512": "8hpHlzYjJI6zxDq0jOLd7oioVokGJ9mVb+O9ME7Me5c+JLl0lny3snkKtCIXi0NJ98SjLUsF0uFg/lyBVos9QQ==", + "type": "package", + "path": "system.servicemodel.http/4.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Http.dll", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/netstandard1.3/System.ServiceModel.Http.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Http.dll", + "ref/netcore50/System.ServiceModel.Http.dll", + "ref/netstandard1.0/System.ServiceModel.Http.dll", + "ref/netstandard1.1/System.ServiceModel.Http.dll", + "ref/netstandard1.3/System.ServiceModel.Http.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.http.4.1.3.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.1.3": { + "sha512": "qiAn9GyWS5zFNWBjgnFMThN1iO2ryyJCTAZgYehTQyLvBr3E3XHlW9rM1bTTbbxU0neTKuJPLjEn7QVQ96H9gA==", + "type": "package", + "path": "system.servicemodel.nettcp/4.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/net46/System.ServiceModel.NetTcp.dll", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "system.servicemodel.nettcp.4.1.3.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.1.3": { + "sha512": "ooQ7+rc+4NOU3fzVDBpH9DGubH2U09rSpKOK5LoI/RQg00zWCtGuPN1Ve09LxkjTkD+nEssoHxVaWDW8lWmevQ==", + "type": "package", + "path": "system.servicemodel.primitives/4.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.1.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.0.4": { + "sha512": "TYSUCu8ejtp+8CLznJR57GS/LTR+wIGV6RlehUYwZImOhqnMvCRH35G0SXqbGrUd7wThlD+DowRHU3LivG89Mg==", + "type": "package", + "path": "system.servicemodel.security/4.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/netstandard1.3/System.ServiceModel.Security.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netstandard1.0/System.ServiceModel.Security.dll", + "ref/netstandard1.1/System.ServiceModel.Security.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "system.servicemodel.security.4.0.4.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.1": { + "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "type": "package", + "path": "system.text.encoding.codepages/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.0.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "type": "package", + "path": "system.text.regularexpressions/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.1.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.1": { + "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "type": "package", + "path": "system.threading.overlapped/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.0.1.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.6.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "system.threading.tasks.dataflow.4.6.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", + "type": "package", + "path": "system.threading.tasks.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.0.1.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "type": "package", + "path": "system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.0.1.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "type": "package", + "path": "system.xml.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.11": { + "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "type": "package", + "path": "system.xml.xmlserializer/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.0.11.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "UAP,Version=v10.0.15063": [ + "Microsoft.NETCore.UniversalWindowsPlatform >= 6.2.3" + ] + }, + "packageFolders": { + "C:\\Users\\maxhe\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\maxhe\\source\\repos\\Stensel\\Stensel\\Stensel.csproj", + "projectName": "Stensel", + "projectPath": "C:\\Users\\maxhe\\source\\repos\\Stensel\\Stensel\\Stensel.csproj", + "packagesPath": "C:\\Users\\maxhe\\.nuget\\packages\\", + "outputPath": "C:\\Users\\maxhe\\source\\repos\\Stensel\\Stensel\\obj\\", + "projectStyle": "PackageReference", + "skipContentFileWrite": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\" + ], + "configFilePaths": [ + "C:\\Users\\maxhe\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "uap10.0.15063" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "uap10.0.15063": { + "projectReferences": {} + } + } + }, + "frameworks": { + "uap10.0.15063": { + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": { + "target": "Package", + "version": "[6.2.3, )" + } + } + } + }, + "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/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_636758516200000000.json b/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_636758516200000000.json new file mode 100644 index 0000000..e896aa3 --- /dev/null +++ b/obj/x86/Debug/.winmd_cache/$Microsoft.UI.Xaml.Markup.winmd_636758516200000000.json @@ -0,0 +1 @@ +{"FullPath":"C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.17763.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":"15.0.28307.104"} \ No newline at end of file diff --git a/obj/x86/Debug/App.g.cs b/obj/x86/Debug/App.g.cs new file mode 100644 index 0000000..3b5fa78 --- /dev/null +++ b/obj/x86/Debug/App.g.cs @@ -0,0 +1,17 @@ +#pragma checksum "C:\Users\maxhe\source\repos\Stensel\Stensel\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "AA4052928CCD579C92584D4C366FDA8B" +//------------------------------------------------------------------------------ +// +// 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 Stensel +{ + partial class App : global::Windows.UI.Xaml.Application + { + } +} + diff --git a/obj/x86/Debug/App.g.i.cs b/obj/x86/Debug/App.g.i.cs new file mode 100644 index 0000000..c243ce7 --- /dev/null +++ b/obj/x86/Debug/App.g.i.cs @@ -0,0 +1,59 @@ +#pragma checksum "C:\Users\maxhe\source\repos\Stensel\Stensel\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "AA4052928CCD579C92584D4C366FDA8B" +//------------------------------------------------------------------------------ +// +// 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 Stensel +{ +#if !DISABLE_XAML_GENERATED_MAIN + /// + /// Program class + /// + public static class Program + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.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"," 10.0.17.0")] + private bool _contentLoaded; + /// + /// InitializeComponent() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.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/obj/x86/Debug/App.xaml b/obj/x86/Debug/App.xaml new file mode 100644 index 0000000..43f1a28 --- /dev/null +++ b/obj/x86/Debug/App.xaml @@ -0,0 +1,8 @@ + + + + diff --git a/obj/x86/Debug/App.xbf b/obj/x86/Debug/App.xbf new file mode 100644 index 0000000..1690986 Binary files /dev/null and b/obj/x86/Debug/App.xbf differ diff --git a/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..7288a6b Binary files /dev/null and b/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/x86/Debug/FxResources.Microsoft.CSharp.SR.resw b/obj/x86/Debug/FxResources.Microsoft.CSharp.SR.resw new file mode 100644 index 0000000..6eecdb3 --- /dev/null +++ b/obj/x86/Debug/FxResources.Microsoft.CSharp.SR.resw @@ -0,0 +1,501 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + '{0}' is a type not supported by the language + + + Do not directly call your base class Finalize method. It is called automatically from your destructor. + + + An unexpected exception occurred while binding a dynamic operation + + + A property or indexer may not be passed as an out or ref parameter + + + '{0}' does not contain a constructor that takes '{1}' arguments + + + Dynamic calls cannot be used in conjunction with pointers + + + Using the generic {1} '{0}' requires '{2}' type arguments + + + Fields of static readonly field '{0}' cannot be assigned to (except in a static constructor or a variable initializer) + + + Predefined type '{0}' is declared incorrectly + + + Cannot bind delegate to '{0}' because it is a member of 'System.Nullable<T>' + + + Cannot convert type '{0}' to '{1}' + + + Property or indexer '{0}' cannot be assigned to -- it is read only + + + The name '{0}' is bound to a method and cannot be used like a property + + + The property or indexer '{0}' cannot be used in this context because the set accessor is inaccessible + + + Cannot modify the return value of '{0}' because it is not a variable + + + The right hand side of a fixed statement assignment may not be a cast expression + + + Constant value '{0}' cannot be converted to a '{1}' (use 'unchecked' syntax to override) + + + Cannot convert null to '{0}' because it is a non-nullable value type + + + Argument '{0}' should not be passed with the '{1}' keyword + + + A ref or out argument must be an assignable variable + + + '{0}' does not contain a definition for '{1}' and the best extension method overload '{2}' has some invalid arguments + + + Operator '{0}' is ambiguous on an operand of type '{1}' + + + The type '{3}' cannot be used as type parameter '{2}' in the generic type or method '{0}'. The nullable type '{3}' does not satisfy the constraint of '{1}'. Nullable types can not satisfy any interface constraints. + + + Members of readonly field '{0}' cannot be modified (except in a constructor or a variable initializer) + + + Circular constraint dependency involving '{0}' and '{1}' + + + Cannot bind call with no calling object + + + Binary operators must be invoked with two arguments + + + '{0}' cannot implement both '{1}' and '{2}' because they may unify for some type parameter substitutions + + + '{2}' must be a non-abstract type with a public parameterless constructor in order to use it as parameter '{1}' in the generic type or method '{0}' + + + Missing compiler required member '{0}.{1}' + + + The property or indexer '{0}' cannot be used in this context because it lacks the get accessor + + + A static readonly field cannot be assigned to (except in a static constructor or a variable initializer) + + + A readonly field cannot be assigned to (except in a constructor or a variable initializer) + + + The type '{3}' cannot be used as type parameter '{2}' in the generic type or method '{0}'. There is no boxing conversion from '{3}' to '{1}'. + + + The type '{0}' has no constructors defined + + + Non-invocable member '{0}' cannot be used like a method. + + + Named argument specifications must appear after all fixed arguments have been specified + + + Type parameter '{0}' inherits conflicting constraints '{1}' and '{2}' + + + Division by constant zero + + + The type '{2}' must be a non-nullable value type in order to use it as parameter '{1}' in the generic type or method '{0}' + + + Cannot perform runtime binding on a null reference + + + Cannot take the address of, get the size of, or declare a pointer to a managed type ('{0}') + + + Fields of static readonly field '{0}' cannot be passed ref or out (except in a static constructor) + + + Property, indexer, or event '{0}' is not supported by the language; try directly calling accessor methods '{1}' or '{2}' + + + Property, indexer, or event '{0}' is not supported by the language; try directly calling accessor method '{1}' + + + The best overloaded method match for '{0}' has some invalid arguments + + + No overload for method '{0}' takes '{1}' arguments + + + You cannot use the fixed statement to take the address of an already fixed expression + + + '{0}' is inaccessible due to its protection level + + + '{1} {0}' has the wrong return type + + + Argument '{0}' must be passed with the '{1}' keyword + + + In order to be applicable as a short circuit operator a user-defined logical operator ('{0}') must have the same return type as the type of its 2 parameters + + + Binary operators cannot be invoked with one argument + + + The type '{2}' must be a reference type in order to use it as parameter '{1}' in the generic type or method '{0}' + + + The operation overflows at compile time in checked mode + + + The type '{3}' cannot be used as type parameter '{2}' in the generic type or method '{0}'. There is no implicit reference conversion from '{3}' to '{1}'. + + + The type '{3}' cannot be used as type parameter '{2}' in the generic type or method '{0}'. There is no boxing conversion or type parameter conversion from '{3}' to '{1}'. + + + '{0}' is not supported by the language + + + Literal of type double cannot be implicitly converted to type '{1}'; use an '{0}' suffix to create a literal of this type + + + '{0}' does not have a predefined size, therefore sizeof can only be used in an unsafe context (consider using System.Runtime.InteropServices.Marshal.SizeOf) + + + Named argument '{0}' specifies a parameter for which a positional argument has already been given + + + Cannot create delegate from method '{0}' because it is a partial method without an implementing declaration + + + The best overloaded Add method '{0}' for the collection initializer has some invalid arguments + + + The type '{3}' cannot be used as type parameter '{2}' in the generic type or method '{0}'. The nullable type '{3}' does not satisfy the constraint of '{1}'. + + + Extension methods '{0}' defined on value type '{1}' cannot be used to create delegates + + + Operator '{0}' cannot be applied to operands of type '{1}' and '{2}' + + + The best overload for '{0}' does not have a parameter named '{1}' + + + Cannot access protected member '{0}' via a qualifier of type '{1}'; the qualifier must be of type '{2}' (or derived from it) + + + Cannot access a non-static member of outer type '{0}' via nested type '{1}' + + + The left-hand side of an assignment must be a variable, property or indexer + + + Cannot implicitly convert type '{0}' to '{1}' + + + Implicit conversion takes exactly one argument + + + A static readonly field cannot be passed ref or out (except in a static constructor) + + + A readonly field cannot be passed ref or out (except in a constructor) + + + Members of readonly field '{0}' cannot be passed ref or out (except in a constructor) + + + Cannot apply indexing with [] to an expression of type '{0}' + + + Cannot assign to '{0}' because it is a '{1}' + + + The call is ambiguous between the following methods or properties: '{0}' and '{1}' + + + Member '{0}' cannot be accessed with an instance reference; qualify it with a type name instead + + + Cannot implicitly convert type 'void' to 'object' + + + Type parameter '{1}' has the 'struct' constraint so '{1}' cannot be used as a constraint for '{0}' + + + An object reference is required for the non-static field, method, or property '{0}' + + + Unary operators must be invoked with one argument + + + Cannot convert to static type '{0}' + + + Cannot call an abstract base member: '{0}' + + + Predefined type '{0}' is not defined or imported + + + Wrong number of indices inside []; expected '{0}' + + + Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available. + + + The delegate '{0}' does not have a valid constructor + + + Operator '{0}' cannot be applied to operand of type '{1}' + + + The operand of an increment or decrement operator must be a variable, property or indexer + + + The {1} '{0}' cannot be used with type arguments + + + Cannot pass '{0}' as a ref or out argument because it is read-only + + + The non-generic {1} '{0}' cannot be used with type arguments + + + Delegate '{0}' has some invalid arguments + + + Delegate '{0}' does not take '{1}' arguments + + + Cannot dynamically invoke method '{0}' because it has a Conditional attribute + + + Overload resolution failed + + + The delegate '{0}' does not have a parameter named '{1}' + + + The type ('{0}') must contain declarations of operator true and operator false + + + Explicit conversion takes exactly one argument + + + Argument '{0}': cannot convert from '{1}' to '{2}' + + + Cannot implicitly convert type '{0}' to '{1}'. An explicit conversion exists (are you missing a cast?) + + + Operator '{0}' is ambiguous on operands of type '{1}' and '{2}' + + + Cannot convert null to type parameter '{0}' because it could be a non-nullable value type. Consider using 'default({0})' instead. + + + Cannot assign to '{0}' because it is read-only + + + The best overloaded method match '{0}' for the collection initializer element cannot be used. Collection initializer 'Add' methods cannot have ref or out parameters. + + + '{0}': static types cannot be used as type arguments + + + Instance argument: cannot convert from '{0}' to '{1}' + + + The event '{0}' can only appear on the left hand side of + + + + Constant value '{0}' cannot be converted to a '{1}' + + + Named argument '{0}' cannot be specified multiple times + + + Cannot pass '{0}' as a ref or out argument because it is a '{1}' + + + Ambiguity between '{0}' and '{1}' + + + Anonymous methods, lambda expressions, and query expressions inside structs cannot access instance members of 'this'. Consider copying 'this' to a local variable outside the anonymous method, lambda expression or query expression and using the local instead. + + + Cannot invoke a non-delegate type + + + The type arguments for method '{0}' cannot be inferred from the usage. Try specifying the type arguments explicitly. + + + Ambiguous user defined conversions '{0}' and '{1}' when converting from '{2}' to '{3}' + + + A field initializer cannot reference the non-static field, method, or property '{0}' + + + '{0}': cannot explicitly call operator or accessor + + + Cannot convert method group '{0}' to non-delegate type '{1}'. Did you intend to invoke the method? + + + No overload for '{0}' matches delegate '{1}' + + + The property or indexer '{0}' cannot be used in this context because the get accessor is inaccessible + + + '{0}' does not contain a definition for '{1}' and no extension method '{1}' accepting a first argument of type '{0}' could be found (are you missing a using directive or an assembly reference?) + + + Cannot perform member assignment on a null reference + + + '{0}' does not contain a definition for '{1}' + + + The type '{0}' may not be used as a type argument + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.Microsoft.VisualBasic.SR.resw b/obj/x86/Debug/FxResources.Microsoft.VisualBasic.SR.resw new file mode 100644 index 0000000..e09b337 --- /dev/null +++ b/obj/x86/Debug/FxResources.Microsoft.VisualBasic.SR.resw @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + No default member found for type '{0}'. + + + Argument matching parameter '{0}' cannot convert from '{1}' to '{2}'. + + + Overload resolution failed because no accessible '{0}' accepts this number of arguments. + + + Argument '{0}' is not valid for the array. + + + Arguments are not valid. + + + Invocation of '{0}' on type '{1}' returned Nothing. + + + Return and parameter types of '{0}' must be of type '{1}' to be used in a 'For' statement. + + + Named argument '{0}' cannot match a ParamArray parameter. + + + Overload resolution failed because no '{0}' is Public. + + + Parameter '{0}' of '{1}' already has a matching argument. + + + Call to set property '{0}' requires at least one argument. + + + Not most specific. + + + Argument '{0}' must be within the range of -32768 to 65535. + + + Omitted argument cannot match a ParamArray parameter. + + + Overload resolution failed because no Public '{0}' can be called with these arguments:{1} + + + Error number must be within the range 0 to 65535. + + + Argument '{0}' cannot be converted to a numeric value. + + + Cannot convert start value of type '{0}' and step value of type '{1}' to a common numeric type. + + + Cannot convert start value of type '{0}', limit value of type '{1}', and step value of type '{2}' to a common numeric type. + + + 'ReDim' cannot change the number of dimensions. + + + Argument '{0}' must be less than or equal to the length of argument '{1}'. + + + Field '{0}' of type '{1}' is 'ReadOnly'. + + + Argument '{0}' cannot be a multi-dimensional array. + + + Add failed. Duplicate key value supplied. + + + Cannot convert argument '{0}' of type '{1}' to type '{2}'. + + + 'SyncLock' operand cannot be of type '{0}' because '{0}' is not a reference type. + + + Argument '{0}' is not a valid value. + + + Type '{0}' must define an operator '{1}', with parameters of type '{0}', to be used in a 'For' statement. + + + Argument '{0}' must be greater or equal to zero. + + + Argument not specified for parameter '{0}'. + + + Overload resolution failed because no Public '{0}' is most specific for these arguments:{1} + + + Argument '{0}' must be greater than zero. + + + ByRef parameter '{0}' cannot convert from '{1}' to '{2}' when assigning back to the matching argument. + + + Operator '{0}' is not defined for {1} and {2}. + + + Overload resolution failed because no accessible '{0}' accepts this number of type arguments. + + + Argument '{0}' must be within the range 0 to 99. + + + Argument '{0}' must be greater than or equal to -1. + + + Type parameter '{0}' cannot be determined. + + + Internal error in the Microsoft Visual Basic runtime. + + + Conversion from type '{0}' to type '{1}' is ambiguous. + + + Property '{0}' is WriteOnly. + + + Named arguments are not valid as array subscripts. + + + Overload resolution failed because no Public '{0}' can be called without a narrowing conversion:{1} + + + Argument '{0}' cannot be converted to type 'Date'. + + + Managed classes derived from a COM class cannot be called late bound. + + + Argument '{0}' must be greater than 0 or equal to -1. + + + Operator '{0}' is not defined for type '{1}'. + + + ByRef parameter '{0}' narrows from '{1}' to '{2}' when assigning back to the matching argument. + + + 'ReDim' can only change the rightmost dimension. + + + Argument '{0}' is Nothing. + + + Public member '{0}' on type '{1}' not found. + + + Conversion from string \"{0}\" to type '{1}' is not valid. + + + ByRef parameter '{0}' cannot convert from '{1}' to '{2}' when assigning back to the matching argument because the conversion is ambiguous. + + + Property '{0}' is ReadOnly. + + + Expression '{0}' is not a procedure, but occurs as the target of a procedure call. + + + Conversion from type '{0}' to type '{1}' is not valid. + + + Method '{0}' cannot be the target of an assignment. + + + Named argument '{0}' matches no parameter of '{1}'. + + + Argument matching parameter '{0}' cannot convert from '{1}' to '{2}' because the conversion is ambiguous. + + + Substitution of type arguments failed. + + + Argument '{0}' must be greater than or equal to 1. + + + Parameter types of '{0}' must be of type '{1}' to be used in a 'For' statement. + + + Loop control variable of type '{1}' does not implement the 'System.IComparable' interface. + + + string \"{0}\" + + + 'Before' and 'After' arguments cannot be combined. + + + Late-bound assignment to a field of value type '{0}' is not valid when '{1}' is the result of a late-bound expression. + + + Collection index must be in the range 1 to the size of the collection. + + + Argument matching parameter '{0}' narrows from '{1}' to '{2}'. + + + Argument '{0}' cannot be converted to type '{1}'. + + + Length of argument '{0}' must be greater than zero. + + + Method invocation failed because '{0}' cannot be called with these arguments:{1} + + + Reference to non-shared member '{0}' requires an object reference. + + + Type argument inference fails for argument matching parameter '{0}'. + + + type '{0}' + + + Type of argument '{0}' is '{1}', which is not numeric. + + + Object variable or With block variable not set. + + + For loop not initialized. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Buffers.SR.resw b/obj/x86/Debug/FxResources.System.Buffers.SR.resw new file mode 100644 index 0000000..2fba0b6 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Buffers.SR.resw @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The buffer is not associated with this pool and may not be returned to it. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Collections.Concurrent.SR.resw b/obj/x86/Debug/FxResources.System.Collections.Concurrent.SR.resw new file mode 100644 index 0000000..637c5bb --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.Concurrent.SR.resw @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The array argument is null. + + + The collection argument contains more items than are allowed by the boundedCapacity. + + + The array argument is of the incorrect type. + + + The source argument contains duplicate keys. + + + The array is multidimensional, or the type parameter for the set cannot be cast automatically to the type of the destination array. + + + The sum of the startIndex and count arguments must be less than or equal to the collection's Count. + + + The concurrencyLevel argument must be positive. + + + The collections argument is a zero-length array. + + + The collection argument is empty and has been marked as complete with regards to additions. + + + The underlying collection didn't accept the item. + + + The collection has been marked as complete with regards to additions. + + + The key was of an incorrect type for this dictionary. + + + The startIndex argument must be greater than or equal to zero. + + + The array argument is multidimensional. + + + MoveNext must be called at least once before calling Current. + + + The collection has been disposed. + + + The key already existed in the dictionary. + + + All collections are marked as complete with regards to additions. + + + The collection argument is null. + + + The operation was canceled. + + + The collections argument contains at least one null element. + + + The boundedCapacity argument must be positive. + + + The collections argument contains at least one disposed element. + + + The count argument must be greater than or equal to zero. + + + The index argument must be greater than or equal zero. + + + The number of elements in the collection is greater than the available space from index to the end of the destination array. + + + Can not call GetEnumerator on partitions after the source enumerable is disposed + + + The underlying collection was modified from outside of the BlockingCollection<T>. + + + The index argument must be greater than or equal zero. + + + The index argument is less than zero. + + + At least one of the specified collections is marked as complete with regards to additions. + + + The SyncRoot property may not be used for the synchronization of concurrent collections. + + + Dynamic partitions are not supported by this partitioner. + + + The value was of an incorrect type for this dictionary. + + + The capacity argument must be greater than or equal to zero. + + + The collections length is greater than the supported range for 32 bit machine. + + + CompleteAdding may not be used concurrently with additions to the collection. + + + The index is equal to or greater than the length of the array, or the number of elements in the dictionary is greater than the available space from index to the end of the destination array. + + + TKey is a reference type and item.Key is null. + + + The specified timeout must represent a value between -1 and {0}, inclusive. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Collections.Immutable.SR.resw b/obj/x86/Debug/FxResources.System.Collections.Immutable.SR.resw new file mode 100644 index 0000000..2f6b50f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.Immutable.SR.resw @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Object is not a array with the same number of elements as the array to compare it to. + + + Object is not a array with the same initialization state as the array to compare it to. + + + Collection was modified; enumeration operation may not execute. + + + Capacity was less than the current Count of elements. + + + This operation does not apply to an empty instance. + + + MoveToImmutable can only be performed when Count equals Capacity. + + + Cannot find the old value + + + An element with the same key but a different value already exists. Key: {0} + + + This operation cannot be performed on a default instance of ImmutableArray<T>. Consider initializing the array, or checking the ImmutableArray<T>.IsDefault property. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Collections.NonGeneric.SR.resw b/obj/x86/Debug/FxResources.System.Collections.NonGeneric.SR.resw new file mode 100644 index 0000000..961a066 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.NonGeneric.SR.resw @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This range in the underlying list is invalid. A possible cause is that elements were removed. + + + Enumeration has not started. Call MoveNext. + + + '{0}' must be non-negative. + + + This operation is not supported on SortedList nested types because they require modifying the original SortedList. + + + Key cannot be null. + + + Collection was of a fixed size. + + + Collection was modified; enumeration operation may not execute. + + + Collection cannot be null. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Count must be positive and count must refer to a location within the string/array/collection. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Collection is read-only. + + + Insertion index was out of range. Must be non-negative and less than or equal to size. + + + At least one object must implement IComparable. + + + capacity was less than the current size. + + + Only single dimensional arrays are supported for the requested action. + + + Dictionary cannot be null. + + + Larger than collection size. + + + Load factor needs to be between 0.1 and 1.0. + + + Non-negative number required. + + + Hashtable insert failed. Load factor too high. The most common cause is multiple threads writing to the Hashtable simultaneously. + + + Mutating a key collection derived from a dictionary is not allowed. + + + Array cannot be null. + + + Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table. + + + Cannot remove the specified item because it was not found in the specified Collection. + + + Stack empty. + + + Queue empty. + + + Enumeration already finished. + + + Item has already been added. Key in dictionary: '{0}' Key being added: '{1}' + + + The specified operation is not supported on Ranges. + + + Queue grow factor must be between {0} and {1}. + + + Enumeration has either not started or has already finished. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Collections.SR.resw b/obj/x86/Debug/FxResources.System.Collections.SR.resw new file mode 100644 index 0000000..1a2b7f6 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.SR.resw @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Enumeration has not started. Call MoveNext. + + + Only supported array types for CopyTo on BitArrays are Boolean[], Int32[] and Byte[]. + + + The lower bound of target array must be zero. + + + This operation is not supported on SortedList nested types because they require modifying the original SortedList. + + + Target array type is not compatible with the type of items in the collection. + + + An item with the same key has already been added. + + + Collection was modified; enumeration operation may not execute. + + + The LinkedList node already belongs to a LinkedList. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + Index {0} is out of range. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Array lengths must be the same. + + + Count must be positive and count must refer to a location within the string/array/collection. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + At least one object must implement IComparable. + + + capacity was less than the current size. + + + Multi dimension array is not supported on this operation. + + + Only single dimensional arrays are supported for the requested action. + + + Mutating a value collection derived from a dictionary is not allowed. + + + Larger than collection size. + + + The LinkedList is empty. + + + Index must be within the bounds of the List. + + + The input array length must not exceed Int32.MaxValue / {0}. Otherwise BitArray.Length would exceed Int32.MaxValue. + + + Type of argument is not compatible with the generic comparer. + + + Non-negative number required. + + + The LinkedList node does not belong to current LinkedList. + + + HashSet capacity is too big. + + + Mutating a key collection derived from a dictionary is not allowed. + + + Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table. + + + Stack empty. + + + Queue empty. + + + Non-negative number required. + + + Target array type is not compatible with the type of items in the collection. + + + Enumeration already finished. + + + Insufficient space in the target location to copy the information. + + + The value '{0}' is not of type '{1}' and cannot be used in this generic collection. + + + Enumeration has either not started or has already finished. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Collections.Specialized.SR.resw b/obj/x86/Debug/FxResources.System.Collections.Specialized.SR.resw new file mode 100644 index 0000000..b88425f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.Specialized.SR.resw @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Argument {0} should be larger than {1}. + + + The lower bound of target array must be zero. + + + An item with the same key has already been added. Key: {0} + + + Collection was modified after the enumerator was instantiated. + + + Collection is read-only. + + + Multi dimension array is not supported on this operation. + + + Index is less than zero. + + + The OrderedDictionary is read-only and cannot be modified. + + + Bit vector is full. + + + Insufficient space in the target location to copy the information. + + + Enumerator is positioned before the first element or after the last element of the collection. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.ComponentModel.Annotations.SR.resw b/obj/x86/Debug/FxResources.System.ComponentModel.Annotations.SR.resw new file mode 100644 index 0000000..8cbe687 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.Annotations.SR.resw @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A service of type '{0}' already exists in the container. + + + The ValidationContext for the type '{0}', member name '{1}' must provide the MethodInfo. + + + Could not find a property named {0}. + + + Could not convert the value of type '{0}' to '{1}' as expected by method {2}.{3}. + + + The maximum value '{0}' must be greater than or equal to the minimum value '{1}'. + + + The custom validation type '{0}' must be public. + + + The field {0} must be between {1} and {2}. + + + The argument '{0}' cannot be null, empty or contain only white space. + + + The pattern must be set to a valid regular expression. + + + The {0} field is not a valid credit card number. + + + The key parameter at position {0} with value '{1}' is not a string. Every key control parameter must be a string. + + + The field {0} must be a string with a maximum length of {1}. + + + Cannot retrieve property '{0}' because localization failed. Type '{1}' is not public or does not contain a public static string property with the name '{2}'. + + + The field {0} must be a string with a minimum length of {2} and a maximum length of {1}. + + + The type '{0}' does not contain a public method named '{1}'. + + + The CustomValidationAttribute.Method was not specified. + + + The type '{0}' does not contain a public property named '{1}'. + + + The field {0} must be a string or array type with a maximum length of '{1}'. + + + The value for property '{0}' must be of type '{1}'. + + + The CustomValidationAttribute method '{0}' does not exist in type '{1}' or is not public and static. + + + The {0} field is not a valid phone number. + + + The {0} field is not a valid fully-qualified http, https, or ftp URL. + + + The field {0} is invalid. + + + The type '{0}' needs to represent an enumeration type. + + + The type {0} must implement {1}. + + + The {0} field only accepts files with the following extensions: {1} + + + Both ErrorMessageResourceType and ErrorMessageResourceName need to be set on this attribute. + + + The instance provided must match the ObjectInstance on the ValidationContext supplied. + + + The field {0} must be a string or array type with a minimum length of '{1}'. + + + MetadataClassType cannot be null. + + + The CustomValidationAttribute.ValidatorType was not specified. + + + The minimum and maximum values must be set. + + + The resource type '{0}' does not have an accessible static property named '{1}'. + + + MaxLengthAttribute must have a Length value that is greater than zero. Use MaxLength() without parameters to indicate that the string or array can have the maximum allowable length. + + + The property {0}.{1} could not be found. + + + {0} is not valid. + + + Value cannot be null or empty. + + + The maximum length must be a nonnegative integer. + + + The field {0} must match the regular expression '{1}'. + + + The type provided for EnumDataTypeAttribute cannot be null. + + + The OperandType must be set when strings are used for minimum and maximum values. + + + The property '{0}' on resource type '{1}' is not a string type. + + + The {0} field is required. + + + '{0}' and '{1}' do not match. + + + The {0} field is not a valid e-mail address. + + + The associated metadata type for type '{0}' contains the following unknown properties or fields: {1}. Please make sure that the names of these members match the names of the properties on the main type. + + + The CustomValidationAttribute method '{0}' in type '{1}' must return System.ComponentModel.DataAnnotations.ValidationResult. Use System.ComponentModel.DataAnnotations.ValidationResult.Success to represent success. + + + The key parameter at position {0} with value '{1}' occurs more than once. + + + The number of control parameters must be even. + + + The CustomValidationAttribute method '{0}' in type '{1}' must match the expected signature: public static ValidationResult {0}(object value, ValidationContext context). The value can be strongly typed. The ValidationContext parameter is optional. + + + MinLengthAttribute must have a Length value that is zero or greater. + + + The custom DataType string cannot be null or empty. + + + Either ErrorMessageString or ErrorMessageResourceName must be set, but not both. + + + The type '{0}' must be public. + + + The key parameter at position {0} is null. Every key control parameter must be a string. + + + The {0} property has not been set. Use the {1} method to get the value. + + + IsValid(object value) has not been implemented by this class. The preferred entry point is GetValidationResult() and classes should override IsValid(object value, ValidationContext context). + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.ComponentModel.EventBasedAsync.SR.resw b/obj/x86/Debug/FxResources.System.ComponentModel.EventBasedAsync.SR.resw new file mode 100644 index 0000000..25add8f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.EventBasedAsync.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A non-null SendOrPostCallback must be supplied. + + + Operation has been cancelled. + + + This BackgroundWorker states that it doesn't report progress. Modify WorkerReportsProgress to state that it does report progress. + + + This BackgroundWorker is currently busy and cannot run multiple tasks concurrently. + + + This operation has already had OperationCompleted called on it and further calls are illegal. + + + This BackgroundWorker states that it doesn't support cancellation. Modify WorkerSupportsCancellation to state that it does support cancellation. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Data.Common.SR.resw b/obj/x86/Debug/FxResources.System.Data.Common.SR.resw new file mode 100644 index 0000000..194d90c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Data.Common.SR.resw @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Invalid keyword, contain one or more of 'no characters', 'control characters', 'leading or trailing whitespace' or 'leading semicolons'. + + + Format of the initialization string does not conform to specification starting at index {0}. + + + Buffer offset '{1}' plus the bytes available '{0}' is greater than the length of the passed in buffer. + + + Invalid source buffer (size of {0}) offset: {1} + + + Invalid destination buffer (size of {0}) offset: {1} + + + Data length '{0}' is less than 0. + + + Expecting non-empty string for '{0}' parameter. + + + Internal .Net Framework Data Provider error {0}. + + + The value contains embedded nulls. + + + Cannot convert object of type '{0}' to object of type '{1}'. + + + Keyword not supported: '{0}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Diagnostics.Debug.SR.resw b/obj/x86/Debug/FxResources.System.Diagnostics.Debug.SR.resw new file mode 100644 index 0000000..20173aa --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Diagnostics.Debug.SR.resw @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Assertion Failed + + + Assertion Failed: Cancel=Debug, OK=Continue + + + ---- Assert Short Message ---- + + + The process cannot access the file because it is being used by another process. + + + Could not find a part of the path '{0}'. + + + Unable to find the specified file. + + + Specified file length was too large for the file system. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + ---- DEBUG ASSERTION FAILED ---- + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + Access to the path '{0}' is denied. + + + RTL_False + + + Could not find a part of the path. + + + ---- Assert Long Message ---- + + + The file '{0}' already exists. + + + Could not find file '{0}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Dynamic.Runtime.SR.resw b/obj/x86/Debug/FxResources.System.Dynamic.Runtime.SR.resw new file mode 100644 index 0000000..606846e --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Dynamic.Runtime.SR.resw @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Type parameter is {0}. Expected a delegate. + + + Non-empty collection required + + + An element with the same key '{0}' already exists in the ExpandoObject. + + + The specified key '{0}' does not exist in the ExpandoObject. + + + Argument type cannot be void + + + More than one key matching '{0}' was found in the ExpandoObject. + + + {0} must be greater than or equal to {1} + + + The value '{0}' is not of type '{1}' and cannot be used in this collection. + + + Expression of type '{0}' cannot be used for parameter of type '{1}' + + + Expression of type '{0}' cannot be used for parameter of type '{1}' of method '{2}' + + + Incorrect number of arguments supplied for call to method '{0}' + + + Bind cannot return null. + + + First argument of delegate must be CallSite + + + Type {0} is a generic type definition + + + No or Invalid rule produced + + + The result type '{0}' of the dynamic binding produced by binder '{1}' is not compatible with the result type '{2}' expected by the call site. + + + Collection was modified; enumeration operation may not execute. + + + Collection is read-only. + + + The value null is not of type '{0}' and cannot be used in this collection. + + + An IDynamicMetaObjectProvider {0} created an invalid DynamicMetaObject instance. + + + Incorrect number of arguments supplied for lambda invocation + + + The result of the dynamic binding produced by the object with type '{0}' for the binder '{1}' needs at least one restriction. + + + Argument count must be greater than number of named arguments. + + + Type {0} contains generic parameters + + + Method precondition violated + + + Enumeration has either not started or has already finished. + + + Type must be derived from System.Delegate + + + Incorrect number of arguments for constructor + + + The result type '{0}' of the binder '{1}' is not compatible with the result type '{2}' expected by the call site. + + + Expression must be readable + + + The result type '{0}' of the dynamic binding produced by the object with type '{1}' for the binder '{2}' is not compatible with the result type '{3}' expected by the call site. + + + Expression of type '{0}' cannot be used for constructor parameter of type '{1}' + + + Invalid argument value + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Globalization.Extensions.SR.resw b/obj/x86/Debug/FxResources.System.Globalization.Extensions.SR.resw new file mode 100644 index 0000000..9480605 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Globalization.Extensions.SR.resw @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + IDN labels must be between 1 and 63 characters long. + + + Value of flags is invalid. + + + Insufficient memory to continue the execution of the program. + + + Decoded string is not a valid IDN name. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Invalid normalization form. + + + Non-negative number required. + + + String contains invalid Unicode code points. + + + Unknown error '{0}'. + + + Invalid IDN encoded string. + + + Index and count must refer to a location within the buffer. + + + Invalid Unicode code point found at index {0}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.Compression.SR.resw b/obj/x86/Debug/FxResources.System.IO.Compression.SR.resw new file mode 100644 index 0000000..e08ab7c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.Compression.SR.resw @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + An entry in the ZipArchive has a path that contains invalid characters. + + + This stream from ZipArchiveEntry does not support reading. + + + The specified entry name encoding is not supported. + + + Reading from the compression stream is not supported. + + + This stream from ZipArchiveEntry does not support writing. + + + Cannot use read mode on a non-readable stream. + + + Entry names cannot require more than 2^16 bits. + + + Update mode requires a stream with read, write, and seek capabilities. + + + Delete can only be used when the archive is in Update mode. + + + A stream from ZipArchiveEntry has been disposed. + + + Stream does not support writing. + + + Zip file corrupt: unexpected end of stream reached. + + + Start Disk Number cannot be held in an Int64. + + + The stream size in GZip footer does not match the real stream size. + + + Entries cannot be opened multiple times in Update mode. + + + Number of entries expected in End Of Central Directory does not correspond to number of entries in Central Directory. + + + The stream state of the underlying compression routine is inconsistent. + + + The underlying compression routine could not reserve sufficient memory. + + + The offset and length parameters are not valid for the array that was given. + + + The magic number in GZip header is not correct. Make sure you are passing in a GZip stream. + + + The underlying compression routine returned an unexpected error code. + + + Cannot create entries on an archive opened in read mode. + + + This stream from ZipArchiveEntry does not support seeking. + + + Found invalid data while decoding. + + + Cannot modify entry in Create mode after entry has been opened for writing. + + + Offset to Zip64 End Of Central Directory record cannot be held in an Int64. + + + This operation is not supported. + + + Central Directory corrupt. + + + Entries larger than 4GB are not supported in Update mode. + + + Entries in create mode may only be written to once, and only one entry may be held open at a time. + + + Decoder is in some unknown state. This might be caused by corrupted data. + + + Cannot use create mode on a non-writable stream. + + + Length properties are unavailable once an entry has been opened for writing. + + + The argument must be non-negative. + + + Enum value was out of legal range. + + + Split or spanned archives are not supported. + + + Only one asynchronous reader or writer is allowed time at one time. + + + Zip 64 End of Central Directory Record not where indicated. + + + The DateTimeOffset specified cannot be converted into a Zip file timestamp. + + + Failed to construct a huffman tree using the length array. The stream might be corrupted. + + + Number of Entries cannot be held in an Int64. + + + The underlying compression routine received incorrect initialization parameters. + + + Offset to Central Directory cannot be held in an Int64. + + + The underlying compression routine could not be loaded correctly. + + + The version of the underlying compression routine does not match expected version. + + + The archive entry was compressed using an unsupported compression method. + + + Cannot modify read-only archive. + + + A local file header is corrupt. + + + Writing to the compression stream is not supported. + + + Cannot access entries in Create mode. + + + End of Central Directory record could not be found. + + + Can not access a closed Stream. + + + Compressed Size cannot be held in an Int64. + + + Stream does not support reading. + + + SetLength requires a stream that supports seeking and writing. + + + The CRC in GZip footer does not match the CRC calculated from the decompressed data. + + + Entries cannot be created while previously created entries are still open. + + + Local Header Offset cannot be held in an Int64. + + + String cannot be empty. + + + Illegal characters in path. + + + Central Directory is invalid. + + + Block length does not match with its complement. + + + Offset plus count is larger than the length of target array. + + + Unknown block type. Stream might be corrupted. + + + Positive number required. + + + The compression mode specified in GZip header is unknown. + + + Cannot modify deleted entry. + + + Cannot delete an entry currently open for writing. + + + Uncompressed Size cannot be held in an Int64. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.Compression.ZipFile.SR.resw b/obj/x86/Debug/FxResources.System.IO.Compression.ZipFile.SR.resw new file mode 100644 index 0000000..3289cd7 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.Compression.ZipFile.SR.resw @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Zip entry name ends in directory separator character but contains data. + + + Extracting Zip entry would have resulted in a file outside the specified destination directory. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.FileSystem.SR.resw b/obj/x86/Debug/FxResources.System.IO.FileSystem.SR.resw new file mode 100644 index 0000000..046adf9 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.FileSystem.SR.resw @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Probable I/O race condition detected while copying memory. The I/O package is not thread safe by default. In multithreaded applications, a stream must be accessed in a thread-safe way, such as a thread-safe wrapper returned by TextReader's or TextWriter's Synchronized methods. This also applies to classes like StreamWriter and StreamReader. + + + Empty path name is not legal. + + + FileStream was asked to open a device that was not a file. For support for devices like 'com1:' or 'lpt1:', call CreateFile, then use the FileStream constructors that take an OS handle as an IntPtr. + + + [Unknown] + + + Unable seek backward to overwrite data that previously existed in a file opened in Append mode. + + + BindHandle for ThreadPool failed on this handle. + + + The specified directory '{0}' cannot be created. + + + Stream does not support writing. + + + File name cannot be null. + + + The target file '{0}' is a directory, not a file. + + + Unable to read beyond the end of the stream. + + + The process cannot access the file because it is being used by another process. + + + Empty file name is not legal. + + + Path must not be a drive. + + + Unable to truncate data that previously existed in a file opened in Append mode. + + + Could not find a part of the path '{0}'. + + + Second path fragment must not be a drive or UNC name. + + + Stream does not support seeking. + + + Invalid handle. + + + Source and destination path must have identical roots. Move will not work across volumes. + + + Unable to find the specified file. + + + Specified file length was too large for the file system. + + + The file is too long. This operation is currently limited to supporting files less than 2 gigabytes in size. + + + Synchronous operations should not be performed on the UI thread. Consider wrapping this method in Task.Run. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + Append access can be requested only in write-only mode. + + + Specified handle value was out of range for the file system. + + + Source and destination path must be different. + + + Enum value was out of legal range. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + The given path's format is not supported. + + + Access to the path '{0}' is denied. + + + Search pattern cannot contain '..' to move up directories and can be contained only internally in file/directory names, as in 'a..b'. + + + Could not find a part of the path. + + + Path cannot be null. + + + FileStream will not open Win32 devices such as disk partitions and tape drives. Avoid use of '\\\\.\\' in the path. + + + Handle does not support asynchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened synchronously (that is, it was not opened for overlapped I/O). + + + Non-negative number required. + + + Path cannot be the empty string or all whitespace. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Invalid File or Directory attributes value. + + + Stream does not support reading. + + + The directory specified, '{0}', is not a subdirectory of '{1}'. + + + The OS handle's position is not what FileStream expected. Do not use a handle simultaneously in one FileStream and in Win32 code or another FileStream. This may cause data loss. + + + Cannot access a closed file. + + + The stream's length cannot be changed. + + + Combining FileMode: {0} with FileAccess: {1} is invalid. + + + Illegal characters in path. + + + Unknown error '{0}'. + + + Handle does not support synchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened asynchronously (that is, it was opened explicitly for overlapped I/O). + + + Buffer cannot be null. + + + Positive number required. + + + Could not find file '{0}'. + + + Invalid seek origin. + + + IO operation will not work. Most likely the file will become too long or the handle was not opened to support synchronous IO operations. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.IsolatedStorage.SR.resw b/obj/x86/Debug/FxResources.System.IO.IsolatedStorage.SR.resw new file mode 100644 index 0000000..ba1294c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.IsolatedStorage.SR.resw @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Initialization failed. + + + Path must be a valid file name. + + + Empty path name is not legal. + + + Invalid mode, see System.IO.FileMode. + + + Unable to find the specified file. + + + Operation not permitted on IsolatedStorageFileStream. + + + The process cannot access the file because it is being used by another process. + + + <Path discovery permission to the specified directory was denied.> + + + Could not find the drive '{0}'. The drive might not be ready or might not be mapped. + + + An error occurred while accessing IsolatedStorage. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + The given path's format is not supported. + + + Unable to delete, directory not empty or does not exist. + + + The new quota must be larger than the old quota. + + + Access to the path '{0}' is denied. + + + Could not find file '{0}'. + + + Store must be open for this operation. + + + Path cannot be null. + + + Unable to delete file. + + + Could not find a part of the path. + + + Non-negative number required. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Could not find a part of the path '{0}'. + + + The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. + + + Operation not permitted. + + + Unknown error '{0}'. + + + Invalid origin, see System.IO.SeekOrigin. + + + Unable to create directory. + + + Absolute path information is required. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.SR.resw b/obj/x86/Debug/FxResources.System.IO.SR.resw new file mode 100644 index 0000000..04a1013 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.SR.resw @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Stream was not writable. + + + Stream was not readable. + + + WinRT Interop has already been initialized and cannot be initialized again. + + + Cannot read from a closed TextReader. + + + Stream does not support writing. + + + Unable to read beyond the end of the stream. + + + Memory stream is not expandable. + + + Capacity must be positive. + + + BinaryReader encountered an invalid string length of {0} characters. + + + Found invalid data while decoding. + + + Cannot write to a closed TextWriter. + + + An attempt was made to move the position before the beginning of the stream. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Stream length must be non-negative and less than 2^31 - 1 - origin. + + + Stream was too long. + + + Timeouts are not supported on this stream. + + + capacity was less than the current size. + + + The stream is currently in use by a previous operation on the stream. + + + Non-negative number required. + + + Cannot access a closed Stream. + + + Stream does not support reading. + + + Unicode surrogate characters must be written out as pairs together in the same call, not individually. Consider passing in a character array instead. + + + Stream cannot be null. + + + Too many bytes in what should have been a 7 bit encoded Int32. + + + The number of bytes requested does not fit into BinaryReader's internal buffer. + + + Cannot access a closed file. + + + Decimal byte array constructor requires an array of length four containing valid decimal bytes. + + + Attempted to access a path that is not on the disk. + + + Buffer cannot be null. + + + Positive number required. + + + Invalid seek origin. + + + Attempted to read past the end of the stream. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.UnmanagedMemoryStream.SR.resw b/obj/x86/Debug/FxResources.System.IO.UnmanagedMemoryStream.SR.resw new file mode 100644 index 0000000..836b07f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.UnmanagedMemoryStream.SR.resw @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Accessor does not support writing. + + + The UnmanagedMemoryStream capacity would wrap around the high end of the address space. + + + Stream does not support writing. + + + Cannot access a closed accessor. + + + The position may not be greater or equal to the capacity of the accessor. + + + There are not enough bytes remaining in the accessor to write at this position. + + + Offset and capacity were greater than the size of the view. + + + Offset and length were greater than the size of the SafeBuffer. + + + Enum value was out of legal range. + + + An attempt was made to move the position before the beginning of the stream. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Stream length must be non-negative and less than 2^31 - 1 - origin. + + + Read an invalid decimal value from the buffer. + + + Not enough space available in the buffer. + + + There are not enough bytes remaining in the accessor to read at this position. + + + Non negative number is required. + + + Stream was too long. + + + The method cannot be called twice on the same instance. + + + Stream does not support reading. + + + Accessor does not support reading. + + + The length cannot be greater than the capacity. + + + Cannot access a closed Stream. + + + Unable to expand length of this stream beyond its capacity. + + + This operation is not supported for an UnmanagedMemoryStream created from a SafeBuffer. + + + Buffer cannot be null. + + + Positive number required. + + + The UnmanagedMemoryAccessor capacity and offset would wrap around the high end of the address space. + + + Invalid seek origin. + + + Unmanaged memory stream position was beyond the capacity of the stream. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Linq.Expressions.SR.resw b/obj/x86/Debug/FxResources.System.Linq.Expressions.SR.resw new file mode 100644 index 0000000..f14cf6d --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.Expressions.SR.resw @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Invalid assembly name or file extension. + + + Argument types do not match + + + The user-defined equality method '{0}' must return a boolean value. + + + Property '{0}' is not defined for type '{1}' + + + Control cannot enter an expression--only statements can be jumped into. + + + Invalid output directory. + + + Unhandled Binding Type: {0} + + + Type '{0}' is not IEnumerable + + + Unexpected VarArgs call to method '{0}' + + + Extension should have been reduced. + + + Type '{0}' does not have a default constructor + + + Label type must be System.Void if an expression is not supplied + + + must be reducible node + + + Incorrect number of indexes + + + Start and End must be well ordered + + + Non-empty collection required + + + Argument must be array + + + The binary operator {0} is not defined for the types '{1}' and '{2}'. + + + The operator '{0}' is not implemented for type '{1}' + + + Control cannot leave a finally block. + + + More than one property '{0}' on type '{1}' is compatible with the supplied arguments. + + + Argument must not have a value type. + + + All test values must have the same type. + + + No method '{0}' exists on type '{1}'. + + + Accessor indexes cannot be passed ByRef. + + + Rewritten expression calls operator method '{0}', but the original node had no operator method. If this is is intentional, override '{1}' and change it to allow this rewrite. + + + node cannot reduce to itself or null + + + An incorrect number of type args were specified for the declaration of a Func type. + + + Lambda type parameter must be derived from System.Delegate + + + The expression type '{0}' is not supported + + + Argument must be an instance member + + + Invalid operation: '{0}' + + + Reference equality is not defined for the types '{0}' and '{1}'. + + + Argument type cannot be System.Void. + + + Type doesn't have constructor with a given signature + + + The return type of overload method for operator '{0}' does not match the parameter type of conversion method '{1}'. + + + The property '{0}' has no 'get' accessor + + + Cannot redefine label '{0}' in an inner block. + + + Argument must be either a FieldInfo or PropertyInfo + + + Field '{0}.{1}' is not defined for type '{2}' + + + Expression of type '{0}' cannot be used for return type '{1}' + + + variable '{0}' of type '{1}' referenced from scope '{2}', but it is not defined + + + Test value of type '{0}' cannot be used for the comparison method parameter of type '{1}' + + + {0} must be greater than or equal to {1} + + + The value '{0}' is not of type '{1}' and cannot be used in this collection. + + + Argument type '{0}' does not match the corresponding member type '{1}' + + + Expression of type '{0}' cannot be used for parameter of type '{1}' + + + Static method requires null instance, non-static method requires non-null instance. + + + The method '{0}.{1}' is not a property accessor + + + Cannot close over byref parameter '{0}' referenced in lambda '{1}' + + + Expression must be writeable + + + Instance field '{0}' is not defined for type '{1}' + + + Property type must match the value type of setter + + + Expression of type '{0}' cannot be used for parameter of type '{1}' of method '{2}' + + + Method {0} is a generic method definition + + + Coalesce used with type that cannot be null + + + TryExpression is not supported as an argument to method '{0}' because it has an argument with by-ref type. Construct the tree so the TryExpression is not nested inside of this expression. + + + Cannot auto initialize elements of value type through property '{0}', use assignment instead + + + Argument for array index must be of type Int32 + + + Incorrect number of arguments supplied for call to method '{0}' + + + MethodBuilder does not have a valid TypeBuilder + + + Expression of type '{0}' cannot be used for label of type '{1}' + + + Instance property '{0}' that takes no argument is not defined for type '{1}' + + + arrayType must be an array type + + + Can only unbox from an object or interface type to a value type. + + + More than one method '{0}' on type '{1}' is compatible with the supplied arguments. + + + Method {0} contains generic parameters + + + Cannot auto initialize members of value type through property '{0}', use assignment instead + + + Try expression is not allowed inside a filter body. + + + The user-defined operator method '{1}' for operator '{0}' must return the same type as its parameter or a derived type. + + + Cannot cast from type '{0}' to type '{1} + + + Rewriting child expression from type '{0}' to type '{1}' is not allowed, because it would change the meaning of the operation. If this is intentional, override '{2}' and change it to allow this rewrite. + + + Incorrect number of members for constructor + + + No coercion operator is defined between types '{0}' and '{1}'. + + + Method '{0}' declared on type '{1}' cannot be called with instance of type '{2}' + + + The member '{0}' is not declared on type '{1}' being created + + + Accessor method should not have VarArgs. + + + Incorrect number of arguments for the given members + + + Property cannot have a managed pointer type. + + + Type {0} is a generic type definition + + + Field '{0}' is not defined for type '{1}' + + + Invalid lvalue for assignment: {0}. + + + Variable '{0}' uses unsupported type '{1}'. Reference types are not supported for variables. + + + No generic method '{0}' on type '{1}' is compatible with the supplied type arguments and arguments. No type arguments should be provided if the method is non-generic. + + + Switch value of type '{0}' cannot be used for the comparison method parameter of type '{1}' + + + No method '{0}' on type '{1}' is compatible with the supplied arguments. + + + Indexing parameters of getter and setter must match. + + + The operands for operator '{0}' do not match the parameters of method '{1}'. + + + cannot assign from the reduced node type to the original node type + + + Non-reducible expression extensions are not supported + + + Both accessors must be static. + + + The user-defined operator method '{1}' for operator '{0}' must have associated boolean True and False operators. + + + Cannot jump to ambiguous label '{0}'. + + + Expression of type '{0}' cannot be invoked + + + The user-defined operator method '{1}' for operator '{0}' must have identical parameter and return types. + + + When called from '{0}', rewriting a node of type '{1}' must return a non-null value of the same type. Alternatively, override '{2}' and change it to not visit children of this type. + + + Unhandled convert: {0} + + + Rethrow statement is valid only inside a Catch block. + + + reducible nodes must override Expression.Reduce() + + + The property '{0}' has no 'get' or 'set' accessors + + + Element initializer method must have at least 1 parameter + + + Setter must have parameters. + + + Dynamic operations can only be performed in homogenous AppDomain. + + + Argument must be boolean + + + Static field requires null instance, non-static field requires non-null instance. + + + The unary operator {0} is not defined for the type '{1}'. + + + Collection was modified; enumeration operation may not execute. + + + Incorrect number of parameters supplied for lambda declaration + + + Invalid member type: {0}. + + + TryExpression is not supported as a child expression when accessing a member on type '{0}' because it is a value type. Construct the tree so the TryExpression is not nested inside of this expression. + + + Quoted expression must be a lambda + + + The value null is not of type '{0}' and cannot be used in this collection. + + + Cannot jump to undefined label '{0}'. + + + type must not be ByRef + + + Bounds count cannot be less than 1 + + + Extension node must override the property {0}. + + + Filter blocks are not supported + + + Argument must be single dimensional array type + + + The expression '{0}' is not supported for nullable type '{1}' + + + Parameter '{0}' of element initializer method '{1}' must not be a pass by reference parameter + + + Type must be System.Void for this label argument + + + Unhandled Expression Type: {0} + + + All case bodies and the default body must have the same type. + + + Argument must be of an integer type + + + Setter should have void type. + + + try must have at least one catch, finally, or fault clause + + + CompileToMethod cannot compile constant '{0}' because it is a non-trivial value, such as a live object. Instead, create an expression tree that can construct this value. + + + An expression of type '{0}' cannot be used to initialize an array of type '{1}' + + + Count must be non-negative. + + + Found duplicate parameter '{0}'. Each ParameterExpression in the list must be a unique object. + + + Incorrect number of arguments supplied for lambda invocation + + + Property cannot have a void type. + + + Unhandled unary: {0} + + + Instance property '{0}' is not defined for type '{1}' + + + fault cannot be used with catch or finally clauses + + + Unknown binding type + + + Unhandled binding + + + The type used in TypeAs Expression must be of reference or nullable type, {0} is neither + + + Type {0} contains generic parameters + + + Enumeration has either not started or has already finished. + + + Argument must be either a FieldInfo, PropertyInfo or MethodInfo + + + Cannot jump to non-local label '{0}' with a value. Only jumps to labels defined in outer blocks can pass values. + + + Incorrect number of arguments for constructor + + + Cannot create instance of {0} because it contains generic parameters + + + User-defined operator method '{0}' must be static. + + + unknown lift type: '{0}'. + + + The expression '{0}' is not supported for type '{1}' + + + Expression must be readable + + + Control cannot enter a try block. + + + Default body must be supplied if case bodies are not System.Void. + + + Body of catch must have the same type as body of try. + + + Member '{0}' not field or property + + + Static property requires null instance, non-static property requires non-null instance. + + + Unexpected coalesce operator. + + + Dynamic expressions are not supported by CompileToMethod. Instead, create an expression tree that uses System.Runtime.CompilerServices.CallSite. + + + Unhandled binary: {0} + + + Expression of type '{0}' cannot be used for assignment to type '{1}' + + + Control cannot leave a filter test. + + + Conversion is not supported for arithmetic types without operator overloading. + + + DebugInfoGenerator created by CreatePdbGenerator can only be used with LambdaExpression.CompileToMethod. + + + Expression of type '{0}' cannot be used for constructor parameter of type '{1}' + + + '{0}' is not a member of type '{1}' + + + Element initializer method must be named 'Add' + + + Queue empty. + + + Invalid argument value + + + List initializers must contain at least one initializer + + + An incorrect number of type args were specified for the declaration of an Action type. + + + User-defined operator method '{0}' must not be void. + + + Instance property '{0}{1}' is not defined for type '{2}' + + + The property '{0}' has no 'set' accessor + + + Element initializer method must be an instance method + + + Fault blocks are not supported + + + ParameterExpression of type '{0}' cannot be used for delegate parameter of type '{1}' + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Linq.Parallel.SR.resw b/obj/x86/Debug/FxResources.System.Linq.Parallel.SR.resw new file mode 100644 index 0000000..9a965c2 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.Parallel.SR.resw @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Partitioner returned a wrong number of partitions. + + + The WithDegreeOfParallelism operator may be used at most once in a query. + + + Enumeration has not started. MoveNext must be called to initiate enumeration. + + + The query enumerator has been disposed. + + + Sequence contains no matching element + + + The mergeOptions argument contains an invalid value. + + + The WithTaskScheduler operator may be used at most once in a query. + + + Sequence contains more than one matching element + + + The query enumerator previously threw an exception. + + + The second data source of a binary operator must be of type System.Linq.ParallelQuery<T> rather than System.Collections.Generic.IEnumerable<T>. To fix this problem, use the AsParallel() extension method to convert the right data source to System.Linq.ParallelQuery<T>. + + + The WithMergeOptions operator may be used at most once in a query. + + + The executionMode argument contains an invalid value. + + + Sequence contains more than one element + + + Partitioner returned null instead of a list of partitions. + + + Sequence contains no elements + + + The WithExecutionMode operator may be used at most once in a query. + + + AsOrdered may not be used with a partitioner that is not orderable. + + + Enumeration yielded no results + + + The query has been canceled via the token supplied to WithCancellation. + + + Non-generic AsOrdered may only be called on the result of the non-generic AsParallel. + + + AsOrdered may only be called on the result of AsParallel, ParallelEnumerable.Range, or ParallelEnumerable.Repeat. + + + Elements returned must not be null. + + + The WithCancellation operator may by used at most once in a query. + + + Partitioner returned a null partition. + + + The returned array's length must equal the number of partitions requested. + + + The CancellationTokenSource associated with this CancellationToken has been disposed. + + + The return value must not be null. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Linq.Queryable.SR.resw b/obj/x86/Debug/FxResources.System.Linq.Queryable.SR.resw new file mode 100644 index 0000000..cd52ffc --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.Queryable.SR.resw @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Argument {0} is not valid + + + There is no method '{0}' on type '{1}' that matches the specified arguments + + + There is no method '{0}' on type '{1}' + + + {0} is not IEnumerable<> + + + Cannot enumerate a query created from a null IEnumerable<> + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Linq.SR.resw b/obj/x86/Debug/FxResources.System.Linq.SR.resw new file mode 100644 index 0000000..8c23531 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Sequence contains no matching element + + + Sequence contains more than one matching element + + + Sequence contains more than one element + + + Sequence contains no elements + + + Enumeration yielded no results + + + Enumeration has either not started or has already finished. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Http.SR.resw b/obj/x86/Debug/FxResources.System.Net.Http.SR.resw new file mode 100644 index 0000000..90071cc --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Http.SR.resw @@ -0,0 +1,363 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The stream does not support concurrent read operations. + + + The libcurl library in use ({0}) does not support different credentials for different authentication schemes. + + + New-line characters in header values must be followed by a white-space character. + + + The stream does not support writing. + + + An error occurred while sending the request. + + + The reason phrase must not contain new-line characters. + + + Response status code does not indicate success: {0} ({1}). + + + Cannot write more bytes to the buffer than the configured maximum buffer size: {0}. + + + Cannot add value because header '{0}' does not support multiple values. + + + Value for header '{0}' contains invalid new-line characters. Value: '{1}'. + + + Value '{0}' is not a valid email address. Error: {1} + + + The 'q' value is invalid: '{0}'. + + + An invalid request URI was provided. The request URI must either be an absolute URI or BaseAddress must be set. + + + The server returned an invalid or unrecognized response. + + + An invalid character was found in header name. + + + When using CookieUsePolicy.UseSpecifiedCookieContainer, the CookieContainer property must not be null. + + + Only 'http' and 'https' schemes are allowed. + + + A request message must be provided. It cannot be null. + + + The specified value must be greater than {0}. + + + The specified value is not a valid 'From' header string. + + + The process cannot access the file because it is being used by another process. + + + Unable to read data from the transport connection. The connection was closed before all data could be read. Expected {0} bytes, read {1} bytes. + + + An invalid character was found in the mail header: '{0}'. + + + The character set provided in ContentType is invalid. Cannot read content as string using an invalid character set. + + + Misused header name. Make sure request headers are used with HttpRequestMessage, response headers with HttpResponseMessage, and content headers with HttpContent objects. + + + An error occurred while sending {0}. {1} + + + Could not find a part of the path '{0}'. + + + Both 'Content-Length' and 'Transfer-Encoding: chunked' headers can not be specified at the same time. + + + The username for a credential object cannot be null or empty. + + + The buffer was not long enough. + + + The async operation did not return a System.Threading.Tasks.Task object. + + + The stream does not support concurrent I/O read or write operations. + + + When using a non-null Proxy, the WindowsProxyUsePolicy property must be set to WindowsProxyUsePolicy.UseCustomProxy. + + + Content set to '<null>'. + + + Unable to find the specified file. + + + Specified file length was too large for the file system. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + Error while copying content to a stream. + + + Handler did not return a response message. + + + The specified string is not in the form required for an e-mail address. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + The write operation failed, see inner exception. + + + 'Transfer-Encoding: chunked' header can not be used when content object is not specified. + + + The number of elements is greater than the available space from arrayIndex to the end of the destination array. + + + The libcurl library in use ({0}) and its SSL backend ("{1}") do not support custom handling of certificates. A libcurl built with OpenSSL is required. + + + The read operation failed, see inner exception. + + + Request for {0} was canceled. + + + The field cannot be longer than {0} characters. + + + Access to the path '{0}' is denied. + + + The {0} property must be set to '{1}' to use this property. + + + Type '{0}.CopyToAsync()' did not return a System.Threading.Tasks.Task object. + + + The HTTP response headers length exceeded the set limit of {0} bytes. + + + The value '{0}' is not supported for property '{1}'. + + + This instance has already started one or more requests. Properties can only be modified before sending the first request. + + + The '{0}'='{1}' part of the cookie is invalid. + + + Could not find a part of the path. + + + The libcurl library in use ({0}) does not support HTTPS. + + + The header name format is invalid. + + + The base address must be an absolute URI. + + + The request message was already sent. Cannot send the same request message multiple times. + + + CookieContainer property must not be null. + + + When using WindowsProxyUsePolicy.UseCustomProxy, the Proxy property must not be null. + + + Buffering more than {0} bytes is not supported. + + + The format of value '{0}' is invalid. + + + Invalid range. At least one of the two parameters must not be null. + + + The file '{0}' already exists. + + + The handler was disposed of while active operations were in progress. + + + Value '{0}' is not a valid Base64 string. Error: {1} + + + The inner handler has not been assigned. + + + The specified value is not a valid quoted string. + + + The requested security protocol is not supported. + + + Request for {0} completed successfully. Returning response {1}: {2} + + + The specified value is not a valid 'Host' header string. + + + The value cannot be null or empty. + + + The mail header is malformed. + + + Could not find file '{0}'. + + + The given header was not found. + + + The format of the HTTP method is invalid. + + + Value for header '{0}' has invalid format. Value: '{1}'. + + + The stream was already consumed. It cannot be read again. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.NameResolution.SR.resw b/obj/x86/Debug/FxResources.System.Net.NameResolution.SR.resw new file mode 100644 index 0000000..6b53a65 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.NameResolution.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + IPv4 address 0.0.0.0 and IPv6 address ::0 are unspecified addresses that cannot be used as a target address. + + + The size of {0} is too long. It cannot be longer than {1} characters. + + + {0} can only be called once for each asynchronous operation. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + This operation cannot be performed on a completed asynchronous result object. + + + Exception in {0}::{1} - {2}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.NetworkInformation.SR.resw b/obj/x86/Debug/FxResources.System.Net.NetworkInformation.SR.resw new file mode 100644 index 0000000..7286352 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.NetworkInformation.SR.resw @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + An error was encountered while parsing network information from the operating system. + + + An invalid physical address was specified. + + + The information requested in unavailable on the current platform. + + + This property is not implemented by this class. + + + {0} can only be called once for each asynchronous operation. + + + An error was encountered while querying information from the operating system. + + + No loopback interface was found on the local machine. + + + The collection is read-only. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + This method is not implemented by this class. + + + This operation cannot be performed on a completed asynchronous result object. + + + Exception in {0}::{1} - {2}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Primitives.SR.resw b/obj/x86/Debug/FxResources.System.Net.Primitives.SR.resw new file mode 100644 index 0000000..f779a2f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Primitives.SR.resw @@ -0,0 +1,2499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A Conditional Range request cannot be constructed. + + + A derived type '{0}' is responsible for parsing this Uri instance. The base implementation must not be used. + + + The cached version is invalid, assuming HTTP 1.0. + + + Sum of offset and count cannot be greater than the length of the buffer. + + + A 206 Response has been received and either ETag or Last-Modified header value does not match cache entry. + + + Can't convert Uri path '{0}' using encoding '{1}'. + + + Cache Cache-Control : {0}. + + + {0}, Exception : {1}. + + + IPv4 address 0.0.0.0 and IPv6 address ::0 are unspecified addresses that cannot be used as a target address. + + + ...Dumping... + + + Unexpected exception in {0}. + + + {0}: The socket must not be bound or connected. + + + The stream has to be read/write. + + + The {0} operation was called on an incoming request with WebSocket version '{1}', expected '{2}'. + + + Client does not have permission to submit mail to this server. + + + This FTP request is configured to use a proxy through HTTP protocol. Cache revalidation and partially cached responses are not supported. + + + You must call the Listen method before performing this operation. + + + The value size of the cookie is '{0}'. This exceeds the configured maximum size, which is '{1}'. + + + Content-Length or Chunked Encoding cannot be set for an operation that does not write data. + + + The requested FTP command is not supported when using HTTP proxy. + + + WebPermission demand failed for redirect URI. + + + No service name check because the authentication was from a client on the local machine. + + + A WebSocket operation was called on a request or response that is not a WebSocket. + + + Request Condition : If-None-Match:{0}. + + + Security package '{0}' was not found. + + + The handshake failed due to an unexpected packet format. + + + This authenticated context does not support data encryption. + + + The {0} method cannot be called when another {1} operation is pending. + + + No service name check because the channel binding was already checked. + + + The {0} operation was called on an incoming WebSocket request without required '{1}' header. + + + Releasing FTP connection#{0}. + + + Response chunk format is invalid + + + {0}(In-Buffers count={1}, Out-Buffer length={2}, returned code={3}). + + + Keep-Alive and Close may not be set using this property. + + + Accepted connection from {0} to {1}. + + + An invalid Unicode character by IDN standards was specified in the host. + + + There are no permissions to check. + + + The URI scheme for the supplied IWebProxy has the illegal value '{0}'. Only 'http' is supported. + + + Invalid CacheControl header : {0}. + + + A URI scheme name '{0}' already has a registered custom parser. + + + The stream does not support reading. + + + Server did not satisfy the range: {0}. + + + Failed to load the proxy script runtime environment from the Microsoft.JScript assembly. + + + Not Implemented + + + The specified value is not a valid base address. + + + No explicit service name check because Kerberos authentication already validates the service name. + + + Cached CacheControl : must-revalidate and Cache is not fresh. + + + Error creating the modules specified in the 'system.net/authenticationModules' configuration section. + + + This property cannot be set after writing has started. + + + The size of {0} is too long. It cannot be longer than {1} characters. + + + Left with {0} client certificates to choose from. + + + This is a multi-part MIME message. + + + Resubmitting this request because cache cannot validate the response. + + + The specified value for the socket information is invalid. + + + The TokenImpersonationLevel.Anonymous level is not supported for authentication. + + + The {0} list contains too many items; a maximum of {1} is allowed. + + + Error in processing. + + + This operation is not allowed on a security context that has already been authenticated. + + + Vary header: A Cache header field mismatch the request one, header name : {0}, cache field : {1}, request field : {2}. + + + Cannot send packets to an arbitrary host while connected. + + + WebProxy caught an exception while downloading/compiling the proxy script: {0}. + + + The target array is too small. + + + Vary header: Request and cache header fields count does not match, header name : {0}. + + + {0}, Cache is not updated based on the current cache protocol status : {1}. + + + A non-CLS Compliant Exception (i.e. an object that does not derive from System.Exception) was thrown. + + + A service name must not be null or empty. + + + Request Uri has a Query, and no explicit expiration time is provided. + + + Bytes to be written to the stream exceed the Content-Length bytes size specified. + + + Service not available, closing transmission channel. + + + The connection was closed + + + The WebSocket protocol '{0}' is invalid because it contains the invalid character '{1}'. + + + Range Request (user specified), Range: {0}. + + + Could not create SSL/TLS secure channel + + + This operation cannot be performed while the AppDomain is shutting down. + + + The parameter {0} must contain one or more elements. + + + An invalid IP address prefix was specified. + + + Client delegate did not provide a certificate; but there are other user-provided certificates. + + + Cannot get the expiry time of the SSPI context. + + + This method is not supported. + + + [MaxAge] Cannot compute Cache MaxAge, using default RequestCacheValidator.UnspecifiedMaxAge: {0}. + + + Connecting to a DnsEndPoint. + + + A response resulted from a HEAD request has different ETag header. + + + Found a wrong header field {0} read : {1}, expected : {2}. + + + Too many addresses to sort. The maximum number of addresses allowed are {0}. + + + Protocol error: A received message contains a valid signature but it was not encrypted as required by the effective Protection Level. + + + Cache update is not supported for restarted FTP responses. Restart offset : {0}. + + + The Content-Type header cannot be set to a multipart type for this request. + + + The value for '{0}' must be specified. + + + The permission '{0}={1}' cannot be added. Add a separate Attribute statement. + + + Removing default service name '{0}' from prefix '{1}'. + + + {0}, Key : {1}. + + + Cache Age : {0}, Cache MaxAge : {1}. + + + Specified value does not contain 'IPermission' as its tag. + + + Service name check failed because the client did not provide a service name and the server was configured for PolicyEnforcement.Always. + + + {0} can only be called once for each asynchronous operation. + + + An error occurred when sending the WebSocket HTTP upgrade response during the {0} operation. The HRESULT returned is '{1}' + + + The '{0}' select mode is not supported by this class. + + + The RenameTo filename cannot be null or empty. + + + The Content-Length value must be greater than or equal to zero. + + + '{0}' has to be greater than '{1}' and less than '{2}'. + + + Error creating the modules specified in the 'system.net/webRequestModules' configuration section. + + + Cache retrieve failed: {0}. + + + A Response Status Code is not 304 or 206. + + + Could be a Partial Cached Response, Size : {0}, Response Content Length : {1}. + + + {0}, Key : {1}, Commit operation failed -> {2}. + + + Service name check succeeded. + + + The byte count must not exceed {0} bytes for this stream type. + + + Caching protocol has refused the server response. To allow automatic request retrying set request.AllowAutoRedirect=true. + + + The server mode SSL must use a certificate with the associated private key. + + + Response LastModified={0}, ContentLength= {1}. + + + Bad Gateway + + + The received message type is invalid after calling {0}. {0} should only be used if no more data is expected from the remote endpoint. Use '{1}' instead to keep being able to receive data but close the output channel. + + + Help message. + + + Async context creation failed. + + + Existing cache entry should but cannot be removed due to unexpected response Status : ({0}) {1}. + + + You must write ContentLength bytes to the request stream before calling [Begin]GetResponse. + + + Adding default service name '{0}' from prefix '{1}'. + + + Invalid format of Response Content-Range:{0}. + + + Client delegate did not provide a certificate; and there are not other user-provided certificates. Need to attempt a session restart. + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value > 0. + + + The collection is read-only. + + + Can't open data connection + + + Create operation failed -> {0}. + + + There is no registered module for this authentication scheme. + + + The cache entry last synchronized time : {0}. + + + To construct a policy with PolicyEnforcement.Never, the single-parameter constructor must be used. + + + Only absolute directories are allowed for pickup directory. + + + An invalid character was found in header name. + + + Length Required + + + The requirement for mutual authentication was not met by the remote server. + + + Invalid URI: Invalid port specified. + + + Method={0}. + + + This request requires buffering data to succeed. + + + Authentication failed due to lack of credentials. + + + The supported values are Identification, Impersonation or Delegation. + + + 304 response was received on an unconditional request. + + + Once the socket has been disconnected, you can only accept again asynchronously. BeginAccept must be called on a thread that won't exit until the operation has been completed. + + + Expected length (0=none)= {0}. + + + Stream does not support writing. + + + Service not available, closing control connection + + + Unexpected server response received + + + The socket has already been bound to an io completion port. + + + Can't convert string '{0}' into UTF-8 bytes: {1} + + + Too many automatic redirections were attempted. + + + Connection closed; transfer aborted + + + A partial content stream does not support this operation or some method argument is out of range. + + + ScriptEngine was notified of a change in the IP configuration and will update WebProxy settings. + + + Expires (0=none)= {0}. + + + No default service name removed for prefix '{0}'. + + + The number of specified IP addresses has to be greater than 0. + + + Unsupported WebSocket version. + + + Invalid URI: The Uri scheme is too long. + + + Header values cannot be longer than {0} characters. + + + Accept this response as valid based on the retry count : {0}. + + + unknown + + + Existing cache entry is removed based on Policy : {0}. + + + A response resulted from a HEAD request has different Content-MD5 header. + + + A call to SSPI failed, see inner exception. + + + X509Certificate is not supported. Use X509Certificate2 instead. + + + The specified value must be greater than 0. + + + Accept this response base on the retry count : {0}. + + + Previous operation is still in progress. + + + Ranges other than bytes are not implemented. + + + Received response [{0}] + + + Seeking is not supported on this stream. + + + The '{0}' instance cannot be used for communication because it has been transitioned into the '{1}' state. + + + Existing entry is removed because it was found invalid. + + + The WebSocket client request requested '{0}' protocol(s), but server is only accepting '{1}' protocol(s). + + + No request headers are found in cached metadata to test based on the cached response Vary header. + + + Exception thrown while reading Registry key '{0}': {1} + + + Unable to create another web proxy script environment at this time. + + + Can't open WinHttp session. Error code: {0}. + + + {0}, Nothing was written to the stream, do not commit that cache entry. + + + An invalid character was found in the mail header: '{0}'. + + + Cannot serve from Cache, Range:{0}. + + + Cannot Parse Cache HTTP Status Line: {0}. + + + The operation is not allowed on non-connected sockets. + + + The payload size is limited to {0}, attempted set it to {1}. + + + The generic authority '{0}' is not a valid dns name. + + + None of the discovered or specified addresses match the socket address family. + + + An exception occurred during a WebClient request. + + + The underlying list has been changed and the enumeration is out of date. + + + Remote certificate: {0}. + + + The supplied EndPoint of AddressFamily {0} is not valid for this Socket, use {1} instead. + + + Selected certificate: {0}. + + + The message type '{0}' is not allowed for the '{1}' operation. Valid message types are: '{2}, {3}'. To close the WebSocket, use the '{4}' operation instead. + + + Response freshness is not within the specified policy limits. + + + After Response Cache Validation. + + + Cannot get IIS pickup directory. + + + A partial response is not combined with existing cache entry, Cache Stream Size : {0}, response Range Start : {1}. + + + The address has an invalid host name: {0}. + + + Using the cached credential handle. + + + {0} was called with a null '{1}' parameter. + + + An invalid physical address was specified. + + + Failed to impersonate a thread doing authentication of a Web Request. + + + {0}, MaxStale : {1}, Update Status : {2}. + + + Unable to send to a recipient. + + + Invalid hex digit '{0}'. + + + A response resulted from a HEAD request has different Content-Length header. + + + This method is not supported by this class. + + + Mailbox unavailable. + + + The index value is outside the bounds of the array. + + + Collection was modified after the enumerator was instantiated. + + + SSL must not be enabled for pickup-directory delivery methods. + + + Cannot set null or blank methods on request. + + + This operation cannot be performed while a message is being sent. + + + The decryption operation failed, see inner exception. + + + Not logging data from file: {0}. + + + Received a request with an unsupported authentication scheme, Authorization:{0} SupportedSchemes:{1}. + + + BeginConnect cannot be called while another asynchronous operation is in progress on the same Socket. + + + A 5XX Response and Cache-Only like policy, serving from cache. + + + Response Cache-Control : public. + + + The system proxy settings contain an invalid proxy server setting: '{0}'. + + + The {0} parameter must represent a valid Uri (see inner exception). + + + Ambiguous Redirect + + + The request (Method : {0}) cannot be served from the cache and will fail because of the effective CachePolicy: {1}. + + + The starting position for 206 Response is not adjusted to the end of cache entry. + + + Completed. + + + An error occurred when adding a cookie to the container. + + + The WebSocket is in an invalid state ('{0}') for this operation. Valid states are: '{1}' + + + Response can be cached although it will always require revalidation. + + + Remote certificate has errors: + + + User not local; will forward to specified path. + + + Default credentials cannot be supplied for the {0} authentication scheme. + + + WebProxy failed to parse the auto-detected location of a proxy script:\"{0}\" into a Uri. + + + Received headers\r\n{{\r\n{0}}}. + + + Invalid format of Request Range:{0}. + + + A Conditional Range request on Http <= 1.0 is not implemented. + + + The status code must be exactly three digits. + + + Invalid URI: The hostname could not be parsed. + + + Unable to create a transport connection. + + + No channel binding check because the underlying platform does not support extended protection. + + + Error creating the Web Request caching policy specified in the 'system.net/requestCaching' configuration section. + + + Need account for storing files + + + We have user-provided certificates. The server has specified {0} issuer(s). Looking for certificates that match any of the issuers. + + + The SSL version is not supported. + + + Local error in processing + + + The maximum number of service points was exceeded. + + + {0}, Cache Entry not found, freshness result : Undefined. + + + Request Condition : If-Range:{0}. + + + This property is not supported by this class. + + + Cache LastModified={0}, ContentLength= {1}. + + + Page type unknown + + + No Content + + + Entry Status Line : HTTP/{0} {1} {2}. + + + Can't open Registry key '{0}'. + + + An unexpected error occurred on a receive + + + The cached response is not supported for a request with the specified request method. + + + Insufficient permissions for setting the configuration section '{0}'. + + + The date is in an invalid format. + + + A resolved ServicePoint host could be wrongly considered as a remote server. + + + WebProxy failed to autodetect a Uri for a proxy script. + + + The AddressFamily {0} is not valid for the {1} end point, use {2} instead. + + + The Registry value '{0}' was either empty or not a string type. + + + LastModified (0=none)= {0}. + + + The underlying connection was closed: {0}. + + + Set Expires ={0}. + + + Not connected. + + + This operation cannot be performed after the request has been submitted. + + + This operation is only allowed using a successfully authenticated context. + + + The specified value cannot be negative. + + + Please call the {0} method before calling this method. + + + All lists are either null or empty. + + + The specified value is not a valid '{0}'. + + + Either the target name is incorrect or the server has rejected the client credentials. + + + Do not update Cached Headers. + + + Insufficient permissions for setting the configuration property '{0}'. + + + The stream should have been consumed before resetting. + + + Cache entry Vary header contains '*'. + + + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndWrite was called multiple times with the same IAsyncResult. + + + {0}, stream : {1}. + + + Can't detach Url group from request queue. Status code: {0}. + + + The specified media type is invalid. + + + {0} was called with an invalid parameter. + + + Header name is invalid + + + Received a request with an unmatched or no authentication scheme. AuthenticationSchemes:{0}, Authorization:{1}. + + + Moved Redirect + + + An existing cache entry has to be discarded. + + + Found Redirect + + + File unavailable (e.g., file busy) + + + The specified port is invalid. The port must be greater than 0. + + + Non Authoritative Information + + + NetworkStream does not support a 0 millisecond timeout, use a value greater than zero for the timeout instead. + + + Not logged in + + + The URI prefix is not recognized. + + + The AsyncResult is not valid. + + + Not Acceptable + + + A Conditional Request cannot be constructed. + + + Cannot update cache with HEAD response if the cache entry does not exist. + + + The cached response is not supported for a request with a content body. + + + No default service name added for prefix '{0}'. + + + Invalid header name + + + The WebSocket request or response contained unsupported header(s). + + + The message length limit was exceeded + + + Multiple buffers cannot be used with this method. + + + Not Modified + + + Creation of a combined response has been requested from the cache protocol. + + + '{0}' Client can only accept InterNetwork or InterNetworkV6 addresses. + + + Invalid URI: The URI is empty. + + + Specified value does not have a ':' separator. + + + The stream is corrupted due to an invalid SSL version number in the SSL protocol header. + + + The close status description '{0}' is too long. The UTF8-representation of the status description must not be longer than {1} bytes. + + + The specified proxy module type is not public. + + + The Item property can only be used with singleton fields. + + + {0} cannot be called when another {1} operation is pending. + + + This property is not implemented by this class. + + + The operation is not allowed on objects of type {0}. Use only objects of type {1}. + + + [Age1] NowTime-Date Header : {0}, Date Header: {1}. + + + Temporary Redirect + + + Partial Content + + + One of the streams has already been used and can't be reset to the origin. + + + No channel binding check for the trusted proxy scenario. + + + The handshake failed, see inner exception. + + + Specified value does not contain a 'class' attribute. + + + The '{0}' element contains one or more invalid values. + + + Attempting to restart the session using the user-provided certificate: {0}. + + + {0}, result : {1}. + + + The supplied string is not a valid HTTP token. + + + The '{0}' protocol is not supported by this class. + + + Once authentication is attempted as the client or server, additional authentication attempts must use the same client or server role. + + + HTTP 1.0 Response Last-Modified header value is older than that of the cache entry. + + + Default credentials are not supported on an FTP request. + + + The close status description '{0}' is invalid. When using close status code '{1}' the description must be null. + + + A different range specifier has already been added to this request. + + + A relative URI cannot be created because the 'uriString' parameter represents an absolute URI. + + + Custom channel bindings are not supported. + + + Request Uri has a Query, and cached response is from HTTP 1.0 server. + + + Command not implemented. + + + IPv4 is not installed. + + + This collection holds response headers and cannot contain the specified request header. + + + This collection holds request headers and cannot contain the specified response header. + + + No service name check because the underlying platform does not support extended protection. + + + Response Cache-Control : no-store. + + + Exceeded storage allocation (for current directory or data set) + + + The Security Service Providers don't support extended protection. Please install the latest Security Service Providers update. + + + This type of FTP request does not return a response stream. + + + Gone + + + 'Content-Length' header value is invalid + + + Buffer and BufferList properties cannot both be non-null. + + + [MaxAge] Absolute time expiration check (sensitive to clock skew), cache Expires: {0}. + + + Set LastModified ={0}. + + + The specified string is not in the form required for an e-mail address. + + + Response is null so this Request should fail. + + + Exception in callback: {0}. + + + Syntax error, command unrecognized + + + Re-authentication failed because the remote party continued to encrypt more than {0} bytes before answering re-authentication. + + + IPv6 is not installed. + + + No channel binding check because extended protection is disabled. + + + An unexpected exception while retrieving the local address list: {0}. + + + Specified value has invalid Control characters. + + + {0} can only be called once for each asynchronous operation. + + + System.Net performance counters initialization completed with errors. See System.Net trace file for more information. + + + Not Found + + + Received status line: Version={0}, StatusCode={1}, StatusDescription={2}. + + + Client Policy MinFresh : {0}. + + + Only Uri prefixes starting with 'http://' or 'https://' are supported. + + + Invalid URI: The Authority/Host could not be parsed. + + + {0} has requested a cache response but the entry does not exist (Stream.Null). + + + The SMTP server requires a secure connection or the client was not authenticated. + + + Unable to read data from the transport connection: {0}. + + + This method cannot be called twice. + + + File name not allowed + + + Can't close Url group. Status code: {0}. + + + Only HTTP/1.0 and HTTP/1.1 version requests are currently supported. + + + Internal Server Error + + + The server returned an invalid response to the EHLO command. + + + Reset Content + + + Cached CacheControl : no-cache. + + + The TcpListener must not be listening before performing this operation. + + + The server returned an invalid response in the authentication handshake. + + + {0}#{1} - Closed as idle. + + + Valid as fresh or because of Cache Policy : {0}. + + + Suppressing cache update since the entry was synchronized within the last minute. + + + Response revalidation is always required but neither Last-Modified nor ETag header is set on the response. + + + {0}, No cache entry revalidation is needed. + + + This property is not supported for protocols that do not use URI. + + + Update Cached Headers. + + + Specified value has invalid non-ASCII characters. + + + Cannot handle redirect from HTTP/HTTPS protocols to other dissimilar ones. + + + Sending headers\r\n{{\r\n{0}}}. + + + Cannot parse all strings in system metadata as \"name:value\", offending string: {0}. + + + Remote certificate has no errors. + + + The MIME transfer encoding '{0}' is not supported. + + + Updating cache entry last synchronized time : {0}. + + + Cannot cast target permission type. + + + Authentication failed because the remote party has closed the transport stream. + + + The buffer type '{0}' is invalid. Valid buffer types are: '{1}', '{2}', '{3}', '{4}', '{5}'. + + + Caching is not supported for non-binary FTP request mode. + + + Found the certificate in the {0} store. + + + The WebSocket client did not request any protocols, but server attempted to accept '{0}' protocol(s). + + + MaxStale (sec) : {0}. + + + The SSPI context is not valid. + + + The Buffer space specified by the Count property is insufficient for the AcceptAsync method. + + + Locating the private key for the certificate: {0}. + + + The target array is too small to contain all the headers. + + + Cannot re-call BeginGetRequestStream/BeginGetResponse while a previous call is still in progress. + + + The remote name could not be resolved + + + The WebSocket is in an invalid state for this operation. The '{0}' method has already been called before on this instance. Use '{1}' instead to keep being able to receive data but close the output channel. + + + The response string '{0}' has invalid format. + + + Failed to revert the thread token after authenticating a Web Request. + + + Error code {0} was received from server response. + + + Client Policy MaxStale : {0}. + + + Authentication failed, see inner exception. + + + Request Timeout + + + Client does not have permission to Send As this sender. + + + Trying to find a matching certificate in the certificate store. + + + An existing cache entry should be discarded. + + + An invalid character was found in the Base-64 stream. + + + The status response ({0}) is not expected in response to '{1}' command. + + + {0} Cannot Remove (throw): Key : {1}, Error : {2}. + + + Mailbox name not allowed. + + + RAS is not supported. Can't create RasHelper instance. + + + Syntax error, command unrecognized. + + + The parameter {0} must not be of type DnsEndPoint. + + + {0}, Key : {1}, Delete operation failed -> {2}. + + + [MaxAge] Cannot compute Cache MaxAge, use 10% since LastModified: {0}, LastModified: {1}. + + + {0}, Key : {1}, -> Status : {2}. + + + Unable to send to all recipients. + + + Sending command [{0}] + + + Cannot update cache if Response status == 304 and a cache entry was not found. + + + The IWebProxy object associated with the request did not allow the request to proceed + + + An exception caused the WebSocket to enter the Aborted state. Please see the InnerException, if present, for more details. + + + File unavailable (e.g., file not found, no access) + + + This operation is not supported for a relative URI. + + + Cannot close stream until all bytes are written. + + + The byte array must have a length of at least '{0}' bytes. + + + WebClient does not support concurrent I/O operations. + + + The cached entry has Authorization Header and cache is not fresh. + + + We have user-provided certificates. The server has not specified any issuers, so try all the certificates. + + + Mailbox unavailable. + + + Can't queue counter initialization logic on a thread pool thread. System.Net performance counters will not be available. + + + The URI parser instance passed into 'uriParser' parameter is already registered with the scheme name '{0}'. + + + {0}, UseCount : {1}, File : {2}. + + + Cannot parse HTTP headers in entry metadata, offending string: {0}. + + + Disable MaxStale (set to 0). + + + The WebSocket is not connected. + + + Certificate is of type X509Certificate2 and contains the private key. + + + Proxy Authentication Required + + + Certificate name mismatch. + + + The Content-Type header cannot be changed from its default value for this request. + + + The '{0}'='{1}' part of the cookie is invalid. + + + Specified value has invalid HTTP Header characters. + + + An exception occurred during a Ping request. + + + Response=304 or Request was HEAD, updating cache entry. + + + The WebSocket instance cannot be used for communication because it has been transitioned into an invalid state. + + + Invalid SSPI BinaryNegotiationElement. + + + Unable to write data to the transport connection: {0}. + + + HTTP.SYS doesn't support extended protection. Please install the latest HTTP.SYS update. + + + Opening Certificate store {0} failed, exception: {1}. + + + This was Not a GET, HEAD or POST request. + + + Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. + + + Empty string is not a valid subprotocol value. Please use \"null\" to specify no value. + + + The received message type '{2}' is invalid after calling {0}. {0} should only be used if no more data is expected from the remote endpoint. Use '{1}' instead to keep being able to receive data but close the output channel. + + + Data stream is still open. + + + [Now Time (UTC)] : {0}. + + + Redirect Method + + + An asynchronous call is already in progress. It must be completed or canceled before you can call this method. + + + The server has rejected the client credentials. + + + Chunked encoding upload is not supported on the HTTP/1.0 protocol. + + + The WebSocket request or response operation was called with unsupported protocol(s). + + + POST Response without Cache-Control or Expires headers. + + + Method Not Allowed + + + FTP Method names cannot be null or empty. + + + Unknown Windows installation type '{0}'. + + + The connection was closed unexpectedly + + + The value of the '{0}' parameter ({1}) must be less than or equal to {2}. + + + The read operation failed, see inner exception. + + + Argument must be a string instead of {0}. + + + The WebSocket has already been started. + + + The ServicePointManager does not support proxies with the {0} scheme. + + + Performance counter category '{0}' doesn't exist. No System.Net performance counter values available. + + + Conflict + + + The parameter value '{0}={1}' is invalid. + + + Failure sending mail. + + + Cannot get the effective time of the SSPI context. + + + The specified value is not a valid GMT time. + + + The specified value is not a valid day of the week. + + + Cannot determine the frame size or a corrupted frame was received. + + + The cache protocol method {0} has returned unexpected status: {1}. + + + Moved Permanently Redirect + + + The request was canceled + + + Status success + + + The operation is not allowed on non-stream oriented sockets. + + + ScriptEngine was notified of a potential change in the system's proxy settings and will update WebProxy settings. + + + Authentication failed on the remote side (the stream might still be available for additional authentication attempts). + + + An extended protection policy must specify either a custom channel binding or a custom service name collection. + + + The remote party closed the WebSocket connection without completing the close handshake. + + + Can't determine OS installation type: Can't read key '{0}'. Exception message: {1} + + + Updating headers on 304 response. + + + Insufficient system storage. + + + Syntax error in parameters or arguments + + + The argument value '{0}' is invalid for creating a SocketPermission object. + + + Command parameter not implemented. + + + Unauthorized + + + An unexpected error occurred on a send + + + A connection that was expected to be kept alive was closed by the server + + + Cannot subset Regex. Only support if both patterns are identical. + + + The {0} operation was called on an incoming request that did not specify a '{1}: {2}' header or the {2} header not contain '{3}'. {2} specified by the client was '{4}'. + + + {0}(In-Buffer length={1}, Out-Buffer length={2}, returned code={3}). + + + Invalid contents for cookie : '{0}'. + + + Request Condition : If-Modified-Since:{0}. + + + The specified content type is invalid. + + + The challenge string is not valid for this authentication module: {0} + + + The request cache-only policy does not allow a network request and the response is not found in cache + + + Use the Blocking property to change the status of the Socket. + + + UriComponents.SerializationInfoString must not be combined with other UriComponents. + + + The '{0}' header must be modified using the appropriate property or method. + + + This protocol version is not supported. + + + You may not perform this operation after calling the Listen method. + + + Can't convert bytes '{0}' into UTF-16 characters: {1} + + + Use Proxy Redirect + + + WebProxy caught an exception while executing the ScriptReturn script: {0}. + + + Cache is not updated based on the FTP response status. Expected : {0}, actual : {1}. + + + {0} has returned a range cache stream, Offset : {1}, Length : {2}. + + + FTP Response Status={0}, {1}. + + + The decryption operation failed, see inner exception. + + + Request carries Authorization Header and no s-maxage, proxy-revalidate or public directive found. + + + Can't specify proxy discovery timeout. Error code: {0}. + + + Chunked encoding must be set via the SendChunked property. + + + The server returned a status code outside the valid range of 100-599. + + + {0}, Lookup operation failed -> {1}. + + + Valid based on Status Code: {0}. + + + Existing cache entry is removed since a restarted response was changed on the server, cache LastModified date : {0}, new LastModified date : {1}. + + + Redirect + + + The WebSocket schemes must be registered with the HttpWebRequest class. + + + A recipient must be specified. + + + Cannot block a call on this socket while an earlier asynchronous call is in progress. + + + Request Method : {0}. + + + A pipeline failure occurred + + + The server failed the passive mode request with status response ({0}). + + + HttpWebResponse date is older than of the cached one. + + + The specified content disposition is invalid. + + + The From parameter cannot be less than To. + + + [Age2] AgeHeader : {0}. + + + [Age1] Now - LastSynchronized : [Age1] Now - LastSynchronized : {0}, Last Synchronized: {1}. + + + The argument must be a value greater than {0}. + + + Reading is not supported on this stream. + + + Server Unavailable + + + Http Version Not Supported + + + Need to remove an invalid cache entry with status code == 304(NotModified). + + + Failed to listen on prefix '{0}' because it conflicts with an existing registration on the machine. + + + Bad sequence of commands. + + + The request could not be satisfied using a cache-only policy + + + A null session key was obtained from SSPI. + + + Invalid URI: The URI scheme is not valid. + + + Service closing transmission channel. + + + The server response was: {0} + + + Invalid URI: There is an invalid sequence in the string. + + + The in-progress method {0} must be completed first. + + + The security context has expired. + + + An invalid IP address was specified. + + + For this RequestCache object, {0} access is denied. + + + Writing is not supported on this stream. + + + The buffer length must not exceed 65500 bytes. + + + Stream does not support reading. + + + Received an invalid authentication frame. The message size is limited to {0} bytes, attempted to read {1} bytes. + + + Request Range (not in Cache yet) : Range:{0}. + + + The proxy name could not be resolved + + + Response with no CacheControl and Status Code : {0}. + + + ...Dumping Metadata... + + + Response Cache-Control : private+Headers, removing those headers. + + + AuthenticationType and ServicePrincipalName cannot be specified as null for server's SSPI Negotiation module. + + + Enable MaxStale (sec) ={0}. + + + Payment Required + + + Not listening. You must call the Start() method before calling this method. + + + Cookie already exists. + + + The WebSocket client sent a blank '{0}' header; this is not allowed by the WebSocket protocol specification. The client should omit the header if the client is not negotiating any sub-protocols. + + + ShellServices.ShellExpression.Parse() was called with a badly formatted 'pattern':{0}. + + + Value of offset cannot be negative or greater than the length of the buffer. + + + Sending 500 response, AuthenticationSchemeSelectorDelegate threw an exception: {0}. + + + The WebSocket protocol is not supported on this platform. + + + The collection is read-only. + + + Start mail input; end with <CRLF>.<CRLF>. + + + A from address must be specified. + + + Querying the {0} Channel Binding is not supported. + + + The From or To parameter cannot be less than 0. + + + The socket handle is not valid. + + + The remote server returned an error: {0}. + + + Created connection from {0} to {1}. + + + A Cache Entry is partial and the user request has non zero ContentOffset : {0}. A restart from cache is not supported for partial cache entries. + + + The value of the date string in the header is invalid. + + + See Other + + + Gateway Timeout + + + The '{0}' attribute cannot appear when '{1}' is present. + + + Forbidden + + + Service ready. + + + User not local; please try a different path. + + + The proxy JScript file threw an exception while being initialized: {0}. + + + [MaxAge] Cache s_MaxAge : {0}. + + + Smtp server returned an invalid response. + + + The specified value is not a valid Host header string. + + + Received an unexpected EOF or 0 bytes from the transport stream. + + + Invalid cast from {0} to {1}. + + + The specified value is not valid in the '{0}' enumeration. + + + Argument must be between {0} and {1}. + + + {0} -> Filename : {1}, Status : {2}. + + + Cookie format error. + + + Cannot find the certificate in either the LocalMachine store or the CurrentUser store. + + + The write operation failed, see inner exception. + + + The hash algorithm is not supported by Digest authentication: {0}. + + + 304 response was received on an unconditional request, but expected response code is 200 or 206. + + + This stream does not support seek operations. + + + The SMTP host was not found. + + + The supplied {0} is an invalid size for the {1} end point. + + + {0}: an exception (ignored) on {1} : {2}. + + + Transaction failed. + + + The '{0}' attribute can only appear when '{1}' is present. + + + Internal Error: A socket handle could not be bound to a completion port. + + + The remote certificate is invalid according to the validation procedure. + + + Authentication failed. + + + Multiple/complex ranges are not implemented. + + + No cache protocol is available for this request. + + + System.Net performance counters initialization completed successful. + + + The client or server is only configured for E-mail addresses with ASCII local-parts: {0}. + + + A 5XX Response that can be replaced by existing cache entry. + + + ...Dumping Cache Context... + + + Cache is not updated based on the request Method : {0}. + + + Set new Metadata. + + + The ServiceNameCollection must contain at least one service name. + + + Serving Partial Response (206) from cache, Content-Range:{0}. + + + The requested URI is invalid for this FTP command. + + + Command not implemented + + + Cannot access a closed Stream. + + + Failing request with the WebExceptionStatus : {0}. + + + Remote certificate was verified as invalid by the user. + + + You must call the Bind method before performing this operation. + + + {0}, Key : {1}, Remove operation failed -> Status : {2}. + + + The stream does not support concurrent IO read or write operations. + + + The supplied authentication module is not registered. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + Dumping acceptable service names: + + + The value class attribute is not valid. + + + Invalid URI: The Authority/Host cannot end with a backslash character ('\\'). + + + GetContentStream() can only be called once. + + + Offsets are not supported when sending an FTP request over an HTTP proxy. + + + Invalid URI: A Dos path must be rooted, for example, 'c:\\'. + + + {0}, Key : {1}, Committed entry as partial, not cached bytes count : {2}. + + + This operation cannot be performed after the response has been submitted. + + + Saving Request Headers, Vary: {0}. + + + The ContentID cannot contain a '<' or '>' character. + + + {0}, Key : {1}, Update operation failed -> {2}. + + + Syntax error in parameters or arguments. + + + HttpWebResponse is null. + + + Set LastSynchronized ={0}. + + + Shadow stream must be writable. + + + Cached CacheControl : no-cache, Removing some headers. + + + Suppressing cache headers update on 304, new headers don't add anything. + + + The value '{0}' passed for the UriKind parameter is invalid. + + + SSL cannot be enabled when using a proxy. + + + No service name check because the client did not provide a service name and the server was configured for PolicyEnforcement.WhenSupported. + + + Remote certificate was verified as valid by the user. + + + Only Uri prefixes with a valid hostname are supported. + + + Failed to create a valid Identity for an incoming request. + + + No service name check because extended protection is disabled. + + + This method is not implemented by this class. + + + Exceeded storage allocation. + + + No channel binding check for requests without a secure channel. + + + The requested security package is not supported. + + + Can't create Uri from string '{0}://{1}{2}{3}'. + + + The '{0}' header value '{1}' is invalid. + + + [Age1] Now - LastSynchronized + AgeHeader : {0}, Last Synchronized: {1}, Age Header: {2}. + + + The operation is not allowed on a non-blocking Socket. + + + The shell expression '{0}' could not be parsed because it is formatted incorrectly. + + + The specified value is not valid. + + + An error occurred when parsing the Cookie header for Uri '{0}'. + + + Bad Request + + + The specified value cannot be false. + + + The transport stream instance passed in the RangeStream constructor is not seekable and therefore is not supported. + + + The request was aborted: {0}. + + + The specified singleton field already exists in the collection and cannot be added. + + + Protocol error: cannot proceed with SSPI handshake because an empty blob was received. + + + Invalid URI: The Uri string is too long. + + + User Request contains a conditional header. + + + {0}, Error deleting a Filename : {1}. + + + The requested security protocol is not supported. + + + Received incomplete authentication message. Remote party has probably closed the connection. + + + Specified value has invalid CRLF characters. + + + Serving Request Range from cache, Range:{0}. + + + The data connection was made from an address that is different than the address to which the FTP connection was made. + + + No acceptable service names were configured! + + + Invalid URI: The username:password construct is badly formed. + + + The handshake failed. The remote side has dropped the stream. + + + The cached entry has Authorization Header and no Cache-Control directive present that would allow to use that entry. + + + Response Status : {0}. + + + Can't retrieve proxy settings for Uri '{0}'. Error code: {1}. + + + The socket must not be bound or connected. + + + Invalid URI: The format of the URI could not be determined. + + + The Quality of Protection value is not supported by Digest authentication: {0}. + + + Already connected. + + + A security requirement was not fulfilled during authentication. Required: {0}, negotiated: {1}. + + + Duplicate protocols are not allowed: '{0}'. + + + No service names could be determined from the registered prefixes. Either add prefixes from which default service names can be derived or specify an ExtendedProtectionPolicy object which contains an explicit list of service names. + + + An invalid character was found in header value. + + + This operation cannot be performed on a completed asynchronous result object. + + + Premature end of stream. + + + The encryption operation failed, see inner exception. + + + This property cannot be set to an empty string. + + + TransferEncoding requires the SendChunked property to be set to true. + + + All required Request headers match based on cached Vary response header. + + + Client Policy MaxAge : {0}. + + + Cannot re-call {0} while a previous call is still in progress. + + + Cache entry Vary header is empty. + + + Only Uris starting with 'ws://' or 'wss://' are supported. + + + {0} has requested a cache response but the cached stream is null. + + + Insufficient storage space in system + + + There were not enough free threads in the ThreadPool to complete the operation. + + + [MaxAge] Cache MaxAge : {0}. + + + Response explicitly allows caching : Cache-Control: {0}. + + + This Cache Entry does not carry HTTP response headers. + + + A remote side security requirement was not fulfilled during authentication. Try increasing the ProtectionLevel and/or ImpersonationLevel. + + + Insufficient permissions for setting the configuration element '{0}'. + + + There is already one outstanding '{0}' call for this WebSocket instance. ReceiveAsync and SendAsync can be called simultaneously, but at most one outstanding operation for each of them is allowed at the same time. + + + The cache protocol returned a cached response but the cache entry is invalid because it has a null stream. (Cache Key : {0}). + + + Resubmitting request. + + + The encryption operation failed, see inner exception. + + + The mail header is malformed. + + + Current OS installation type is '{0}'. + + + Replacing cache entry metadata with 'HTTP/1.1 200 OK' status line to satisfy HTTP cache protocol logic. + + + {0} failed with error {1}. + + + A 304 response resulted from a HEAD request has different Last-Modified header. + + + This validator should not be called for policy : {0}. + + + The close status code '{0}' is reserved for system use only and cannot be specified when calling this method. + + + The request failed because no cache entry (CacheKey : {0}) was found and the effective CachePolicy is {1}. + + + Only Uri prefixes ending in '/' are allowed. + + + Cache is not updated because there is no response associated with the request. + + + Service name check failed. + + + The cache protocol refused the server response. To allow automatic request retrying, set request.AllowAutoRedirect to true. + + + {0} returned {1}. + + + 100-Continue may not be set using this property. + + + System.Net performance counter initialization started. + + + A nonce parameter required for Digest authentication was not found or was preceded by an invalid parameter. + + + Buffered {0} bytes. + + + {0} failed with error {1}. + + + You must provide a request body if you set ContentLength>0 or SendChunked==true. Do this by calling [Begin]GetRequestStream before [Begin]GetResponse. + + + Existing cache entry is removed based on the request Method : {0}. + + + {0} has requested a combined response but the cached stream is null. + + + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndRead was called multiple times with the same IAsyncResult. + + + '{0}' is not a supported handle type. + + + Cache is not updated based on Policy : {0}. + + + Response is valid based on Policy : {0}. + + + {0} exception: {1}. + + + This operation is only valid for IPv6 Sockets. + + + Enumerating security packages: + + + Server does not support secure connections. + + + An internal WebSocket error occurred. Please see the innerException, if present, for more details. + + + Can't convert percent encoded value '{0}'. + + + Response Date header value is older than that of the cache entry. + + + An asynchronous socket operation is already in progress using this SocketAsyncEventArgs instance. + + + Client provided service name '{0}'. + + + Channel binding check enabled. + + + When performing a write operation with AllowWriteStreamBuffering set to false, you must either set ContentLength to a non-negative number or set SendChunked to true. + + + Once the socket has been disconnected, you can only reconnect again asynchronously, and only to a different EndPoint. BeginConnect must be called on a thread that won't exit until the operation has been completed. + + + Redirect Keep Verb + + + Multicast family is not the same as the family of the '{0}' Client. + + + The server returned status code '{0}' when status code '101' was expected. + + + An error occurred on an automatic resubmission of the request. + + + Bad sequence of commands + + + Multiple Choices Redirect + + + Exception in {0}::{1} - {2}. + + + The header name does not match this property. + + + [MaxAge] Cache Expires - Date : {0}, Expires: {1}. + + + The stream does not support writing. + + + A derived type '{0}' has reported an invalid value for the Uri port '{1}'. + + + Cannot send a content-body with this verb-type. + + + The SMTP host was not specified. + + + Cached Entry Size : {0} is too big, cannot do a range request. + + + @@SOAP Application Message + + + Response status == 304 but the cache entry does not exist. + + + FTP request method={0}. + + + {0}: {1} Closing effective cache stream, type : {2}, cache entry key : {3}. + + + Could not establish trust relationship for the SSL/TLS secure channel + + + The validation method {0}() returned a failure for this request. + + + CR must be followed by LF + + + {0}(Protocol={1}, Cipher={2} {3} bit strength, Hash={4} {5} bit strength, Key Exchange={6} {7} bit strength). + + + This operation cannot be performed while in content. + + + The server returned the filename ({0}) which is not valid. + + + The operation has timed out. + + + Unable to connect to the remote server + + + [Age1] Now - LastSynchronized + AgeHeader : {0}, Last Synchronized: {1}. + + + The specified string is not in the form required for a subject. + + + The validation method {0}() returned the unexpected status: {1}. + + + Got a certificate from the client delegate. + + + System status, or system help reply. + + + The remote server did not provide a certificate. + + + RAS supported: {0} + + + Response Cache-Control : private, and Cache is public. + + + Enumerator is positioned before the first element or after the last element of the collection. + + + The server committed a protocol violation + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value >= 0. + + + The parameter '{0}' cannot be an empty string. + + + Client Policy CacheSyncDate (UTC) : {0}, Cache LastSynchronizedUtc : {1}. + + + The parameter: {0} is not valid. Use the object returned from corresponding Begin async call. + + + The operation has timed out + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Requests.SR.resw b/obj/x86/Debug/FxResources.System.Net.Requests.SR.resw new file mode 100644 index 0000000..1b0f8ac --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Requests.SR.resw @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This property cannot be set after writing has started. + + + Header values cannot be longer than {0} characters. + + + Cannot set null or blank methods on request. + + + The request was aborted: The request was canceled. + + + This operation cannot be performed after the request has been submitted. + + + This operation is not supported. + + + The URI prefix is not recognized. + + + This property is not implemented by this class. + + + This collection holds response headers and cannot contain the specified request header. + + + {0} can only be called once for each asynchronous operation. + + + Cannot re-call BeginGetRequestStream/BeginGetResponse while a previous call is still in progress. + + + The remote server returned an error: ({0}) {1}. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + This method is not implemented by this class. + + + Cannot send a content-body with this verb-type. + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value >= 0. + + + The parameter '{0}' cannot be an empty string. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Sockets.SR.resw b/obj/x86/Debug/FxResources.System.Net.Sockets.SR.resw new file mode 100644 index 0000000..bdb603a --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Sockets.SR.resw @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + {0}: The socket must not be bound or connected. + + + This platform does not support packet information for dual-mode sockets. If packet information is not required, use Socket.Receive. If packet information is required set Socket.DualMode to false. + + + You must call the Listen method before performing this operation. + + + Not logging data from file: {0}. + + + The stream does not support reading. + + + The {0} list contains too many items; a maximum of {1} is allowed. + + + Cannot send packets to an arbitrary host while connected. + + + The connection was closed + + + The parameter {0} must contain one or more elements. + + + Connecting to a DnsEndPoint. + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value > 0. + + + Once the socket has been disconnected, you can only accept again asynchronously. BeginAccept must be called on a thread that won't exit until the operation has been completed. + + + The number of specified IP addresses has to be greater than 0. + + + The operation is not allowed on non-connected sockets. + + + None of the discovered or specified addresses match the socket address family. + + + The supplied EndPoint of AddressFamily {0} is not valid for this Socket, use {1} instead. + + + Sockets on this platform are invalid for use after a failed connection attempt. + + + The AddressFamily {0} is not valid for the {1} end point, use {2} instead. + + + The specified value cannot be negative. + + + All lists are either null or empty. + + + The specified value is not a valid '{0}'. + + + Multiple buffers cannot be used with this method. + + + '{0}' Client can only accept InterNetwork or InterNetworkV6 addresses. + + + The operation is not allowed on objects of type {0}. Use only objects of type {1}. + + + Buffer and BufferList properties cannot both be non-null. + + + {0} can only be called once for each asynchronous operation. + + + Unable to read data from the transport connection: {0}. + + + The TcpListener must not be listening before performing this operation. + + + The Buffer space specified by the Count property is insufficient for the AcceptAsync method. + + + The parameter {0} must not be of type DnsEndPoint. + + + This platform does not support connecting sockets to DNS endpoints via the instance Connect and ConnectAsync methods, due to the potential for a host name to map to multiple IP addresses and sockets becoming invalid for use after a failed connect attempt. Use the static ConnectAsync method, or provide to the instance methods the specific IPAddress desired. + + + Unable to write data to the transport connection: {0}. + + + The operation is not allowed on non-stream oriented sockets. + + + Use the Blocking property to change the status of the Socket. + + + This protocol version is not supported. + + + You may not perform this operation after calling the Listen method. + + + Cannot block a call on this socket while an earlier asynchronous call is in progress. + + + Not listening. You must call the Start() method before calling this method. + + + The socket handle is not valid. + + + Created connection from {0} to {1}. + + + Argument must be between {0} and {1}. + + + This stream does not support seek operations. + + + The supplied {0} is an invalid size for the {1} end point. + + + You must call the Bind method before performing this operation. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + The operation is not allowed on a non-blocking Socket. + + + The specified value is not valid. + + + The socket must not be bound or connected. + + + This operation cannot be performed on a completed asynchronous result object. + + + Accepted connection from {0} to {1}. + + + An asynchronous socket operation is already in progress using this SocketAsyncEventArgs instance. + + + Once the socket has been disconnected, you can only reconnect again asynchronously, and only to a different EndPoint. BeginConnect must be called on a thread that won't exit until the operation has been completed. + + + Multicast family is not the same as the family of the '{0}' Client. + + + Exception in {0}::{1} - {2}. + + + The stream does not support writing. + + + This platform does not support receiving data with Socket.AcceptAsync. Instead, make a separate call to Socket.ReceiveAsync. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.WebHeaderCollection.SR.resw b/obj/x86/Debug/FxResources.System.Net.WebHeaderCollection.SR.resw new file mode 100644 index 0000000..d6d26fd --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebHeaderCollection.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This collection holds response headers and cannot contain the specified request header. + + + This collection holds request headers and cannot contain the specified response header. + + + Specified value has invalid Control characters. + + + Specified value has invalid non-ASCII characters. + + + Specified value has invalid HTTP Header characters. + + + Specified value has invalid CRLF characters. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.WebSockets.Client.SR.resw b/obj/x86/Debug/FxResources.System.Net.WebSockets.Client.SR.resw new file mode 100644 index 0000000..a6c7e08 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebSockets.Client.SR.resw @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The {0} operation was called on an incoming request with WebSocket version '{1}', expected '{2}'. + + + A WebSocket operation was called on a request or response that is not a WebSocket. + + + The {0} operation was called on an incoming WebSocket request without required '{1}' header. + + + The WebSocket protocol '{0}' is invalid because it contains the invalid character '{1}'. + + + An error occurred when sending the WebSocket HTTP upgrade response during the {0} operation. The HRESULT returned is '{1}' + + + The received message type is invalid after calling {0}. {0} should only be used if no more data is expected from the remote endpoint. Use '{1}' instead to keep being able to receive data but close the output channel. + + + Unsupported WebSocket version. + + + The '{0}' instance cannot be used for communication because it has been transitioned into the '{1}' state. + + + The WebSocket client request requested '{0}' protocol(s), but server is only accepting '{1}' protocol(s). + + + The message type '{0}' is not allowed for the '{1}' operation. Valid message types are: '{2}, {3}'. To close the WebSocket, use the '{4}' operation instead. + + + The WebSocket is in an invalid state ('{0}') for this operation. Valid states are: '{1}' + + + The WebSocket request or response contained unsupported header(s). + + + The close status description '{0}' is too long. The UTF8-representation of the status description must not be longer than {1} bytes. + + + The close status description '{0}' is invalid. When using close status code '{1}' the description must be null. + + + The buffer type '{0}' is invalid. Valid buffer types are: '{1}', '{2}', '{3}', '{4}', '{5}'. + + + The WebSocket client did not request any protocols, but server attempted to accept '{0}' protocol(s). + + + The WebSocket is in an invalid state for this operation. The '{0}' method has already been called before on this instance. Use '{1}' instead to keep being able to receive data but close the output channel. + + + An exception caused the WebSocket to enter the Aborted state. Please see the InnerException, if present, for more details. + + + This operation is not supported for a relative URI. + + + The byte array must have a length of at least '{0}' bytes. + + + The WebSocket is not connected. + + + The WebSocket instance cannot be used for communication because it has been transitioned into an invalid state. + + + Empty string is not a valid subprotocol value. Please use \"null\" to specify no value. + + + The received message type '{2}' is invalid after calling {0}. {0} should only be used if no more data is expected from the remote endpoint. Use '{1}' instead to keep being able to receive data but close the output channel. + + + The WebSocket request or response operation was called with unsupported protocol(s). + + + The value of the '{0}' parameter ({1}) must be less than or equal to {2}. + + + The WebSocket has already been started. + + + The remote party closed the WebSocket connection without completing the close handshake. + + + The {0} operation was called on an incoming request that did not specify a '{1}: {2}' header or the {2} header not contain '{3}'. {2} specified by the client was '{4}'. + + + The WebSocket schemes must be registered with the HttpWebRequest class. + + + The argument must be a value greater than {0}. + + + The WebSocket client sent a blank '{0}' header; this is not allowed by the WebSocket protocol specification. The client should omit the header if the client is not negotiating any sub-protocols. + + + The WebSocket protocol is not supported on this platform. + + + The '{0}' header value '{1}' is invalid. + + + Duplicate protocols are not allowed: '{0}'. + + + Only Uris starting with 'ws://' or 'wss://' are supported. + + + There is already one outstanding '{0}' call for this WebSocket instance. ReceiveAsync and SendAsync can be called simultaneously, but at most one outstanding operation for each of them is allowed at the same time. + + + The close status code '{0}' is reserved for system use only and cannot be specified when calling this method. + + + An internal WebSocket error occurred. Please see the innerException, if present, for more details. + + + The server returned status code '{0}' when status code '101' was expected. + + + Exception in {0}::{1} - {2}. + + + Unable to connect to the remote server + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.WebSockets.SR.resw b/obj/x86/Debug/FxResources.System.Net.WebSockets.SR.resw new file mode 100644 index 0000000..bcc1833 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebSockets.SR.resw @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A WebSocket operation was called on a request or response that is not a WebSocket. + + + The received message type is invalid after calling {0}. {0} should only be used if no more data is expected from the remote endpoint. Use '{1}' instead to keep being able to receive data but close the output channel. + + + Unsupported WebSocket version. + + + The WebSocket is in an invalid state ('{0}') for this operation. Valid states are: '{1}' + + + The WebSocket request or response contained unsupported header(s). + + + An exception caused the WebSocket to enter the Aborted state. Please see the InnerException, if present, for more details. + + + The WebSocket instance cannot be used for communication because it has been transitioned into an invalid state. + + + The WebSocket request or response operation was called with unsupported protocol(s). + + + The remote party closed the WebSocket connection without completing the close handshake. + + + An internal WebSocket error occurred. Please see the innerException, if present, for more details. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Numerics.Vectors.SR.resw b/obj/x86/Debug/FxResources.System.Numerics.Vectors.SR.resw new file mode 100644 index 0000000..d3762a4 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Numerics.Vectors.SR.resw @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + length must be less than + + + Index was out of bounds: + + + Vector<T>.Count cannot be called via reflection when intrinsics are enabled. + + + Specified type is not supported + + + Only one-dimensional arrays are supported + + + Number of elements in source vector is greater than the destination array + + + The method was called with a null array argument. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.ObjectModel.SR.resw b/obj/x86/Debug/FxResources.System.ObjectModel.SR.resw new file mode 100644 index 0000000..036f840 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ObjectModel.SR.resw @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The specified threshold for creating dictionary is out of range. + + + The lower bound of target array must be zero. + + + Constructor only supports either a Reset, Add, or Remove action. + + + Target array type is not compatible with the type of items in the collection. + + + An item with the same key has already been added. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + Reset action must be initialized with no changed items. + + + The specified item does not exist in this KeyedCollection. + + + Collection is read-only. + + + Constructor supports only the '{0}' action. + + + Only single dimensional arrays are supported for the requested action. + + + Non-negative number required. + + + Index cannot be negative. + + + Reset action must be initialized with index -1. + + + Cannot change ObservableCollection during a CollectionChanged event. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Private.DataContractSerialization.SR.resw b/obj/x86/Debug/FxResources.System.Private.DataContractSerialization.SR.resw new file mode 100644 index 0000000..f2e006b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.DataContractSerialization.SR.resw @@ -0,0 +1,1101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + end of file + + + Attempted to write an attribute with local name '{0}' after writing the attribute '{1}'='{2}'. An attribute with local name '{0}' may be written only after writing the attribute '{1}'='{3}'. + + + Cannot copy XmlDictionaryReaderQuotas. Target is readonly. + + + XML encoding not supported. + + + XML data contract Name for type '{0}' cannot be set to null or empty string. + + + Encountered unexpected character '{0}'. + + + No matching start tag for end element. + + + DateTime content '{0}' does not start with '{1}' and end with '{2}' as required for JSON. + + + In the data contract name for type '{1}', there are curly braces with '{0}' inside, which is an invalid value. Curly braces have special meaning in data contract names - they are used to customize the naming of data contracts for generic types. Based on the number of generic parameters this type has, the contents of the curly braces must either be a number between 0 and '{2}' to insert the name of the generic parameter at that index or the '#' symbol to insert a digest of the generic parameter namespaces. + + + Array length '{0}' provided by the get-only collection of type '{1}' is less than the number of array elements found in the input stream. Consider increasing the length of the array. + + + of type {0} + + + The data contract type '{0}' is not serializable with DataContractJsonSerializer because the data member '{1}' is duplicated in its type hierarchy. + + + No corresponding start element is open. + + + Encoding not supported in JSON. UTF-8, Unicode, and BigEndianUnicode are the only supported encodings. + + + Enum value '{0}' is invalid for type '{1}' and cannot be serialized. Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attribute. + + + ValueType '{0}' cannot have ref to another object. + + + Quota must be a positive value. + + + An internal error has occurred. No conversion is possible to '{0}' - error generating code for serialization. + + + An internal error has occurred. JSON dictionary type {0} not supported. + + + The empty string is not a valid local name. + + + {0} has multiple definitions of interface '{1}'. + + + An asynchronous operation is already in progress. + + + Invalid enum value '{0}' cannot be deserialized into type '{1}'. Ensure that the necessary enum values are present and are marked with EnumMemberAttribute attribute if the type has DataContractAttribute attribute. + + + One of the known types provided to the serializer via '{0}' argument was invalid because it was null. All known types specified must be non-null values. + + + The XML encountered when deserializing extension data is invalid. + + + Member '{0}.{1}' has more than one IgnoreDataMemberAttribute attribute. + + + There was an error deserializing the object {0}. {1} + + + The IXmlSerializable type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Character reference not valid. + + + The value of this argument must be non-negative. + + + The value '{0}' cannot be represented with the type '{1}'. + + + UniqueId cannot be zero length. + + + Data contract '{0}' from namespace '{1}' is a value type and cannot have base contract '{2}' from namespace '{3}'. + + + Non-empty start element expected. Found {0}. + + + WriteState '{0}' not valid. Caller must write start element before serializing in contentOnly mode. + + + No characters can appear before the XML declaration. + + + Member '{0}.{1}' has DataMemberAttribute attribute. Use EnumMemberAttribute attribute instead. + + + Array too small. Must be able to hold at least {0}. + + + The XmlWriter is closed. + + + Array too small. + + + Collection type '{0}' does not have a valid Add method. + + + Processing instructions (other than the XML declaration) are not supported. + + + Object graph of type '{0}' with Id '{2}' contains a reference to itself. The object has been replaced with a new object of type '{1}' either because it implements IObjectReference or because it is surrogated. The serializer does not support fixing up the nested reference to the new object and cannot deserialize this object. Consider changing the object to remove the nested self-reference. + + + Surrogate char '0x{0}' not valid. Surrogate chars range from 0x10000 to 0x10FFFF. + + + Assembly '{0}' is not found. + + + Expected XML qualified name. Found '{0}'. + + + Type '{0}' has more than one CollectionDataContractAttribute attribute. + + + Invalid Ref '{0}'. Must not be null or empty. + + + Encountered invalid root element name '{0}'. '{1}' is the only allowed root element name. + + + The data contract type '{0}' is not serializable because it is not public. Making the type public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Method name specified by KnownTypeAttribute attribute on type '{0}' cannot be the empty string. + + + DataContract namespace '{0}' is not a valid URI. + + + No get method for property '{1}' in type '{0}'. + + + Attempted to write text after writing attribute type='{0}'. Text may be written only after the attributes type='number', type='boolean', or type='string'. + + + Line {0}, position {1}. + + + Element '{2}:{3}' contains data from a type that maps to the name '{0}:{1}'. The deserializer has no knowledge of any type that maps to this name. Consider changing the implementation of the ResolveName method on your DataContractResolver to return a non-null value for name '{1}' and namespace '{0}'. + + + Start element '{0}' from namespace '{1}' expected. Found {2}. + + + You must write an attribute '{0}'='{1}' after writing the attribute with local name '{2}'. + + + Collection interface type '{0}' is being used as a get-only property and does not have an Add method. Consider adding a setter to the property or using a collection data contract that does have an Add method - for example IList or ICollection<T>. + + + Serialization Callback '{1}' in type '{0}' must have a single parameter of type '{2}'. + + + The maximum array length quota ({0}) has been exceeded while reading XML data. This quota may be increased by changing the MaxArrayLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader. + + + The data contract type '{0}' cannot be deserialized because the data member '{1}' was found more than once in the input. + + + Type '{0}' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. Alternatively, you can ensure that the type is public and has a parameterless constructor - all public members of the type will then be serialized, and no attributes will be required. + + + XML declaration can only be written at the beginning of the document. + + + Cannot write a CLR value that maps to number, array, object, true, false or null in JSON after a string value has been written. + + + Encountered unexpected attribute local name '{0}'. 'type' and '__type' are the only allowed local names for attributes. 'type' can be used to influence how data is written; its valid values are 'object', 'string', 'number', 'null', 'boolean', and 'array'. '__type' can be used to provide type hint information to the writer. + + + '{0}' in type '{1}' cannot have EnumMemberAttribute attribute Value set to null or empty string. + + + The specified size exceeds the remaining buffer space ('{0}' bytes). + + + Invalid Callback. Method '{3}' in type '{2}' has both '{0}' and '{1}'. + + + Non-empty start element '{0}' from namespace '{1}' expected. Found {2}. + + + WriteStartElement cannot be called immediately after WriteStartElement without writing the 'type'='array' or 'type='object' attribute. + + + High surrogate char '0x{0}' not valid. High surrogate chars range from 0xD800 to 0xDBFF. + + + XML encoding must be 'UTF-8'. + + + The collection data contract type '{0}' specifies '{1}' for the ValueName property. This is not allowed since the type is not IDictionary. Remove the setting for the ValueName property. + + + A circular reference has been detected when serializing an object of type {0} to JSON. Circular references are not supported in the JSON format. + + + The type '{0}' cannot be serialized to JSON because its IsReference setting is '{1}'. The JSON format does not support references because there is no standardized format for representing references. To enable serialization, disable the IsReference setting on the type or an appropriate parent class of the type. + + + XmlDictionaryString IDs must be in the range from {0} to {1}. + + + Only a single typed value may be written inside an attribute or content. + + + Property '{1}' in type '{0}' cannot be serialized because serialization of indexed properties is not supported. + + + Expecting state '{0}'. + + + The data contract type '{0}' cannot be deserialized because the property '{1}' does not have a public setter. Adding a public setter will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + There was an error checking start element of object {0}. {1} + + + An object of type '{0}' which derives from DataContractResolver returned false from its TryResolveType method when attempting to resolve the name for an object of type '{1}', indicating that the resolution failed. Change the TryResolveType implementation to return true. + + + The expected encoding '{0}' does not match the actual encoding '{1}'. + + + The encoding in the declaration '{0}' does not match the encoding of the document '{1}'. + + + Type '{0}' cannot have CollectionDataContractAttribute attribute Namespace set to null. + + + The specified size exceeds the remaining buffer space ({0} bytes). + + + There is no open attribute. + + + Type '{0}' cannot be IXmlSerializable and have CollectionDataContractAttribute attribute. + + + Array length '{0}' provided by Size attribute is not equal to the number of array elements '{1}' from namespace '{2}' found. + + + To write JSON arrays, use XML writer methods to write the attribute type='array' followed by methods like WriteStartElement (with the local name 'item'), WriteAttributeString, and WriteEndElement to write the JSON array items. + + + Type '{0}' is not a valid XML type. + + + XML declaration can only be written at the beginning of the document. + + + An internal error has occurred. ExtensionDataReader is in an invalid state. + + + Attempted to write an attribute '{0}'='{1}' after writing the attribute with local name '{2}'. The attribute with local name '{2}' is only valid with an attribute '{0}'='{3}'. + + + The data contract type '{0}' cannot be serialized because the property '{1}' does not have a public getter. Adding a public getter will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + This XmlDictionaryWriter implementation does not support the '{0}' method. + + + The get-only collection of type '{0}' returned a null value. The input stream contains collection items which cannot be added if the instance is null. Consider initializing the collection either in the constructor of the object or in the getter. + + + Unknown data contract: '{0}'. + + + '{0}' is an XML type and cannot be serialized when assigned to an interface type that does not implement IXmlSerializable ('{1}'.) + + + XmlDictionaryString ID {0} not defined in the static dictionary. + + + Type '{0}': If a KnownTypeAttribute attribute specifies a method it must be the only KnownTypeAttribute attribute on that type. + + + The data contract type '{0}' cannot be deserialized because the OnDeserialized method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The input source is not correctly formatted. + + + An internal error has occurred. Data can only be stored into ArgBuilder or LocalBuilder. Got: {0}. + + + The value of this argument must fall within the range {0} to {1}. + + + End element '{0}' from namespace '{1}' expected. Found {2}. + + + The collection data contract type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Property 'Order' in DataMemberAttribute attribute cannot be a negative number. + + + XML comments cannot contain '--' or end with '-'. + + + Cannot deserialize since root element references unrecognized object with id '{0}'. + + + Invalid Size '{0}'. Must be non-negative integer. + + + The specified offset exceeds the buffer size ({0} bytes). + + + There was an error writing start element of object {0}. {1} + + + Only white space characters can be written with this method. + + + element '{0}' from namespace '{1}' + + + The expected encoding '{0}' does not match the actual encoding '{1}'. + + + Enum type '{0}' cannot have the IsReference setting of '{1}'. Either change the setting to '{2}', or remove it completely. + + + Type '{0}' cannot specify an XmlRootAttribute attribute because its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct. + + + Duplicate attribute found. Both '{0}' and '{1}' are from the namespace '{2}'. + + + The Type '{0}' must have a parameterless constructor. + + + An XML declaration is required for all non-UTF8 documents. + + + Array too small. Length of available data must be at least {0}. + + + Invalid number of parameters to call method '{0}'. Expected '{1}' parameters, but '{2}' were provided. + + + The empty string is not a valid local name in JSON. + + + Malformed XML declaration. + + + XmlDictionaryString ID {0} not defined in the XmlBinaryReaderSession. + + + Type '{0}' does not have a static method '{1}' that takes a parameter of type 'System.Xml.Schema.XmlSchemaSet' as specified by the XmlSchemaProviderAttribute attribute. + + + ValueType '{0}' cannot have id. + + + Type '{0}' cannot have DataContractAttribute attribute Name set to null or empty string. + + + Method '{0}.{1}()' returns '{2}'. The return type must be compatible with '{3}'. + + + Start element expected. Found {0}. + + + {0}.{1}' is not marked with OptionalFieldAttribute, thus indicating that it must be serialized. However, '{0}' derives from a class marked with DataContractAttribute and an IsReference setting of '{2}'. It is not possible to have required data members on IsReference classes. Either decorate '{0}.{1}' with OptionalFieldAttribute, or disable the IsReference setting on the appropriate parent class. + + + Expecting element '{1}' from namespace '{0}'. + + + Collection type '{0}' does not have a valid GetEnumerator method. + + + Type '{0}' cannot be serialized, serialization code for the type is missing. Consult the SDK documentation for adding it as a root serialization type. + + + Version not found in XML declaration. + + + {0} does not have a default constructor. + + + Virtual Method '{0}' of type '{1}' cannot be marked with '{2}' attribute. + + + XML '{2}' '{3}:{4}' does not contain expected attribute '{0}:{1}'. The deserializer has no knowledge of which type to deserialize. Check that the type being serialized has the same contract as the type being deserialized. + + + comment '{0}' + + + Non-empty start element '{0}' expected. Found {1}. + + + node {0} + + + IXmlSerializable.WriteXml method of type '{0}' did not close all open tags. Verify that the IXmlSerializable implementation is correct. + + + Type '{0}' cannot have DataContractAttribute attribute Namespace set to null. + + + Value type '{0}' cannot have the IsReference setting of '{1}'. Either change the setting to '{2}', or remove it completely. + + + Member '{0}' in type '{1}' cannot have DataMemberAttribute attribute Name set to null or empty string. + + + '{0}' is a collection type and cannot be serialized when assigned to an interface type that does not implement IEnumerable ('{1}'.) + + + An object of type '{0}' cannot be serialized at the top level for IXmlSerializable root type '{1}' since its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct. + + + Cannot write content while an attribute is being written. + + + An internal error has occurred. Object table overflow. This could be caused by serializing or deserializing extremely large object graphs. + + + The data contract type '{0}' cannot be deserialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + XML version must be '1.0'. + + + KnownTypeAttribute attribute on type '{1}' specifies a method named '{0}' to provide known types. Static method '{0}()' was not found on this type. Ensure that the method exists and is marked as static. + + + {0}. Encountered '{1}' with name '{2}', namespace '{3}'. + + + ValueType '{0}' cannot be null. + + + Type '{0}' with CollectionDataContractAttribute attribute is an invalid collection type since it + + + Unrecognized Byte Order Mark. + + + IXmlSerializable Type '{0}' must have default constructor. + + + The specified key already exists in the dictionary. + + + The data contract type '{0}' cannot be deserialized because the OnDeserializing method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The collection data contract type '{0}' specifies the same value '{1}' for both the KeyName and the ValueName properties. This is not allowed. Consider changing either the KeyName or the ValueName property. + + + '{0}' is an invalid data node when deserializing extension data. + + + The value cannot be parsed as the type '{0}'. + + + The maximum read depth ({0}) has been exceeded because XML data being read has more levels of nesting than is allowed by the quota. This quota may be increased by changing the MaxDepth property on the XmlDictionaryReaderQuotas object used when creating the XML reader. + + + Deserialized object with reference id '{0}' not found in stream. + + + '{0}' is not a valid JSON primitive. This error can also occur when extraneous data is present after the JSON data. + + + Encountered unexpected prefix '{0}'. The prefix must be null or empty. + + + Invalid byte encoding. + + + An object of type '{0}' which derives from DataContractResolver returned a null typeName or typeNamespace but not both from its TryResolveType method when attempting to resolve the name for an object of type '{1}'. Change the TryResolveType implementation to return non-null values, or to return null values for both typeName and typeNamespace in order to serialize as the declared type. + + + Using surrogates with get-only collection properties is not supported. Consider removing the surrogate associated with '{0}'. + + + Member '{0}.{1}' cannot be serialized since it is neither a field nor a property, and therefore cannot be marked with the DataMemberAttribute attribute. Remove the DataMemberAttribute attribute from the '{1}' member. + + + Characters with hexadecimal values 0xFFFE and 0xFFFF are not valid. + + + Unexpected character '{0}'. '{1}' can write only white space characters. + + + The data at the root level is invalid. + + + DataContractJsonSerializer does not support data members of type '{0}'. Consider using int, System.Object, or a concrete enum definition instead. + + + An internal error has occurred. '{0}' is not assignable from '{1}' - error generating code for serialization. + + + Member '{0}.{1}' has more than one DataMemberAttribute attribute. + + + {0} has DataContractAttribute attribute. + + + Type '{0}' is not a valid serializable type. + + + Only Element nodes have attributes. + + + The data contract name '{0}' for type '{1}' has a curly brace '{{' that is not matched with a closing curly brace. Curly braces have special meaning in data contract names - they are used to customize the naming of data contracts for generic types. + + + Encountered invalid character '{0}'. + + + Base64 encoded data expected. Found {0}. + + + An internal error has occurred. JSON string not properly quoted. + + + A user callback threw an exception. Check the exception stack and inner exception to determine the callback that failed. + + + The deserializer cannot load the type to deserialize because type '{1}' could not be found in assembly '{0}'. Check that the type being serialized has the same contract as the type being deserialized and the same assembly is used. + + + Characters with hexadecimal values 0xFFFE and 0xFFFF are not valid. + + + KnownTypeAttribute attribute on type '{0}' specifies a method named '{1}' to provide known types. The return type of this method is invalid because it is not assignable to IEnumerable<Type>. Ensure that the method exists and has a valid signature. + + + {0} does not implement IEnumerable interface. + + + Unexpected end of file. + + + Type '{0}' with data contract name '{1}:{2}' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer. + + + The data contract type '{0}' cannot be serialized because the OnSerializing method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Cannot call {0} while an attribute is being written. + + + Unrecognized constant type '{0}'. + + + The specified offset exceeds the buffer size ({0} bytes). + + + Base64 sequence length ({0}) not valid. Must be a multiple of 4. + + + Type '{2}' contains two members '{0}' 'and '{1}' with the same data member name '{3}'. Multiple members with the same name in one type are not supported. Consider changing one of the member names using DataMemberAttribute attribute. + + + text '{0}' + + + Method '{0}.{1}()' returns a non-null value. The return value must be null since IsAny + + + Serialization Callback '{1}' in type '{0}' must return void. + + + Type '{0}' is an invalid collection type since it + + + Only one root element is permitted per document. + + + This XmlDictionaryWriter implementation does not support the writing of multiple root elements. + + + The collection data contract type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The data contract type '{0}' cannot be serialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The namespace '{1}' can only be bound to the prefix '{0}'. + + + Whitespace must appear between attributes. + + + The document does not have a root element. + + + The 'maximum bytes per Read operation' quota ({0}) has been exceeded while reading XML data. Long element start tags (consisting of the element name, attribute names and attribute values) may trigger this quota. This quota may be increased by changing the MaxBytesPerRead property on the XmlDictionaryReaderQuotas object used when creating the XML reader. + + + ']]>' not valid in text node content. + + + {0} does not have a valid Add method with parameter of type '{1}'. + + + Expecting End'{0}'. + + + '{0}' cannot be called while WriteState is '{1}'. + + + An internal error has occurred. Char is not a valid schema primitive and should be treated as int in DataContract. + + + Type '{0}' cannot be added to list of known types since another type '{1}' with the same data contract name '{2}:{3}' is already present. + + + There are multiple root elements. + + + DateTime values that are greater than DateTime.MaxValue or smaller than DateTime.MinValue when converted to UTC cannot be serialized to JSON. + + + The attribute 'type' must have one of the following strings as its values: 'string', 'number', 'array', 'object', 'null', or 'boolean'. Encountered unexpected value '{0}' + + + An internal error has occurred. DataContract cache overflow. + + + ID must be > + + + KnownTypeAttribute attribute on type '{0}' contains no data. + + + Invalid member name encountered in a JSON object. + + + Invalid attribute. Both '{0}' and '{1}' in type '{2}' have '{3}'. + + + Start element '{0}' expected. Found {1}. + + + The value '{0}' cannot be parsed as the type '{1}'. + + + Cannot call '{0}' while Depth is '{1}'. + + + Invalid byte encoding. + + + Nested arrays are not supported. + + + The data contract type '{0}' cannot be deserialized because the required data member '{1}' was not found. + + + ContractNamespaceAttribute attribute maps CLR namespace '{2}' to multiple data contract namespaces '{0}' and '{1}'. You can map a CLR namespace to only one data contract namespace. + + + Cannot write attribute with local name '{0}' multiple times. + + + Nested arrays are not supported. + + + The characters '{0}' at offset {1} are not a valid BinHex sequence. + + + Invalid XML encountered. The same Id value '{0}' is defined more than once. Multiple objects cannot be deserialized using the same Id. + + + Maximum number of items that can be serialized or deserialized in an object graph is '{0}'. + + + The prefix '{0}' is not defined. + + + An internal error has occurred. '{0}[]' is not supported when generating code for serialization. + + + Member {0} in type {1} cannot be serialized. This exception is usually caused by trying to use a null value where a null value is not allowed. The '{0}' member is set to its default value (usually null or zero). The member's EmitDefault setting is 'false', indicating that the member should not be serialized. However, the member's IsRequired setting is 'true', indicating that it must be serialized. This conflict cannot be resolved. Consider setting '{0}' to a non-default value. Alternatively, you can change the EmitDefaultValue property on the DataMemberAttribute attribute to true, or changing the IsRequired property to false. + + + BinHex sequence length ({0}) not valid. Must be a multiple of 2. + + + Error in line {0} position {1}. + + + 'standalone' value in declaration must be 'yes' or 'no'. + + + The empty namespace requires a null or empty prefix. + + + {0} is a built-in type and cannot be a collection. + + + A null value cannot be serialized at the top level for IXmlSerializable root type '{0}' since its IsAny setting is 'true'. This type must write all its contents including the root element. Verify that the IXmlSerializable implementation is correct. + + + Type '{0}' cannot be IXmlSerializable and have DataContractAttribute attribute. + + + No set method for property '{1}' in type '{0}'. + + + Encountered unexpected element local name '{0}' for item in collection. '{1}' is the only valid local name for elements in a collection. + + + CData elements not valid at top level of an XML document. + + + Cannot load member type '{0}'. + + + Method specified by KnownTypeAttribute attribute on type '{0}' returned null. + + + The reader cannot be advanced. + + + There was an error serializing the object {0}. {1} + + + The collection data contract type '{0}' cannot be deserialized because the method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Processing instructions (other than the XML declaration) and DTDs are not supported. + + + An XML declaration with an encoding is required for all non-UTF8 documents. + + + Type '{0}' has more than one DataContractAttribute attribute. + + + The maximum array length ({0}) has been exceeded while reading XML data for array of type '{1}'. + + + The IXmlSerializable type '{0}' is not serializable in partial trust because it is not public. Adding a public parameterless constructor will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The byte 0x{0} is not valid at this location. + + + Type '{0}' cannot have CollectionDataContractAttribute attribute Name set to null or empty string. + + + Method specified by KnownTypeAttribute attribute on type '{0}' does not expose valid types. + + + Unexpected end of file. Following elements are not closed: {0}. + + + The prefix '{0}' is bound to the namespace '{1}' and cannot be changed to '{2}'. + + + Member '{0}.{1}' has more than one EnumMemberAttribute attribute. + + + This XmlWriter implementation does not support the '{0}' method. + + + Element {0} from namespace {1} cannot have child contents to be deserialized as an object. Please use XElement to deserialize this pattern of XML. + + + JSON array ended with a trailing comma. + + + Type '{0}' is a recursive collection data contract which is not supported. Consider modifying the definition of collection '{0}' to remove references to itself. + + + To write attribute values with this XmlDictionaryWriter implementation, you must write either string or char[] values. + + + The namespace '{0}' is not defined. + + + The data contract type '{0}' cannot be serialized because the OnSerialized method '{1}' is not public. Making the method public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + The data contract type '{0}' cannot be serialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + '{0}' is not a valid xml:space value. Valid values are 'default' and 'preserve'. + + + Type '{0}' cannot inherit from a type that is not marked with DataContractAttribute or SerializableAttribute. Consider marking the base type '{1}' with DataContractAttribute or SerializableAttribute, or removing them from the derived type. + + + Type '{0}' cannot have CollectionDataContractAttribute attribute KeyName set to null or empty string. + + + '{0}' contains invalid UTF8 bytes. + + + Expecting state '{0}' when ReadObject is called. + + + Type '{2}' contains two members '{0}' 'and '{1}' with the same name '{3}'. Multiple members with the same name in one type are not supported. Consider changing one of the member names using EnumMemberAttribute attribute. + + + An internal error has occurred. Unexpected contract type '{0}' for type '{1}' encountered. + + + No corresponding start element is open. + + + The IsReference setting for type '{0}' is '{1}', but the same setting for its parent class '{2}' is '{3}'. Derived types must have the same value for IsReference as the base type. Change the setting on type '{0}' to '{3}', or on type '{2}' to '{1}', or do not set IsReference explicitly. + + + '{0}.{1}' has the IsRequired setting of '{2}. However, '{0}' has the IsReference setting of '{2}', because either it is set explicitly, or it is derived from a base class. Set IsRequired on '{0}.{1}' to false, or disable IsReference on '{0}'. + + + Unterminated JSON string encountered. JSON strings must start with a single or double quote character and end with the same character. + + + The type '{0}' cannot be deserialized because it does not have a public parameterless constructor. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + WriteStartElement must be called at least once before WriteStartAttribute may be called. + + + DataContractJsonSerializer does not support objects of type '{0}'. + + + The data contract type '{0}' cannot be deserialized because the member '{1}' is not public. Making the member public will fix this error. Alternatively, you can make it internal, and use the InternalsVisibleToAttribute attribute on your assembly in order to enable serialization of internal members - see documentation for more details. Be aware that doing so has certain security implications. + + + Start element '{0}' does not match end element '{1}'. + + + Low surrogate char '0x{0}' not valid. Low surrogate chars range from 0xDC00 to 0xDFFF. + + + '{0}' cannot be called while WriteState is '{1}'. + + + Prefixes beginning with 'xml' (regardless of casing) are reserved for use by XML. + + + '{0}' '{1}' from namespace '{2}' is not expected. Expecting element '{3}'. + + + The characters '{0}' at offset {1} are not a valid Base64 sequence. + + + Invalid Id '{0}'. Must not be null or empty. + + + Encountered unexpected namespace '{0}'. The namespace must be empty. + + + Type '{0}' cannot have CollectionDataContractAttribute attribute ItemName set to null or empty string. + + + cdata '{0}' + + + IXmlSerializable.WriteXml method of type '{0}' attempted to close too many tags. Verify that the IXmlSerializable implementation is correct. + + + Element '{2}:{3}' contains data of the '{0}:{1}' data contract. The deserializer has no knowledge of any type that maps to this contract. Add the type corresponding to '{1}' to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding it to the list of known types passed to DataContractSerializer. + + + There was an error writing end element of object {0}. {1} + + + The collection data contract type '{0}' specifies '{1}' for the KeyName property. This is not allowed since the type is not IDictionary. Remove the setting for the KeyName property. + + + Collection type '{0}' must have a non-null item type. + + + Type '{0}' cannot have CollectionDataContractAttribute attribute ValueName set to null or empty string. + + + Text cannot be written outside the root element. + + + Multi-dimensional arrays are not supported. + + + CLR namespace '{0}' cannot have ContractNamespace set to null. + + + DataContract namespace '{0}' cannot be specified since it is reserved. + + + The maximum nametable character count quota ({0}) has been exceeded while reading XML data. The nametable is a data structure used to store strings encountered during XML processing - long XML documents with non-repeating element names, attribute names and attribute values may trigger this quota. This quota may be increased by changing the MaxNameTableCharCount property on the XmlDictionaryReaderQuotas object used when creating the XML reader. + + + The surrogate pair is invalid. Missing a low surrogate character. + + + Invalid escape code encountered in a JSON string. + + + Unexpected end of file. + + + ID already defined. + + + The dictionary of type '{0}' cannot be deserialized as a simple dictionary because its key type '{1}' does not have a public static Parse method. + + + WriteStartElement can be called at only the start of a document or immediately after calling WriteEndElement. + + + This method cannot be called from IXmlSerializable implementations. + + + end element '{0}' from namespace '{1}' + + + The data contract type '{0}' cannot be deserialized because the required data members '{1}' were not found. + + + The '{0}' quota is readonly. + + + Object graph for type '{0}' contains cycles and cannot be serialized if references are not tracked. Consider using the DataContractAttribute with the IsReference property set to true. + + + The writer is closed. + + + Unexpected character encountered in JSON. Expected '{1}', got '{0}'. + + + The maximum string content length quota ({0}) has been exceeded while reading XML data. This quota may be increased by changing the MaxStringContentLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader. + + + A prefix cannot be defined while WriteState is '{0}'. + + + Type '{0}' cannot have MethodName on XmlSchemaProviderAttribute attribute set to null or empty string. + + + The prefix '{0}' can only be bound to the namespace '{1}'. + + + The token '{0}' was expected but found '{1}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Private.ServiceModel.SR.resw b/obj/x86/Debug/FxResources.System.Private.ServiceModel.SR.resw new file mode 100644 index 0000000..c0abe86 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.ServiceModel.SR.resw @@ -0,0 +1,6762 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This operation is not valid until security negotiation is complete. + + + A timestamp element has already been set for this security header. + + + More than one supporting signature was encountered using the same supporting token '{0}'. + + + The maximum value for wsrm:MessageNumber has been exceeded. + + + The translation set cannot contain nulls. + + + end of file + + + Loading performance counters for the service failed. Performance counters will not be available for this service. + + + Could not connect to {0}. The connection attempt lasted for a time span of {3}. TCP error code {1}: {2}. + + + There was an error serializing the security token. Please see the inner exception for more details. + + + The key length '{0}' requested is invalid. + + + Signature confirmation was expected to be present in the security header. + + + Certificate-based client authentication is not supported in TransportCredentialOnly security mode. Select the Transport security mode. + + + A base address cannot contain a Uri query string. + + + An operation was skipped during export because it has a wildcard action. This is not supported in WSDL.\r\nContract Name:{0}\r\nContract Namespace:{1}\r\nOperation Name:{2} + + + Get configured binding. + + + Unreachable policy detected.\r\nA WS-Policy element embedded in WSDL is missing a fragment identifier. This policy cannot be referenced by any WS-PolicyAttachment mechanisms.\r\nXPath:{0} + + + The SecurityContextSecurityToken with Context-id={0} (generation-id={1}) has expired. + + + The TCP connect operation failed. + + + Cannot map Windows user '{0}' to a UserPrincipalName that can be used for S4U impersonation. + + + The channel received an unexpected fault input message while closing. The fault reason given is: '{0}' + + + Cannot resolve KeyInfo for verifying signature: KeyInfo '{0}', available tokens '{1}'. + + + The EncryptedKey clause was not wrapped with the required encryption token '{0}'. + + + Resolving an External reference token requires appropriate SecurityTokenParameters to be specified. + + + Unhandled exception in user operation '{0}.{1}'. + + + This property cannot be changed after the transport manager has been opened. + + + The ServiceEndpoint with name '{0}' could not be exported to WSDL because the Binding property is null. To fix this, set the Binding property to a valid Binding instance. + + + The incoming message is not part of an existing security session. + + + This platform does not support client side WebSockets natively. Support for client side WebSockets can be enabled on this platform by providing an implementation of {0}. + + + ContextBindingElement cannot provide channel factory for the requested channel shape {0}. + + + The isolation level for component {0} is invalid. (The value was {1}.) + + + The configured Trust version does not support sessions. Use WSTrustFeb2005 or above. + + + Initiating Named Pipe connection. + + + Reading of a service document started. + + + Cannot create channel for a contract that requires request/reply and a binding that requires manual addressing but only supports duplex communication. + + + The initial request context was already specified. Can not create two for same message. + + + The parameter '{0}' cannot be an empty string. + + + Security token manager could not parse token with name '{0}', namespace '{1}', valueType '{2}'. + + + The ServiceHost close operation timed out after {0}. This could be because a client failed to close a sessionful channel within the required time. The time allotted to this operation may have been a portion of a longer timeout. + + + concrete PeerResolver implementation must override Initialize to accept metadata about resolver service. + + + The key length '{0}' is not a multiple of 8 for symmetric keys. + + + The message header with name '{0}' and namespace '{1}' is not present in the set of understood headers. + + + A single WSDL document could not be generated for this service. Multiple service contract namespaces were found ({0}). Ensure that all your service contracts have the same namespace. + + + A listen URI must be specified in order to open this {0}. + + + The configured WS-Trust version does not support issued tokens. WS-Trust February 2005 or later is required. + + + The transaction '{0}' was completed when the session was closed due to the TransactionAutoCompleteOnSessionClose ServiceBehaviorAttribute member. + + + The UriTemplate '{0}' is not valid; UriTemplate does not support two adjacent variables with no literal in compound segments, such as in the segment '{1}'. + + + SocketConnection aborted + + + SocketConnection close + + + The WS-RM policy under the namespace {0} requires the wsrmp:ExactlyOnce, wsrmp:AtLeastOnce, or wsrmp:AtMostOnce assertion. Nothing was found. + + + Final RSTR from other party does not contain a service token. + + + The requested resource must be accessed through one of the following intermediary service locations:\n{0} + + + In order to add an endpoint to the service '{0}', a non-empty contract name must be specified. + + + You can also access the service description as a single file: + + + Sent a message over a channel. + + + A message was read + + + Unknown filter type: '{0}'. + + + Created: {0} + + + Switched threads while processing a message for Contract '{0}' at Address '{1}'. ConcurrencyMode for service is set to Single/Reentrant and the service is currently processing another message. + + + The transaction '{0}' was flowed to operation '{1}'. + + + Method '{1}' has {0}, but enclosing type '{2}' does not have ServiceContractAttribute. {0} can only be used on methods in ServiceContractAttribute types. + + + Cannot find the negotiation state for the context '{0}'. + + + The configuration system has detected a duplicate key in a different configuration scope and is overriding with the more recent value. + + + The task was cancelled. + + + Message part name {0} is not unique in an RPC Message. + + + Security negotiation message has incorrect action '{0}'. + + + KnownType cannot be null in operation {0} + + + The communication object, {0}, cannot be used for communication because it has been Aborted. + + + Configuration files are not supported. + + + This SecurityProtocol instance was not set up to process outgoing messages. + + + Server '{0}' is too busy to process this request. Try again later. + + + The session key must be renewed before it can secure application messages. + + + An asynchronous write is pending on the stream. Ensure that there are no uncompleted asynchronous writes before attempting the next write. + + + Policy for multiple issuer endpoints was retrieved from '{0}' but the relying party's policy does not specify which issuer endpoint to use. One of the endpoints was selected as the issuer endpoint to use. If you are using svcutil, the other endpoints will be available in commented form in the configuration as <alternativeIssuedTokenParameters>. Check the configuration to ensure that the right issuer endpoint was selected. + + + The extension collection is empty. + + + the URI is too long + + + Invalid data buffer. + + + The protocol binding '{0}' is not valid for '{1}'. This might be because the port number is out of range. + + + In order to use one of the ServiceHost constructors that takes a service instance, the InstanceContextMode of the service must be set to InstanceContextMode.Single. This can be configured via the ServiceBehaviorAttribute. Otherwise, please consider using the ServiceHost constructors that take a Type argument. + + + Context added to Message. + + + The request message must be protected. This is required by an operation of the contract ('{0}','{1}'). The protection must be provided by the binding ('{2}','{3}'). + + + The wsdl operation {0} in portType {1} contains a fault that does not reference a message. This is either because the message attribute is missing or empty. + + + The client credential entered was invalid. + + + The remote endpoint has sent a message containing an unrecognized sequence identifier. The reliable session was faulted. + + + Writing of a service document completed. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a synchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must have the same value for the '{5}' property. In this case, the values are different. To fix it, change the '{5} property of one of the OperationContracts to match the other. Alternatively, changing the name of one of the methods will prevent matching. + + + No signature message parts were specified for messages with the '{0}' action. + + + A binding instance has already been associated to listen URI '{0}'. If two endpoints want to share the same ListenUri, they must also share the same binding object instance. The two conflicting endpoints were either specified in AddServiceEndpoint() calls, in a config file, or a combination of AddServiceEndpoint() and config. + + + For sending a message on server side composite duplex channels, the message must have either the 'Via' property or the 'To' header set. + + + Close message was received by client security session.TraceCodeSecurityClientSessionKeyRenewed=Client security session renewed session key. + + + This OperationContextScope is being disposed out of order. + + + The header '{0}' from the namespace '{1}' was not understood by the recipient of this message, causing the message to not be processed. This error typically indicates that the sender of this message has enabled a communication protocol that the receiver cannot process. Please ensure that the configuration of the client's binding is consistent with the service's binding. + + + The policy to import a process cannot import a binding for contract ({0},{1}). The protection requirements for the binding are not compatible with a binding already imported for the contract. You must reconfigure the binding. + + + The message could not be processed. This is most likely because the action '{0}' is incorrect or because the message contains an invalid or expired security context token or because there is a mismatch between bindings. The security context token would be invalid if the service aborted the channel due to inactivity. To prevent the service from aborting idle sessions prematurely increase the Receive timeout on the service endpoint's binding. + + + failed to read the service's endpoint with native error code {0}. See inner exception for details + + + Process action '{0}'. + + + The BindByName method of UriTemplate was called with an empty name in the collection of arguments for the bind. Note that the NameValueCollection or the Dictionary passed to BindByName cannot contain an empty (or null) name as a key. See the documentation of UriTemplate for more details. + + + The path variable '{0}' in the UriTemplate must be bound to a non-empty string value. + + + The WS-Addressing \"none\" value is not valid for the August 2004 version of WS-Addressing. + + + Cannot read the token from the '{0}' element with the '{1}' namespace for BinarySecretSecurityToken, with a '{2}' ValueType. If this element is expected to be valid, ensure that security is configured to consume tokens with the name, namespace and value type specified. + + + WS-RM Last Sequence message received. + + + The transaction identifier element in the coordination context is invalid. + + + There is no SecurityContextSecurityToken with context-id={0} (generation-id={1}) registered with SecurityContextSecurityTokenAuthenticator. + + + The remote endpoint sent an unexpected close sequence message. Simplex clients do not process this message. + + + The ServicePrincipalName could not be mapped to a SecurityIdentifier. + + + Cannot import the security policy. The protection requirements for the secure conversation bootstrap binding are not supported. Protection requirements for the secure conversation bootstrap must require both the request and the response to be signed and encrypted. + + + The message with Action '{0}' cannot be processed at the receiver because this Action is reserved for the connection opening messages only and cannot be sent from client to server. To invoke this operation on the server, call the '{1}' method on the client proxy instead. + + + The value of this argument must be greater than 0. + + + Transfer mode {0} is not supported by {1}. + + + The SetTransactionComplete method was called in the operation '{0}' on contract '{1}' when TransactionAutoComplete was set to true. The SetTransactionComplete method can only be called when TransactionAutoComplete is set to false. This is an invalid scenario and the current transaction was aborted. + + + ServiceHost close operation timedout. + + + Error parsing SecurityContextSecurityToken Cookie XML. + + + An endpoint configured for the COM+ CLSID {0} is not a configured interface on the class. (The contract type is {1}.) + + + Async End called with an IAsyncResult from a different Begin method. + + + The Name property must be a non-empty string. + + + No clause of type '{0}' was found in the SecurityKeyIdentifier. + + + Unrecognized policy element {0} in namespace {1}. + + + There was no endpoint listening at {0} that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. + + + Impersonation using the client token is not possible. The binding ('{0}', '{1}') for contract ('{2}', '{3}') uses the Username Security Token for client authentication with a Membership Provider registered. Use a different type of security token for the client. + + + The communication object, {0}, is in the {1} state. Communication objects cannot be used for communication unless they are in the Opened state. + + + The proof token XML element is not expected in the response. + + + Attempted to get contract type for {0}, but that type is not a ServiceContract, nor does it inherit a ServiceContract. + + + Too many attributes of type {0} on {1}. + + + The nonce is invalid or replayed. + + + The required address keyword was not specified. + + + A null Message (signalling end of channel) was received from a datagram channel, but the channel is still in the Opened state. This indicates a bug in the datagram channel, and the demuxer receive loop has been prematurely stalled. + + + There is not a header with name {0} and namespace {1} in the message. + + + The Authentication Scheme \"Basic\" does not support Extended Protection. Please use a different authentication scheme or disable the ExtendedProtectionPolicy on the Binding or BindingElement by creating a new ExtendedProtectionPolicy with a PolicyEnforcement value of \"Never\". + + + You have created a service.<P class='intro'>To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:</P> + + + You have created a service.<P class='intro'>To test this service, you will need to create a client and use it to call the service; however, metadata publishing via ?WSDL is currently disabled. This can be enabled via the service's configuration file. </P> + + + Context protocol was unable to parse the callback context header. + + + Additional XML content is present in the fault detail element. Only a single element is allowed. + + + The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '{0}'. The local IP address and port is {1}. The remote IP address and port is {2}. + + + SynchronizedReadOnlyCollection's CopyTo only works if the underlying list implements ICollection. + + + Client is unable to finish the security negotiation within the configured timeout ({0}). The current negotiation leg is {1} ({2}). + + + Obtaining metadata from issuer '{0}' failed with error '{1}'. + + + SSL protocol negotiation failed. Requested '{0}' but was offered '{1}'. + + + Error invoking user code + + + Expecting first char - c - to be in set [Char.IsLetter(c) && c == '_', found '{0}'. + + + Error in deserializing body of request message for operation '{0}'. + + + The remote endpoint responded to the {0} request with a response with action {1}. The response must be a {0}Response with action {2}. The channel could not be opened. + + + The WS-AtomicTransaction header was invalid or corrupt. + + + A basic token is not expected in the security header in this context. + + + This value cannot be changed after the ServiceHost has opened. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a synchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must define the same return type. In this case, the return types are different. To fix it, ensure that method '{0}' and method '{3}' have the same return type. Alternatively, changing the name of one of the methods will prevent matching. + + + Incorrect Interface version in registry + + + failed to create a data connection to the service + + + Not all the signatures in the request message were confirmed in the reply message. + + + End method execution. + + + The '{0}', '{1}' required message part was not signed. + + + Part {1} in message {0} cannot be exported with RPC or encoded since its type is anonymous. + + + The given schema cannot be imported in this format. + + + The maximum message size quota for incoming messages has been exceeded for the remote channel. See the server logs for more details. + + + The HTTP proxy authentication credential specified an mutual authentication requirement ({0}) that is stricter than the requirement for target server authentication ({1}). + + + {0} is only available in a deserialized RequestSecurityTokenResponse. + + + There is no handler registered for session token issuance event. + + + The requested resource has moved to one of the following locations:\n{0} + + + Client side task-based asynchronous method must not have any out or ref parameters. Any data that would have been returned through an out or ref parameter should instead be returned as part of the TResult in the resulting task. + + + The one-way operation returned a fault message. The reason for the fault was '{0}'. + + + The element with name '{0}' and namespace '{1}' is not an allowed feed format. + + + Open ClientBase. Contract type: '{0}'. + + + The Implicit derived key clause '{0}' specifies a derivation key length ({1}) which exceeds the allowed maximum length ({2}). + + + Received security header contains unexpected token '{0}'. + + + DeliveryRequirementsAttribute disallows QueuedDelivery, but binding for the endpoint with contract '{0}' supports it. + + + The security token authenticator '{0}' cannot validate a token of type '{1}'. + + + The configured SecurityVersion does not support signature confirmation. Use WsSecurity11 or above. + + + Generating message contract since element name {0} from namespace {1} is not marked nillable + + + The endpoint identity specified when creating the HTTPS channel to '{0}' contains multiple server certificates. However, the HTTPS transport only supports the specification of a single server certificate. In order to create an HTTPS channel, please specify no more than one server certificate in the endpoint identity. + + + Value '{0}' provided for '{1}' from namespace '{2}' is an invalid absolute URI. + + + Note: the service name must match the configuration name for the service implementation.<BR/><BR/>3. Add the following endpoint to your service configuration: + + + 2. Add the behavior configuration to the service: + + + This is a Windows&#169; Communication Foundation service.<BR/><BR/><B>Metadata publishing for this service is currently disabled.</B><BR/><BR/>If you have access to the service, you can enable metadata publishing by completing the following steps to modify your web or application configuration file:<BR/><BR/>1. Create the following service behavior configuration, or add the &lt;serviceMetadata&gt; element to an existing service behavior configuration: + + + For more information on publishing metadata please see the following documentation: <a href=\"http://go.microsoft.com/fwlink/?LinkId=65455\">http://go.microsoft.com/fwlink/?LinkId=65455</a>. + + + Note: your service must have an http base address to add this endpoint.<BR/><BR/>The following is an example service configuration file with metadata publishing enabled: + + + Interface {0} has a null namespace or name. + + + Reading of a syndication feed completed. + + + No Action header was found with namespace '{0}' for the given message. + + + AsymmetricSecurityBindingElement cannot build a channel or listener factory. The RecipientTokenParameters property is required but not set. Binding element configuration: {0} + + + Failed to load the performance counter '{0}'. Some performance counters will not be available + + + The timestamp must occur first in this security header layout. + + + Expected element '{0}' or element '{1}' (from namespace '{2}'). + + + The server didn't accept the connection request. It is possible that the WebSocket protocol version on your client doesn't match the one on the server('{0}'). + + + WorkflowDurableInstance '{0}' activated. + + + URI {0} could not be set because its size ({1}) exceeds the max supported size ({2}). + + + DurableInstance's InstanceContext refcount decremented. + + + The object does not support the interface '{0}'. + + + Failed to create a typed proxy for type '{0}' + + + Fault bindings for operation {0} in binding {1} cannot specify different use values. + + + Unbound prefix used in qualified name '{0}'. + + + ServiceHost only supports class service types. + + + Unable to retrieve IUnknown for object. + + + A message with action {0} could not be parsed. + + + Attribute '{0}' is required on element '{1}'. + + + The service operation requires a transaction to be flowed. + + + The value '{1}' is not supported in this context for the binding security property '{0}'. + + + The binding ('{0}', '{1}') has been configured with a MutualCertificateDuplexBindingElement that requires a client certificate. The client certificate is currently missing. + + + An error was encountered when parsing a DateTime value in the XML. + + + A Channel/Service Endpoint is null. + + + The provided SafeArray parameter was passed by value. SafeArray parameters must be passed by reference. + + + the quota was exceeded + + + Created {0} + + + The claimType cannot be an empty string. + + + The binding for scheme '{0}' specified in the protocol mapping does not exist and must be created. + + + The outgoing message with action '{0}' contains a callback context message property. Callback context cannot be transmitted in outgoing messages at the server. + + + The binding ('{0}','{1}') for contract ('{2}','{3}') is configured with SecureConversation, but the authentication mode is not able to provide the request/reply-based integrity and confidentiality required for the negotiation. + + + The value of the addressHeaders argument is invalid because the collection contains null values. Null is not a valid value for the AddressHeaderCollection. + + + The incoming transaction cannot be deserialized. The transaction header in the message was either malformed or in an unrecognized format. The client and the service must be configured to use the same protocol and protocol version. The following exception occurred: {0} + + + The value of this argument must be non-negative. + + + The MetadataExchangeClient has resolved more than MaximumResolvedReferences. + + + Specified value has invalid CRLF characters. + + + Only a '{0}' using '{1}' or '{2}' is supported in this scenario. + + + Fault named {0} in operation {1} cannot be imported. {2} + + + The address for acknowledgements must be the same as the address for application messages. Verify that your endpoint is configured to use the same URI for these two addresses. + + + The ('{0}', '{1}') signed header contains the ('{2}', '{3}') attribute. The expected attribute is ('{4}', '{5}'). + + + The value '{1}' for the '{0}' property is not supported in Windows Store apps. + + + The elements of the SafeArray must be of the type VARIANT. + + + An unsupported security policy assertion was detected during the security policy import: {0} + + + The specified method handle is incorrect for the proxy of type '{0}' + + + Get machine.config common behaviors. + + + The MessageFilterTable state is corrupt. The requested lookup cannot be performed. + + + ContextChannel created. + + + Both offset and generation cannot be specified for Derived Key Token. + + + The SecurityContextSecurityToken with context-id={0} (key generation-id={1}) has expired. + + + The DeliveryRequirementsAttribute on contract '{0}' specifies a QueuedDeliveryRequirements value of NotAllowed. However, the configured binding for this contract specifies that it does support queued delivery. A queued binding may not be used with this contract. + + + A failure occurred when sending a security session Close response to the client. + + + No type library available for interface + + + The channeloption intrinsic object cannot be created because the channel builder is not initialized. + + + The specified nonce is too short. The minimum required nonce length is 4 bytes. + + + A null value cannot be added to the generic collection, because the collection has been parameterized with a value type. + + + Object type must be an enum with the flag attribute. '{0}' is not an enum - or the flag attribute is not set. Please use an enum type with the flag attribute instead. + + + A message in a WS-RM sequence has been dropped because it could not be buffered. + + + The HTTP request to '{0}' has exceeded the allotted timeout of {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + The NetworkCredentials provided for the Kerberos Token does not have a valid UserName. + + + Invalid HostNameComparisonMode value: {0}. + + + The type {0} registered as a WSDL extension does not implement IWsdlImportExtension. + + + This fault did not provide a reason (MessageFault.Reason was null). + + + An error occurred while loading attribute '{0}' on type '{1}'. Please see InnerException for more details. + + + The task-based asynchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a synchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must define the same return type. In this case, the return types are different. To fix it, ensure that method '{0}' and method '{3}' have the same return type. Alternatively, changing the name of one of the methods will prevent matching. + + + Identity check failed for outgoing message. The expected DNS identity of the remote endpoint was '{0}' but the remote endpoint provided DNS claim '{1}'. If this is a legitimate remote endpoint, you can fix the problem by explicitly specifying DNS identity '{1}' as the Identity property of EndpointAddress when creating channel proxy. + + + The transport configured on this binding does not appear to support the CompressionFormat specified ({0}) on the message encoder. To resolve this issue, set the CompressionFormat on the {1} to '{2}' or use a different transport. + + + {0} returned false from OnTryCreateException, but returned a non-null Exception (See InnerException for details). + + + This operation is not possible since the dictionary is empty. + + + ServiceDurableInstance loaded from persistence store. + + + The transaction '{0}' was received for operation '{1}' from an InstanceContext transaction. + + + The wsrm:LastMsgNumber value is too small. A message with a larger sequence number has already been received. + + + The socket transfer timed out after {0}. You have exceeded the timeout set on your binding. The time allotted to this operation may have been a portion of a longer timeout. The local IP address and port is {1}. The remote IP address and port is {2}. + + + Unsupported WSDL, only one message part is supported for fault messages. This fault message references zero or more than one message part. If you have edit access to the WSDL file, you can fix the problem by removing the extra message parts such that fault message references just one part. + + + The receiver returned an error indicating that the content type was missing on the request to {0}. See the inner exception for more information. + + + Reading of a categories document started. + + + EncryptedKey with ReferenceList is not allowed according to the current settings. + + + The client security session was redirected. + + + An invalid WS-RM message was received. + + + No timestamp is available in the security header to do replay detection. + + + Cannot create a typed message due to action mismatch, expecting {0} encountered {1} + + + More than one IStreamUpgradeProviderElement was found in the BindingParameters of the BindingContext. This usually is caused by having multiple IStreamUpgradeProviderElements in a CustomBinding. Remove all but one of these elements. + + + The derived key's generation ('{0}') and length ('{1}' bytes) result in a key derivation offset that is greater than the maximum offset ('{2}' bytes) allowed. + + + Closing {0} + + + The service was unable to verify the cipher strengths negotiated as part of the SSL handshake. + + + Client certificate is invalid with native error code {0} (see http://go.microsoft.com/fwlink/?LinkId=187517 for details). + + + Calling Post() on '{0}' resulted in multiple callbacks. This indicates a problem in '{0}'. + + + The target service address was not specified on '{0}'. + + + The server's X509SecurityTokenProvider cannot be null. + + + The request message has FaultTo='{0}' but IContextChannel.RemoteAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress because sending a reply to a different address than the original sender can create a security risk. If you want to process such messages, enable ManualAddressing. + + + The WSHttpBinding with name {0} failed validation because it contains a BindingElement with type {1} which is not supported in partial trust. Consider disabling the message security and reliable session options, using BasicHttpBinding, or hosting your application in a full-trust environment. + + + OperationContract method '{0}' in type '{1}' does not properly implement the async pattern, as no corresponding method '{2}' could be found. Either provide a method called '{2}' or set the AsyncPattern property on method '{0}' to false. + + + Required runtime property '{0}' is not initialized on DispatchRuntime. Do not remove ServiceBehaviorAttribute from ServiceDescription.Behaviors or ensure that you include a third-party service behavior that supplies this value. + + + Listen at '{0}'. + + + ExtendedProtectionPolicy specified a PolicyEnforcement of 'Always' and a ChannelBinding was not found. This prevents the ExtendedProtectionPolicy from being enforced. Change the binding to make a ChannelBinding available, for StandardBindings use a SecurityMode of TransportWithMessageCredential and a ClientCredential type of Windows. For CustomBindings use SspiNegotiationOverTransport or KerberosOverTransport. Alternatively, specify a PolicyEnforcement of 'Never'. + + + SOAP security negotiation with '{0}' for target '{1}' failed. See inner exception for more details. + + + The RM source received a CreateSequence request. The RM source does not process CreateSequence requests. + + + Socket connection: '{0}'. + + + Setting a value via WMI. + + + Close process timed out waiting for service dispatch to complete. + + + The issuer must provide a proof token in key entropy mode '{0}'. + + + The communication object, {0}, cannot be used due to an error that occurred during close. + + + There was a problem loading the XSD documents provided: a reference to a schema type with name '{0}' and namespace '{1}' could not be resolved because the type definition could not be found in the schema for targetNamespace '{1}'. Please check the XSD documents provided and try again. + + + The feed created a null person. + + + The channel is not open. + + + Cannot find usable policy alternatives. + + + Identity verification succeeded. + + + Importing metadata from issuer '{0}' failed with error '{1}'. + + + The issued token cache was not specified on '{0}'. + + + Received a message over TCP channel + + + Get BehaviorElement. + + + The result cannot be represented as a nodeset. Only results of type XPathResultType.NodeSet can be represented as nodesets. + + + Schema with target namespace '{0}' could not be found. + + + The client's security session was not able to close its output session within the configured timeout ({0}). + + + The '{0}' from the '{1}' namespace is empty and does not specify a valid identity claim. + + + The key effective and expiration times must be bounded by the token effective and expiration times. + + + The serialized token version {0} is unsupported. + + + The SOAP action specified on the message, '{0}', does not match the action specified on the HttpRequestMessageProperty, '{1}'. + + + ClientCredentialType '{0}' can only be used on the server side, not the client side. Please use one of the following values instead 'None, Basic, Client, Digest, Ntlm, Windows'. + + + Cannot open ChannelDispatcher because it is not attached to a ServiceHost. + + + When authentication schemes 'Basic' and also '{0}' are enabled, the value of IncludeWindowsGroups for Windows ('{1}') and UserName authentication ('{2}') must match. Please consider using the same value in both places. + + + ServiceHost error on calling ReleasePerformanceCounters. + + + Expecting End {0}. + + + The type or member named '{0}' could not be loaded because it has two incompatible attributes: '{1}' and '{2}'. To fix the problem, remove one of the attributes from the type or member. + + + The security session received an unexpected close from the other party. + + + SecuritySessionServerSettings.CreateAcceptor, channelAcceptor must be null, can not create twice. + + + Formatter {0} returned a null reply message for call to operation '{1}'. + + + The derived key's Offset ('{0}' bytes) exceeds the maximum offset ('{1}' bytes) allowed. + + + Invalid attribute on the XPath. + + + The element with name '{0}' and namespace '{1}' is not an allowed document format. + + + The remote endpoint sent conflicting requests to create a reliable session. The remote endpoint requested both a one way and a two way session. The reliable session has been faulted. + + + The recipient did not provide its certificate. This certificate is required by the TLS protocol. Both parties must have access to their certificates. + + + Always close the client. + + + Generating message contract since the operation {0} is neither RPC nor document wrapped. + + + The UriTemplate '{0}' is not valid; the UriTemplate variable declaration '{1}' provides a default value to query variable '{2}'. Note that UriTemplate doesn't support default values to query variables. See the documentation for UriTemplate for more details. + + + The {0}:{1} element requires a {2}:{3} child element but has the {4} child element under the {5} namespace. + + + There were multiple UriTemplateMatch results, but MatchSingle was called. + + + failed to establish a data connection to the service + + + The number of derived keys in the message has exceeded the maximum allowed number '{0}'. + + + NegotiationTokenAuthenticator was attached. + + + The message header with name '{0}' and namespace '{1}' is already present in the set of understood headers. + + + The value of this argument must be positive. + + + Parameter value cannot be an empty string. + + + Delayed security application has already been completed. + + + The RequestSecurityToken has an invalid or unspecified RequestType '{0}'. + + + The TrustVersion '{0}', is not supported, only 'TrustVersion.WSTrust13' and 'TrustVersion.WSTrustFeb2005' is supported. + + + DerivedKey length ({0}) exceeds the allowed settings ({1}). + + + OnAuthorizeRequest Succeeded. + + + For request in operation {0} to be a stream the operation must have a single parameter whose type is Stream. + + + There are too many renewed session keys that have not been used. + + + The policy expression was not fully imported because its normalized form was too large. + + + The BaseUriWithWildcard object has invalid fields after deserialization. + + + Channel type '{1}' was requested, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + XmlReader not positioned at a start element. + + + Note: your service must have an http base address to add this endpoint. + + + Add the following endpoint. + + + Note: the service name must match the configuration name for the service implementation. + + + Add the following element to your service behavior configuration. + + + No IPEndpoints were found for host {0}. + + + The StreamUpgradeInitiator specified ({0}) is not supported by this IStreamUpgradeChannelBindingProvider implementation. The most likely cause of this is passing a StreamUpgradeInitiator that was not created by the StreamUpgradeProvider associated with the current IStreamUpgradeChannelBindingProvider implementation. + + + The security session operation failed at the server. + + + Line {0}, position {1}. + + + The RM destination received an CloseSequenceResponse message. The RM destination does not process CloseSequenceResponse messages. + + + The '{0}', '{1}' required message part was not encrypted. + + + AllowInitializationUI was set to false for this channel, but the channel is configured to use the '{0}' as an interactive initializer. + + + Writing of a syndication feed started. + + + No existing transport manager was found for the specified URI. + + + An HTTP Content-Type header is required for SOAP messaging and none was found. + + + A return sequence was not offered by the create sequence request. The create sequence response cannot accept a return sequence. + + + Expected XML qualified name, found '{0}'. + + + The context-id={0} (no key generation-id) is already registered with SecurityContextSecurityTokenAuthenticator. + + + Supporting token signatures not expected. + + + A reply message was received without a valid RelatesTo header. This may have been caused by a missing RelatesTo header or a RelatesTo header with an invalid WS-Addressing Relationship type. + + + Server faulted with code '{0}'. + + + No security session listener was found for message with action '{0}'. + + + DataContractSerializer does not support collection specified on element '{0}' + + + Parameter at index {0} is null. + + + From: {0}\nAppId: {1}\nClsId: {2}\nIncoming TransactionId: {3}\nRequesting Identity: {4} + + + The operation {0} either has a parameter or a return type that is attributed with MessageContractAttribute. In order to represent the request message using a Message Contract, the operation must have a single parameter attributed with MessageContractAttribute. In order to represent the response message using a Message Contract, the operation's return value must be a type that is attributed with MessageContractAttribute and the operation may not have any out or ref parameters. + + + Incoming HTTP request with URI '{0}' does not match any operation. + + + An AsyncCallback threw an exception. + + + ServiceHost faulted. + + + XPath:{0}\r\n Assertions: + + + The valid from time is greater than the valid to time. + + + Operation was aborted while establishing a connection to {0}. + + + Duplicate contract XmlQualifiedNames are not supported.\r\nAnother ContractDescription with the Name: {0} and Namespace: {1} has already been exported. + + + The server didn't accept the connection request. It is possible that the client side message encoding format or message transfer mode doesn't match the setting on the server side. Please check your binding settings. + + + The SecurityContextSecurityToken's key needs to be renewed. + + + Client cannot determine the Service Principal Name based on the identity in the target address '{0}' for the purpose of SspiNegotiation/Kerberos. The target address identity must be a UPN identity (like acmedomain\\alice) or SPN identity (like host/bobs-machine). + + + The SecurityBinding for the ('{0}','{1}') binding for the ('{2}','{3}') contract only supports the OneWay operation. + + + InstanceContext cached for InstanceId {0}. + + + The remote endpoint sent an unexpected request for an ack. Simplex clients do not send acks and do not process requests for acks. + + + XPathNavigator must be a SeekableXPathNavigator. + + + An error occurred when processing the security tokens in the message. + + + The remote server returned an unexpected response: ({0}) {1}. + + + Invalid async End method signature for method {0} in ServiceContract type {1}. Your end method must take an IAsyncResult as the last argument. + + + ID0023: Failed to create an instance of '{0}' from configuration. A custom configuration element was specified, but the method LoadCustomConfiguration was not implemented. Override LoadCustomConfiguration to handle custom configuration loading. + + + ID0020: The collection is empty. + + + ID3285: The WS-Trust operation '{0}' is not valid or unsupported. + + + ID3287: WSTrustChannelFactory does not support changing the value of this property after a channel is created. + + + ID3286: The 'inner' parameter must implement the 'System.ServiceModel.Channels.IChannel' interface. + + + ID3269: Cannot determine the TrustVersion. It must either be specified explicitly, or a SecurityBindingElement must be present in the binding. + + + ID3270: The WSTrustChannel does not support multi-leg issuance protocols. The RSTR received from the STS must be enclosed in a RequestSecurityTokenResponseCollection element. + + + ID3097: ServiceHost does not contain any valid Endpoints. Add at least one valid endpoint in the SecurityTokenServiceConfiguration.TrustEndpoints collection. + + + ID3023: The WSTrustServiceContract only supports receiving RequestSecurityToken messages asynchronously. If you need to support more message types, override the WSTrustServiceContract.BeginDispatchRequest and EndDispatchRequest. + + + ID3022: The WSTrustServiceContract only supports receiving RequestSecurityToken messages. If you need to support more message types, override the WSTrustServiceContract.DispatchRequest method. + + + ID3002: WSTrustServiceContract could not create a SecurityTokenService instance from WSTrustServiceContract.SecurityTokenServiceConfiguration. + + + ID3004: Cannot obtain the schema for namespace: '{0}'. + + + ID3193: The WSTrustChannel cannot compute a proof key. The received RequestedSecurityTokenResponse indicates that the proof key is computed using combined entropy. However, the response does not include an entropy. + + + ID3192: The WSTrustChannel cannot compute a proof key. The received RequestedSecurityTokenResponse does not contain a RequestedProofToken and the ComputedKeyAlgorithm specified in the response is not supported: '{0}'. + + + ID3191: The WSTrustChannel received a RequestedSecurityTokenResponse message containing an Entropy without a ComputedKeyAlgorithm. + + + ID3190: The WSTrustChannel cannot compute a proof key without a valid SecurityToken set as the RequestSecurityToken.UseKey when the RequestSecurityToken.KeyType is '{0}'. + + + ID3194: The WSTrustChannel cannot compute a proof key. The received RequestedSecurityTokenResponse indicates that the proof key is computed using combined entropy. However, the request does not include an entropy. + + + ID3139: The WSTrustChannel cannot compute a proof key. The KeyType '{0}' is not supported. Valid proof key types supported by the WSTrustChannel are WSTrust13 and WSTrustFeb2005. + + + ID3138: The RequestSecurityTokenResponse that was received did not contain a SecurityToken. + + + ID3137: The TrustVersion '{0}', is not supported, only 'TrustVersion.WSTrust13' and 'TrustVersion.WSTrustFeb2005' is supported. + + + ID3113: The WSTrustServiceContract does not support receiving '{0}' messages with the '{1}' SOAP action. If you need to support this, override the ValidateDispatchContext method. + + + ID3112: Unrecognized RequestType '{0}' specified in the incoming request. + + + ID3114: The WSTrustServiceContract cannot deserialize the WS-Trust request. + + + ID3148: WsdlEndpointConversionContext.WsdlPort.Service.ServiceDescription cannot be null. + + + ID3149: Cannot find an input message type for PortType '({0}, {1})' for operation '{2}' in the given ServiceDescription. + + + ID3146: WsdlEndpointConversionContext.WsdlPort cannot be null. + + + ID3147: WsdlEndpointConversionContext.WsdlPort.Service cannot be null. + + + ID3144: The PortType '{0}' Operation '{1}' has Message '{2}' is expected to have only one part but contains '{3}'. + + + ID3140: Specify one or more BaseAddresses to enable metadata or set DisableWsdl to true in the SecurityTokenServiceConfiguration. + + + ID3141: The RequestType '{0}', is not supported. If you need to support this RequestType, override the corresponding virtual method in your SecurityTokenService derived class. + + + ID3150: Cannot find an output message type for PortType '({0}, {1})' for operation '{2}' in the given ServiceDescription. + + + This operation would deadlock because the reply cannot be received until the current Message completes processing. If you want to allow out-of-order message processing, specify ConcurrencyMode of Reentrant or Multiple on {0}. + + + ID2004: IAsyncResult must be the AsyncResult instance returned from the Begin call. The runtime is expecting '{0}', and the actual type is '{1}'. + + + ID5004: Unrecognized namespace: '{0}'. + + + ID4053: The token has WS-SecureConversation version '{0}'. Version '{1}' was expected. + + + ID4041: Cannot configure the ServiceHost '{0}'. The ServiceHost is in a bad state and cannot be configured. + + + ID4072: The SecurityTokenHandler '{0}' registered for TokenType '{1}' must derive from '{2}'. + + + ID4008: '{0}' does not provide an implementation for '{1}'. + + + ID4039: A custom ServiceAuthorizationManager has been configured. Any custom ServiceAuthorizationManager must be derived from IdentityModelServiceAuthorizationManager. + + + ID4287: The SecurityTokenRequirement '{0}' doesn't contain a ListenUri. + + + ID4285: Cannot replace SecurityToken with Id '{0}' in cache with new one. Token must exist in cache to be replaced. + + + ID4271: No IAuthorizationPolicy was found for the Transport security token '{0}'. + + + ID4274: The Configuration property of this SecurityTokenHandler is set to null. Tokens cannot be read or validated in this state. Set this property or add this SecurityTokenHandler to a SecurityTokenHandlerCollection with a valid Configuration property. + + + ID4268: MergeClaims must have at least one identity that is not null. + + + ID4240: The tokenRequirement must derived from 'RecipientServiceModelSecurityTokenRequirement' for SecureConversationSecurityTokens. The tokenRequirement is of type '{0}'. + + + ID4244: Internal error: sessionAuthenticator must support IIssuanceSecurityTokenAuthenticator. + + + ID4245: Internal error: sessionAuthenticator must support ICommunicationObject. + + + ID4192: The reader is not positioned on a KeyInfo element that can be read. + + + ID4101: The token cannot be validated because it is not a SamlSecurityToken or a Saml2SecurityToken. Token type: '{0}' + + + No RequestSecurityTokenResponse elements were found. + + + In order to use Streams with the MessageContract programming model, the type {0} must have a single member with MessageBodyMember attribute and the member type must be Stream. + + + The MetadataExchangeClient could not create an IChannelFactory for: address='{0}', dialect='{1}', and identifier='{2}'. + + + The message could not be transferred within the allotted timeout of {0}. There was no space available in the reliable channel's transfer window. The time allotted to this operation may have been a portion of a longer timeout. + + + CODEGEN: {0} + + + The binary encoder session is not valid. There was an error decoding a previous message. + + + Sql execution complete. + + + A null UriTemplate was passed as the key in a pair of template and its associated object. UriTemplateTable Key-Value pairs must always contain a valid UriTemplate object as key. See the documentation for UriTemplateTable for more details. + + + '{0}' cannot return a null '{1}' instance. Please ensure that '{0}' returns a valid '{1}' instance. + + + =The feed created a null item. + + + Invalid async Begin method signature for method {0} in ServiceContract type {1}. Your begin method must take an AsyncCallback and an object as the last two arguments and return an IAsyncResult. + + + A policy reference was ignored because the required {0} attribute was missing. + + + Operation property of OperationAttributeGenerationContext is required to generate an attribute based on settings. + + + Configuration evaluation context not found. + + + The derived key has not been computed for the security token. + + + The security session requires a security token resolver that implements '{1}'. The security token resolver '{0}' does not implement '{1}'. + + + A policy reference was ignored because the policy with ID '{0}' could not be found. + + + BaseAddress has not been set. Set the BaseAddress property before calling MakeReadOnly, Match, or MatchSingle. + + + Operations marked with IsOneWay=true must not declare output parameters, by-reference parameters or return values. + + + The optional WSDL extension element '{0}' from namespace '{1}' was not handled.\r\nXPath: {2} + + + Cannot open ChannelFactory as the inner channel factory was not set during the initialization process. + + + The '{0}' service is configured with ReleaseServiceInstanceOnTransactionComplete set to true, but the ConcurrencyMode is not set to Single. The ReleaseServiceInstanceOnTransactionComplete requires the use of ConcurrencyMode.Single. + + + The string value can't be determined because the XPathNodeIterator has been moved past the first node. + + + An operation was skipped during export because the property '{0}' is set to '{1}'. This operation should be used for server only and should not be exposed from WSDL. \r\nContract Name:{2}\r\nContract Namespace:{3}\r\nOperation Name:{4} + + + A connection has exceeded the idle timeout of this connection pool ({0}) and been closed. + + + The proof token was not wrapped correctly in the RequestSecurityTokenResponse. + + + Framing mode {0} is not supported. + + + Session filter's isStrictMode differs from filter table's isStrictMode. + + + Method {0} in type {1} has more than one header part of type array of XmlElement. + + + The item's links were not serialized as part of serializing the feed in RSS 2.0 format. + + + Operation {0} binding {1} has extra part {2} that is not present in other bindings + + + The token provider '{0}' does not support token renewal. + + + Invalid type: '{0}'. It must inherit from base type '{1}', cannot be abstract, and must expose a public default constructor. + + + Binding validation failed because the TransportBindingElement's ManualAddressing property was set to true on a binding that is configured to create reliable sessions. This combination is not supported and the channel factory or service host was not opened. + + + The subprotocol '{0}' was not requested by the client - no '{1}' header was included in the request. + + + Construct ServiceHost '{0}'. + + + The WS-AtomicTransaction extended information included in the OLE Transactions propagation token was invalid or corrupt. + + + More than one '{0}' objects were found in the BindingParameters of the BindingContext. This is usually caused by having multiple '{0}' objects in a CustomBinding. Remove all but one of these elements. + + + The received derived key token has a invalid generation value specified. Value: {0}. The value should be greater than or equal to zero. + + + There was an error while updating the performance counter '{0}'. This performance counter will be disabled. + + + The argument must be a non-empty string. + + + The algorithm '{0}' is not accepted for operation '{1}' by algorithm suite {2}. + + + Generating message contract since the operation {0} has untyped Message as argument or return type + + + In order to generate configuration information using the GenerateServiceEndpoint method, the ServiceContractGenerator instance must have been initialized with a valid Configuration object. + + + The issuer must provide a computed key in key entropy mode '{0}'. + + + XmlArrayAttribute cannot be used in repeating part {1}:{0}. + + + The request for security token has invalid or malformed elements. + + + MTAWorkerThread exception + + + The '{0}' security token with the '{1}' attachment mode must be encrypted. + + + Security sessions require all messages to be signed. + + + The return value of type {0} on method {1} of interface {2} cannot be serialized. + + + The type {0} registered as a WSDL extension does not have a public default constructor. WSDL extensions must have a public default constructor. + + + Processing message {0}. + + + The required '{0}' property on the '{1}' security protocol factory is not set or has an invalid value. + + + Content Type {0} was sent to a service expecting {1}. The client and service bindings may be mismatched. + + + EndpointAddress: {0}, Via:{1} + + + No KeyInfo in signature to find verification token. + + + There is no binary negotiation to send to the other party. + + + Required inner element '{0}' was not found. + + + Cannot resolve the host name of URI \"{0}\" using DNS. + + + The WebSocketModule is not loaded. Check if the WebSocket feature is installed and the WebSocketModule is enabled in the list of IIS modules (see http://go.microsoft.com/fwlink/?LinkId=231398 for details). + + + The transaction '{0}' for operation '{1}' was completed due to the TransactionAutoComplete OperationBehaviorAttribute member being set to true. + + + A security session close response was received with an invalid action '{0}', + + + The token's crypto collection has multiple objects of type '{0}'. + + + Shutdown request was not received. + + + Primary signature must be computed before supporting token signatures. + + + Request timed out after {0} while establishing a transport connection to {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + Changing an inline default value with information from the additional default values is not supported; the default value to the variable '{0}' was already provided as part of the UriTemplate '{1}'. See the documentation for UriTemplate for more details. + + + The service certificate is not provided. Specify a service certificate in ServiceCredentials. + + + Transport security negotiation failed due to an underlying IO error: {0}. + + + MaxOutboundConnectionsPerEndpoint quota ({0}) has been reached, so connection was closed and not stored in this connection pool. + + + ServiceDurableInstance '{0}' disposed. + + + Cannot issue the token type '{0}'. + + + Writing of a service document started. + + + Style {1} on header {0} does not match expected style {2}. + + + The binding to use to communicate to the federation service at '{0}' is not specified. + + + Derived Key Token cannot derive key from the secret. + + + The 'To' header on the message is set to Anonymous Uri '{0}'. Please set the 'To' header to a non-anonymous address as message cannot be addressed to anonymous Uri on server side composite duplex channels. + + + There was an error in serializing body of message {0}: '{1}'. Please see InnerException for more details. + + + OnAuthorizeRequest Failed. + + + Security channel or listener factory creation failed. Secure conversation security token parameters do not specify the bootstrap security binding element. + + + The MetadataExchangeClient can only get metadata from http and https MetadataLocations. It cannot get metadata from '{0}'. + + + failed to retrieve the LogonSid of the service process ({0}) + + + Value '{0}' provided for {1} property is an invalid URI. + + + PrivacyNotice element must have a Version attribute. + + + A TCP error ({0}: {1}) occurred while transmitting data. + + + The CloneCore method of {0} type returned an invalid result. + + + Reading of a syndication feed completed. + + + Cannot create a unique part name for {0}. + + + Parameter value '{0}' is an invalid URI. + + + In operation '{0}', cannot return null from methods that return Message. + + + The {0}:{1} element requires a {2}:{3} child element but has no child elements. + + + The request message has ReplyTo='{0}' but IContextChannel.RemoteAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress because sending a reply to a different address than the original sender can create a security risk. If you want to process such messages, enable ManualAddressing. + + + The requested service, '{0}' could not be activated. See the server's diagnostic trace logs for more information. + + + The RM Source could not transfer the last message within the timeout the user specified. + + + The SecurityContextSecurityToken with context-id={0} (key generation-id={1}) is not registered. + + + Security token parameters must be specified with supporting tokens for each message. + + + A graceful close was attempted on the socket, but the other side ({0}) is still sending data. + + + The context for building the issuer channel was not specified on '{0}'. + + + XML unique ID not supported. + + + ContextBindingElement cannot provide channel listener for the requested channel shape {0}. + + + The '{0}' list is invalid because the property '{1}' of '{2}' is not null. + + + Mex binding section name attribute not specified. + + + The signing token {0} has no keys. The security token is used in a context that requires it to perform cryptographic operations, but the token contains no cryptographic keys. Either the token type does not support cryptographic operations, or the particular token instance does not contain cryptographic keys. Check your configuration to ensure that cryptographically disabled token types (for example, UserNameSecurityToken) are not specified in a context that requires cryptographic operations (for example, an endorsing supporting token). + + + '{0}' cannot be invoked within the current hosting environment. This API requires that the calling application be hosted in IIS or WAS. + + + ContractDescription '{0}' has zero IsInitiating=true operations; a contract must have at least one IsInitiating=true operation. + + + {0} + + + The communication object, {0}, cannot be used for communication because it is in the Faulted state: {1} + + + The token provider cannot get tokens for target '{0}'. + + + Get ServiceElement. + + + The request operation did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + '{0}' from namespace '{1}' is not expected to appear more than once + + + A problem occurred while reading a message. See inner exception for details. + + + Token inclusion mode '{0}' is not supported. + + + The message was not encrypted with the required encryption token. + + + The issued token accompanying the WS-AtomicTransaction coordination context was invalid or corrupt. + + + The '{0}' authentication scheme has been specified for the proxy on the HTTP factory. However, the factory only supports specification of exactly one authentication scheme. Valid authentication schemes are Digest, Negotiate, NTLM, Basic, or Anonymous. + + + The service endpoint failed to listen on the URI '{0}' because the shared memory section was not found. Verify that the '{1}' service is running. + + + the URI is already registered with the service + + + The RoleProvider {0} specified in the configuration is invalid. No such provider was found registered under system.web/roleManager/providers. + + + The dispatch instance for duplex callbacks cannot be activated - you must provide an instance. + + + Invalid binary representation of an X.509 certificate. + + + The security binding element for bootstrap security was not specified on '{0}'. + + + The Service with name '{0}' could not be constructed because the application does not have permission to construct the type: both the Type and its default parameter-less constructor must be public. + + + ... + + + Not allowed to override prefix '{0}'. + + + The remote endpoint sent inconsistent responses to the same create sequence request. The sequence identifiers are not identical. + + + This OperationContextScope is being disposed on a different thread than it was created. + + + The signature token '{0}' is not the same token as the encryption token '{1}'. + + + Sql execution started. + + + The ClientOperation '{0}' requires Formatter, since SerializeRequest and DeserializeReply are not both false. + + + Failed to send response message over HTTP + + + The DispatchRuntime.EnsureOrderedDispatch property is set to true, but the DispatchRuntime.ConcurrencyMode is not set to Single. EnsureOrderedDispatch requires the use of ConcurrencyMode.Single. + + + The channel received an unexpected input message with Action '{0}' while closing. You should only close your channel when you are not expecting any more input messages. + + + Either offset or generation must be specified for Derived Key Token. + + + The token resolver is unable to resolve the security key reference '{0}'. + + + Operation Action={0} + + + The XmlReader used for the body of the message must be positioned on an element. + + + The binding ('{0}','{1}') supports streaming which cannot be configured together with message level security. Consider choosing a different transfer mode or choosing the transport level security. + + + A Close message was sent by the client security session. + + + The feed's id was not serialized as part of serializing the feed in RSS 2.0 format. + + + The '{0}' username token has an unsupported password type. + + + Target object does not support IPersistStream. + + + No signing token is available to do an incoming identity check. + + + A call to IChannelFactory.CreateChannel made on an object of type {0} failed because Open has not been called on this object. + + + The communication object, {0}, is not part of WCF and is in an unsupported state '{1}'. This indicates an internal error in the implementation of that communication object. + + + Message is closed. + + + Invalid decoder state machine. + + + Cannot load library {0}. Ensure that WCF is properly installed. + + + Execute '{0}.{1}'. + + + This collection holds request headers and cannot contain the specified response header '{0}'. + + + The negotiation has already completed. + + + PrivacyNotice element Version attribute must have an integer value. + + + The syndication feed formatter must be configured with a syndication feed. + + + Incoming HTTP request with URI '{0}' matched operation '{1}'. + + + The AuthenticationSchemes cannot be added to the binding parameters because the binding parameters already contains AuthenticationSchemes '{0}'. If you are configuring custom AuthenticationSchemes for the service, please first remove any existing AuthenticationSchemes from the behaviors collection before adding custom AuthenticationSchemes. + + + The number of encrypted keys in the message has exceeded the maximum allowed number '{0}'. + + + A value of type '{0}' cannot be added to the generic collection, because the collection has been parameterized with a different type. + + + The message with To '{0}' cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher. Check that the sender and receiver's EndpointAddresses agree. + + + Cannot resolve KeyInfo for decryption: KeyInfo '{0}', available tokens '{1}'. + + + Crypto algorithm {0} not supported in this context. + + + Error in deserializing body of reply message for operation '{0}'. {1} + + + The interface with IID {0} is not configured in the COM+ catalog and cannot be exposed as a web service. + + + Support for {0} and {1} can not be enabled with {2} when the {3} of the {4} is '{5}'. Ensure the {4} used with the binding has a {3} of '{6}'. + + + The X.509 certificate {0} chain building failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. {1} + + + An attempt to load the native type library '{0}' was made. Native type libraries cannot be loaded. + + + The IssuanceTokenProvider applied a redirection header. + + + This fault did not provide a matching translation: {0} + + + the service failed the security checks + + + A filter has attempted to access the body of a Message. Use a MessageBuffer instead if body filtering is required. + + + Finished Security ImportChannelBinding + + + The session token was not closed by the server. + + + This SecurityKeyIdentifier does not have any clause that can create a key. + + + This property sets ManualAddressing on the client. To set ManualAddressing on the server, use ChannelDispatcher's ManualAddressing. + + + MessageHeaderArrayAttribute found on member {0} is not a single dimensional array. + + + The wsrm:TerminateSequence protocol message was transmitted before the sequence was successfully completed. + + + The specified size exceeds the remaining buffer space ({0} bytes). + + + The service does not accept issued tokens. + + + The lower bound of the SafeArray was not zero. SafeArrays with a lower bound other than zero cannot be used. + + + An error ({0}) occurred while transmitting data over the HTTP channel. + + + Received a message over a channel. + + + The framing via ({0}) is not a valid URI. + + + The argument to an IXsltContextFunction could not be converted to a string. + + + Cannot specify 'ContextMessageProperty' in message when using context channel with context management enabled. Ensure the message does not have 'ContextMessageProperty' or disable context management by setting channel property 'IContextManager.Enabled' to false. + + + Duplex security is not supported by the security protocol factory '{0}'. + + + The received derived key token has a invalid offset value specified. Value: {0}. The value should be greater than or equal to zero. + + + The Header ('{0}', '{1}') was encrypted but not signed. All encrypted headers outside the security header should be signed. + + + The Receive operation timed out after '{0}'. For duplex sessionful channels, the receive timeout is also the idle timeout for the channel, so consider setting a suitably large value for the ReceiveTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. + + + The session security token authenticator returned a token of type '{0}'. The token type expected is '{1}'. + + + The contract ('{0}','{1}') contains some unknown header ('{2}','{3}') which cannot be secured. Please choose ProtectionLevel.None for this header. + + + The MaximumResolvedReferences property of MetadataExchangeClient must be greater than or equal to one. '{0}' was specified. + + + Could not get token information (error=0x{0:X}). + + + IXsltContextVariables cannot return null. + + + The value specified ('{0}') contains more than one subprotocol which is not supported. + + + The value '{0}' is not a valid content type. + + + The endpoint's contract is not specified. + + + The OperationFormatter could not deserialize any information from the Message because the Message is empty (IsEmpty = true). + + + Expecting all chars - c - of id to be in set [Char.IsLetter(c), Char.IsNumber(c), '.', '_', '-'], found '{0}'. + + + The \"{0}\" namespace is not a recognized WS-Policy namespace. + + + The operation '{0}' could not be loaded because it specifies \"rpc-style\" in \"literal\" mode, but uses message contract types or the System.ServiceModel.Channels.Message. This combination is disallowed -- specify a different value for style or use parameters other than message contract types or System.ServiceModel.Channels.Message. + + + Context node is not supported in node sequences. + + + Could not revert impersonation on current thread. Continuing would compromise system security. Terminating process. + + + The collection of type {0} does not support values of type {1}. + + + Channel connection was dropped + + + Specified value has invalid non-ASCII characters. + + + The UriTemplate '{0}' is not valid; the UriTemplate path variable '{1}' has a null default value while the template is finished with a wildcard. Note that UriTemplate path variable with null default values must be followed only with other path variables with null defaulted value. See the documentation for UriTemplate for more details. + + + An exception was thrown while running a WSDL import extension: {0}\r\nError: {1} + + + The body writer does not support writing more than once because it is not buffered. + + + On DuplexSecurityProtocolFactory, the same protocol factory cannot be set for the forward and reverse directions. + + + Behavior type is not of expected type + + + The static CreateChannel method cannot be used with the contract {0} because that contract defines a callback contract. Please try using one of the static CreateChannel overloads on DuplexChannelFactory<TChannel>. + + + The filter already exists in the filter table. + + + The supporting token in the renew message has a different generation '{0}' than the current session token's generation '{1}'. + + + The security context token is expired or is not valid. The message was not processed. + + + In Binding '{0}', TransportBindingElement '{1}' does not appear last in the BindingElementCollection. Please change the order of elements such that the TransportBindingElement is last. + + + The AuthenticationManager cannot be added to the binding parameters because the binding parameters already contains a AuthenticationManager '{0}'. If you are configuring a custom AuthenticationManager for the service, please first remove any existing AuthenticationManagers from the behaviors collection before adding the custom AuthenticationManager. + + + Could not compile the XPath expression '{0}' with the given XsltContext. + + + baseAddress must an absolute Uri. + + + A policy expression was ignored because another policy expression with that ID has already been read in this document.\r\nXPath:{0} + + + The message property '{0}' inside the HttpRequestMessage is not with expected type '{1}'. Please make sure this property not removed or changed from the properties of the HttpRequestMessage. If you are creating a new HttpRequestMessage, please copy this property from the old message to the new one. + + + A client-side channel to the WS-AT protocol service could not be created. + + + The policy being imported for contract '{0}:{1}' contains multiple HTTP authentication scheme assertions. Since at most one such assertion is allowed, policy import has failed. This may be resolved by updating the policy to contain no more than one HTTP authentication scheme assertion. + + + Issuer entropy is not BinarySecretSecurityToken or WrappedKeySecurityToken. + + + The client security session renewed the session key. + + + An existing incompatible transport manager was found for the specified URI. + + + The 'provider' argument to the InstanceKey constructor must be a non-empty string which identifies the source of the key data. The 'provider' argument can be null, in which case the default correlation provider name is used. + + + There was a problem loading the XSD documents provided: a reference to a schema element with name '{0}' and namespace '{1}' could not be resolved because the element definition could not be found in the schema for targetNamespace '{1}'. Please check the XSD documents provided and try again. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a synchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, any additional attributes must be declared on the synchronous OperationContract method. In this case, the asynchronous OperationContract method '{2}' has one or more attributes of type '{5}'. To fix it, remove the '{5}' attribute or attributes from method '{2}'. Alternatively, changing the name of one of the methods will prevent matching. + + + Specified value has invalid HTTP Header characters. + + + The incoming message with action could not be processed because it is targeted at a request-reply operation, but cannot be replied to as the MessageId property is not set. + + + The HTTPS listener factory was configured to require a client certificate and the '{0}' authentication scheme. However, only one form of client authentication can be required at once. + + + The RM server requires the use of WS-ReliableMessaging 1.1 protocol. This is likely caused by a binding mismatch. + + + The security session operation completed successfully at the client. + + + The client security session discarded the previous session key. + + + The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error. + + + More than one SecurityBindingElement found in the binding ('{0}', '{1}) for contract ('{2}', '{3}'). Only one SecurityBindingElement is allowed. + + + The MetadataExchangeClient can only get metadata from absolute addresses. It cannot get metadata from '{0}'. + + + No custom principal is specified in the authorization context. + + + Cannot inherit two different operations with the same name, operation '{0}' from contracts '{1}' and '{2}' violate this rule. You can change the name of one of the operations by changing the method name or by using the Name property of OperationContractAttribute. + + + The service '{0}' is configured with a TransactionIsolationLevel but no operations are configured with TransactionScopeRequired set to true. TransactionIsolationLevel requires at least one operation with TransactionScopeRequired set to true. + + + failed to retrieve the UserSid of the current process + + + The binding (Name={0}, Namespace={1}) does not contain a TransportBindingElement. + + + StringNullOrEmpty + + + The operation did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + The 'Name' property cannot be set on an invalid InstanceKey. + + + Could not perform an AccessCheck (error=0x{0:X}). + + + Operation '{0}' is not valid in message body state '{1}'. + + + Supporting SecurityToken cannot be written without encryption. + + + Security processor was unable to find a security header in the message. This might be because the message is an unsecured fault or because there is a binding mismatch between the communicating parties. This can occur if the service is configured for security and the client is not using security. + + + Disposed: {0} + + + Could not find an appropriate transport manager for listen URI '{0}'. + + + The connection has been abandoned. + + + The service does not allow you to log on anonymously. + + + Access to windows management instrumentation (WMI) is denied. Application may be running in partial trust. Either disable WMI or configure the application to run in full trust. + + + {0} returned false from OnTryCreateFaultMessage, but returned a non-null fault message. + + + Failed to abort {0} + + + There is no endorsing session token that matches the specified RenewTarget '{0}'. + + + The MSDTC transaction manager's WS-AtomicTransaction protocol service '{0}' is disabled and cannot unmarshal incoming transactions. + + + In operation '{0}', cannot pass null to methods that take Message as input parameter. + + + An inactive security session was faulted by the server. + + + A metadata section containing policy did not have an identifier so it cannot be referenced. + + + Cannot create a security session. Retry later. + + + The HTTP proxy authentication credential specified an impersonation level restriction ({0}) that is stricter than the restriction for target server authentication ({1}). + + + A return sequence was offered by the create sequence request but the create sequence response did not accept this sequence. + + + For TransferMode.Buffered, MaxReceivedMessageSize and MaxBufferSize must be the same value. + + + The configuration is read-only. + + + Cannot find The X.509 certificate using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}' for target '{4}'. + + + Webhost could not activate service + + + The security token manager requires the security binding element to be specified in order to create a token authenticator for requirement '{0}'. + + + Evaluating message logging filter against the message exceeded the node quota set on the filter. + + + Required timestamp missing in security header. + + + The RM source does not support an RM destination initiated termination since messages can be lost. The reliable session cannot continue. + + + The formatter threw an exception while trying to deserialize the message: {0} + + + The remote endpoint replied to the request for a sequence with a response that could not be parsed. See inner exception for details. The channel could not be opened. + + + The SOAP action specified on the message, '{0}', does not match the action specified in the content-type of the HttpRequestMessageProperty, '{1}'. + + + The '{0}' dynamic link library (dll) failed to load. + + + Identity verification failed. + + + There is no compatible TransportManager found for URI '{0}'. This may be because you have used an absolute address that points outside of the virtual application, or the binding settings of the endpoint do not match those that have been set by other services or endpoints. Note that all bindings for the same protocol should have the same settings in the same application. + + + SecurityVersion must be WsSecurity10 or WsSecurity11. + + + The RM destination received multiple CreateSequence requests with different OfferId values over the same session. + + + The socket transfer timed out after {0}. You have exceeded the timeout set on your binding. The time allotted to this operation may have been a portion of a longer timeout. + + + QueryInterface succeeded but the persistable type wrapper was null. + + + Reading of a syndication item completed. + + + This CreateChannel overload cannot be called on this instance of DuplexChannelFactory, as the DuplexChannelFactory was initialized with a Type and no valid InstanceContext was provided. Please call the CreateChannel overload that takes an InstanceContext. + + + Message security verification failed. + + + Addressing Version '{0}' is not supported. + + + The stream security upgrade was accepted successfully. + + + The UriTemplate '{0}' is not valid; the path variable '{1}', defined as part of a compound path segment has been provided with a default value as part of the additional defaults. Note that UriTemplate doesn't support default values to variables in compound segments. See the documentation for UriTemplate for more details. + + + The message contains a callback context header with an endpoint reference for AddressingVersion '{0}'. Callback context can only be transmitted when the AddressingVersion is configured with 'WSAddressing10'. + + + ServiceHostBase's AddBaseAddress method cannot be called after the InitializeDescription method has completed. + + + The parameter cannot be empty. + + + The value of this argument must fall within the range {0} to {1}. + + + An unknown error occurred while trying to add a sequence message to the window. + + + The MetadataExchangeClient received a reply. + + + The binding for the endpoint at address '{0}' is configured with both the MsmqTransportBindingElement and the TransactionFlowBindingElement. These two elements cannot be used together. + + + The remote certificate is invalid according to the validation procedure. + + + Secure channel cannot be opened because security negotiation with the remote endpoint has failed. This may be due to absent or incorrectly specified EndpointIdentity in the EndpointAddress used to create the channel. Please verify the EndpointIdentity specified or implied by the EndpointAddress correctly identifies the remote endpoint. + + + Server returned an invalid SOAP Fault. Please see InnerException for more details. + + + Generating message contract since the wrapper name ({1}) of message {0} does not match the default value ({2}) + + + Contract not specified. + + + Failed to read an activity id header on a message + + + A response was received from a one-way send over the underlying IRequestChannel. Make sure the remote endpoint has a compatible binding at its endpoint (one that contains OneWayBindingElement). + + + DurableInstance's InstanceContext refcount incremented. + + + The '{0}','{1}' binding for the '{2}','{3}' contract is configured with a security version that does not support external references to X.509 tokens using the certificate's thumbprint value. Use '{4}' or higher as the security version for the binding. + + + There was an error importing a {0} that the {1} is dependent on.\r\nXPath to {0}: {2} + + + There was an error in serializing one of the headers in message {0}: '{1}'. Please see InnerException for more details. + + + The session channel must be opened before the session ID can be accessed. + + + When present, the dialect attribute must have the value '{0}'. + + + No outgoing EndpointAddress is available to check the identity on a received reply. + + + The PrimitiveOperationFormatter was given a parameter or return type which it does not support. + + + Could not find a compatible transport manager for URI '{0}'. + + + The configured policy specifies more than one TransactionProtocol across the operations. A single TransactionProtocol for each endpoint must be specified. + + + The protocol '{0}' is not supported. + + + The item's last updated time was not serialized as part of serializing the feed in RSS 2.0 format. + + + Error in deserializing body of reply message for operation '{0}'. + + + Unexpected response - the server accepted the upgrade request but specified the subprotocol '{0}' when no subprotocol was requested. + + + The item's content was not serialized as part of serializing the feed in RSS 2.0 format. + + + The set of actions cannot be empty. + + + The type {1} defines a MessageContract but also derives from a type {0} that does not define a MessageContract. All of the objects in the inheritance hierarchy of {1} must defines a MessageContract. + + + Cannot open ChannelDispatcher because it is does not have a MessageVersion set. + + + This value cannot be changed after the first ClientBase of type '{0}' has been created. + + + The item's copyrights were not serialized as part of serializing the feed in RSS 2.0 format. + + + The specified offset exceeds the buffer size ({0} bytes). + + + The system hit an internal throttle limit. Limit for this throttle was set to {0}. This throttle cannot be configured. + + + An exception occurred while closing the connections in this connection pool. + + + Unknown token attachment mode: {0}. + + + ServiceKnownTypeAttribute in {0} refers to a method {1} that does not exist in type {2} + + + This service has multiple endpoints listening at '{0}' which share the same initiating action '{1}'. As a result, messages with this action would be dropped since the dispatcher would not be able to determine the correct endpoint for handling the message. Please consider hosting these Endpoints at separate ListenUris. + + + The client token at least needs to have the SecurityImpersonationLevel of at least Impersonation for Out of process Webhost activations. + + + The request message has From='{0}' but IContextChannel.LocalAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress. Enable ManualAddressing or avoid setting From on the message. + + + The RM destination received a TerminateSequenceResponse message. The RM destination does not process TerminateSequenceResponse messages. + + + Syndication element with name '{0}' and namespace '{1}' was not written. + + + element '{0}' from namespace '{1}' + + + The input {0} must be a '{1}' object. + + + The '{0}' required message part was not encrypted. + + + An error occurred while loading attribute '{0}'. Please see InnerException for more details. + + + The MSDTC transaction manager has disabled incoming transactions. + + + The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified. + + + The UriTemplate '{0}' is not valid; the wildcard ('{1}') cannot appear in a variable name or literal, unless as a construct for a wildcard segment. Note that a wildcard segment, either a literal or a variable, is valid only as the last path segment in the template; the wildcard can appear only once. See the documentation for UriTemplate for more details. + + + The UriTemplate '{0}' is not valid; the query variable '{1}' has been provided a default value as part of the additional defaults. Note that UriTemplate doesn't support default values to query variables. See the documentation for UriTemplate for more details. + + + \"XPath Unavailable\" + + + Enumeration has either not started or has already finished. + + + The security protocol verified the incoming message. + + + Create ServiceHost. + + + Client's outgoing SSPI negotiation. + + + AppId: {0}\nClsId: {1}\n + + + The security capabilities of binding '{0}' do not match those of the generated runtime object. Most likely this means the binding contains a StreamSecurityBindingElement, but lacks a TransportBindingElement that supports Stream Security (such as TCP or Named Pipes). Either remove the unused StreamSecurityBindingElement or use a transport that supports this element. + + + The contract name 'IMetadataExchange' could not be found in the list of contracts implemented by the service {0}. Add a ServiceMetadataBehavior to the configuration file or to the ServiceHost directly to enable support for this contract. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a synchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must define the same number and types of parameters. In this case, some of the arguments are different. To fix it, ensure that the OperationContracts define the same number and types of arguments, in the same order. Alternatively, changing the name of one of the methods will prevent matching. + + + UTCSR - Lookup was called before match + + + A WebSocket error occurred. + + + A message was closed again + + + Application {0} has recycling enabled. Recycling of applications is not supported under COM+ hosting. + + + Type {0} cannot inherit from any class other than object to be used as body object in RPC style. + + + The HTTP request to '{0}' was aborted. This may be due to the local channel being closed while the request was still in progress. If this behavior is not desired, then update your code so that it does not close the channel while request operations are still in progress. + + + The {0} binding element requires envelope version '{1}' It doesn't support '{2}'. + + + The Sequence is closed and cannot accept new messages. + + + The type {0} registered as a policy extension does not implement IPolicyImportExtension + + + The 'parameters' argument must be an array that contains a single Message object. + + + A base address cannot contain a Uri user info section. + + + Close ServiceHost '{0}'. + + + A failure occured while performing a security related operation. + + + Unable to create token reference. + + + Transferring to ComPlus logical thread {0}. + + + The RM source received a TerminateSequence message. The RM source does not process TerminateSequence messages. + + + The RequestSecurityToken must specify a CloseTarget. + + + The necessary size to buffer a sequence message has exceeded the configured buffer quota. Because of this the reliable session cannot continue. + + + WS-RM Sequence message received. + + + The remote SSL client failed to provide a required certificate. + + + The Request/Reply operation {0} has no Reply Message. + + + The received message does not meet the required message protection order '{0}'. + + + The specified offset exceeds the upper bound of the buffer ({0}). + + + The encryption method is missing in encrypted data. + + + The InstanceContext provided to the ChannelFactory contains a UserObject that does not implement the CallbackContractType '{0}'. + + + The RM source received an AckRequested message. The RM source does not process AckRequested messages. + + + Object type must be an enum with the flag attribute and may only contain powers of two for the flags enum values or a combination of such values. Please use an enum type according to these rules. + + + Can't infer an external reference for '{0}' token type. + + + This value cannot be changed after the ChannelFactory has opened. + + + The token provider '{0}' was unable to provide a security token. + + + The IssuedToken security authentication mode requires the issued token to contain a symmetric key. + + + The Identity check failed for the incoming message. The remote endpoint did not provide a domain name system (DNS) claim and therefore did not satisfied DNS identity '{0}'. This may be caused by lack of DNS or CN name in the remote endpoint X.509 certificate's distinguished name. + + + The endpoint's address is not specified. + + + {0} must be a relative URI or an absolute URI with scheme '{1}'. '{2}' is an absolute URI with scheme '{3}'. + + + The request message has ReplyTo='{0}' but IContextChannel.LocalAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress. Enable ManualAddressing or avoid setting ReplyTo on the message. + + + HTTP query string parameter with name '{0}' was ignored. + + + In order to flow a transaction, flowing issued tokens must also be supported. + + + The transaction under which this method call was executing was asynchronously aborted. + + + A previous call to this WsdlExporter left it in a faulted state. It is no longer usable. + + + The given URI must be absolute. + + + The custom crypto algorithm '{0}' obtained using CryptoConfig is not a valid or supported asymmetric signature algorithm. + + + Error while reading message framing format at position {0} of stream (state: {1}) + + + The feed being deserialized has non-contiguous sets of items in it. This is not supported by '{0}'. + + + Server security session sent Close to client. + + + An attempt was made to decode a value after the framing stream was ended. + + + Prepared message for sending over a channel + + + A reply message cannot be created because the request message does not have a MessageID. + + + The UriTemplate contains a literal value for query key '{0}', but that key also is present in the NameValueCollection. Either remove that key from the NameValueCollection, or else change the UriTemplate to not have a query literal for that key. + + + The IssuedSecurityTokenProvider cannot support the FederatedClientCredentialsParameters. The FederatedClientCredentialsParameters has already provided the '{0}' parameter. + + + Repeated moniker keyword. + + + Faulted {0} + + + The UriTemplate '{0}' is not valid; each portion of the query string must be of the form 'name' or of the form 'name=value'. See the documentation for UriTemplate for more details. + + + No value found for a keyword. + + + The transaction '{0}' for operation '{1}' was completed due to a call to SetTransactionComplete. + + + The {0}.{1} operation references a message element [{2}] that has already been exported from the {3}.{4} operation. You can change the name of one of the operations by changing the method name or using the Name property of OperationContractAttribute. Alternatively, you can control the element name in greater detail using the MessageContract programming model. + + + The message containing this stream has been closed. + + + The KeyInfo clause is missing or empty in EncryptedKey. + + + The Session value '{0}' is invalid. Please specify 'CurrentSession','ServiceSession' or a valid non-negative Windows Session Id. + + + the version is not supported by the service + + + NodeQuota must be greater than 0. + + + The type of IMessageFilterTable created for a particular Filter type must always be the same. + + + TimeSpan cannot be less than TimeSpan.Zero. + + + Badly terminated value {0}. + + + The length of the symmetric key specified is too short ({0} bytes). + + + MemoryStream's internal buffer cannot be accessed. + + + The '{0}'.'{1}' binding for the '{2}'.'{3}' contract is configured with an authentication mode that requires transport level integrity and confidentiality. However the transport cannot provide integrity and confidentiality. + + + In operation {0}, more than one fault is declared with element name {1} in namespace {2} + + + Reply sent for InstanceId {0}. + + + The 'result' argument must be of type Message. + + + CLSID of type {0} does not match the CLSID on PersistStreamTypeWrapper which is {1}. + + + Security negotiation failed because the remote party did not send back a reply in a timely manner. This may be because the underlying transport connection was aborted. + + + This Factory buffers messages, so the message sizes must be in the range of a int value. + + + A TCP error ({0}: {1}) occurred while listening on IP Endpoint={2}. + + + In operation {0}, the schema type corresponding to the fault detail type {1} is anonymous. Please set Fault name explicitly to export anonymous types. + + + System error. + + + Duplicate top level XML Schema type with name {0} in namespace {1}. + + + Cannot change BaseAddress after calling MakeReadOnly. + + + The NTLM authentication scheme was specified, but the target credential does not allow NTLM. + + + Endpoint listener closed. + + + Binding namespace not specified. + + + The SecurityContextSecurityToken does not have a context-id. + + + Cannot authenticate the other party. + + + CommunicationObject faulted due to exception. + + + Service '{0}' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element. + + + Multiple RelatesTo headers with relationship '{0}' found. Only one is allowed per relationship. + + + The operation cannot be performed after the communications channel has been created. + + + Failed to send request message over HTTP + + + The '{0}' addressing mode is not supported. + + + The WSDL binding named {0} is not valid because no match for operation {1} was found in the corresponding portType definition. + + + The IMessageProperty could not be copied. CreateCopy returned null. + + + The DispatchOperation '{0}' requires Formatter, since DeserializeRequest and SerializeReply are not both false. + + + Extension type not found. + + + The '{0}' security token with the '{1}' attachment mode must be signed. + + + The certificate for the client has not been provided. The certificate can be set on the ClientCredentials or ServiceCredentials. + + + The '{0}' user-defined type could not be found. Ensure that the correct type and type library are registered and specified. + + + The value for wsrm:MessageNumber exceeds the value of the MessageNumber accompanying a LastMessage element in this Sequence. + + + Cannot detect WS-Addressing version. EndpointReference does not start with an Element. + + + The protection level '{0}' was specified, yet SSL transport security only supports EncryptAndSign. + + + This ChannelDispatcher is not currently attached to the provided ServiceHost. + + + Cannot dequeue a '{0}' object while in the Created state. + + + ChannelFactory does not support the contract {0} as it defines a callback contract with one or more operations. Please consider using DuplexChannelFactory instead of ChannelFactory. + + + The certificate '{0}' must have a private key. The process must have access rights for the private key. + + + The signing token {0} has no key that supports the algorithm suite {1}. + + + Element to sign must have id. + + + It is likely that certificate '{0}' may not have a private key that is capable of key exchange or the process may not have access rights for the private key. Please see inner exception for detail. + + + The extension collection does not exist. + + + Reading of a syndication item started. + + + The name of the policy being imported for contract '{0}:{1}' is invalid:'{2}'. It should be either '{3}', '{4}' or '{5}'. + + + Manual addressing is enabled on this factory, so all messages sent must be pre-addressed. + + + Receive request timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + Opened {0} + + + Unexpected internal enum value: {0}. + + + Application {0} is marked Pooled. Pooled applications are not supported under COM+ hosting. + + + The provided URI scheme '{0}' is invalid; expected '{1}'. + + + WorkflowServiceHost created. + + + KeySize element not present in RequestSecurityTokenResponse. + + + Method '{0}' in class '{1}' has bad parameter metadata: a pass-by-reference parameter is marked with the 'in' but not the 'out' parameter mode. + + + InstanceContext for InstanceId {0} removed from cache. + + + Writing audit messages to the Security log is not supported by the current platform. You must write audit messages to the Application log. + + + The incoming transaction cannot be unmarshaled because the source MSDTC transaction manager has either disabled outbound transactions or disabled its WS-AtomicTransaction protocol service. + + + Reading of a syndication feed started. + + + Channel requirements cannot be met by the ChannelFactory for Binding '{0}' since the contract requires support for one of these channel types '{1}' but the binding doesn't support any of them. + + + The feed's authors were not serialized as part of serializing the feed in RSS 2.0 format. + + + Contract requires Session, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + Element '{0}' with namespace '{1}' not found. + + + \"{0}\" is not a supported WS-Policy document root element. + + + The listener is not accepting new secure conversations because it is closing. + + + Contract requires Request/Reply, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + The client cannot provide key entropy in key entropy mode '{0}'. + + + The callback address already has a context header in it. + + + Cannot find the security session with the ID '{0}'. + + + Start element expected. Found {0}. + + + Envelope Version '{0}' does not support adding Message Headers. + + + The message property '{0}' is missing in the HttpRequestMessage. Please make sure this property not removed or changed from the properties of the HttpRequestMessage. If you are creating a new HttpRequestMessage, please copy this property from the old message to the new one. + + + Multiple link-local only interfaces detected. Please specifiy the interface you require by using the ListenIpAddress attribute in the PeerTransportBindingElement + + + Generating message contract since message {0} has headers + + + The value of OperationContext.Current is not the OperationContext value installed by this OperationContextScope. + + + ServiceChannel information. + + + SecurityContextProperty is missing from the request Message, this may indicate security is configured incorrectly. + + + XmlSerializer attribute {0} is not valid in {1}. Only XmlElement, XmlArray, XmlArrayItem, XmlAnyAttribute and XmlAnyElement attributes are supported when IsWrapped is true. + + + The security session key was updated by the server. + + + The cipher key negotiated by SSL is too small ('{0}' bits). Keys of such lengths are not allowed as they may result in information disclosure. Please configure the initiator machine to negotiate SSL cipher keys that are '{1}' bits or longer. + + + WebSocket upgrade request failed. Received response status code '{0} ({1})', expected: '{2} ({3})'. + + + Renew Secure Session. + + + The use of '{0}' on the task-based asynchronous method is not supported. + + + {0} is only available in a deserialized RequestSecurityToken. + + + An IPv6 address was specified ({0}), but IPv6 is not enabled on this machine. + + + Set up Secure Session. + + + User operation '{0}.{1}' threw an exception that is unhandled in user code. This exception will be rethrown. If this is a recurring problem, it may indicate an error in the implementation of the '{0}.{1}' method. + + + Execute Async: Begin: '{0}.{1}'; End: '{2}.{3}'. + + + Insufficient memory avaliable to complete the operation. + + + Unexpected WebSocket close message received when receiving a message. + + + Unable to start the HTTP listener. The URI provided, '{0}', is invalid for listening. Check the base address of your service and verify that it is a valid URI. + + + The MessagePropagationFilter threw an exception. Please refer to InnerException. + + + The UriTemplate '{0}' is not valid; each portion of the query string must be of the form 'name' or of the form 'name=value', where each name is unique. Note that the names are case-insensitive. See the documentation for UriTemplate for more details. + + + The Dispatch ID '{0}' could not be found or is invalid. + + + Close Security Session. + + + The underlying channel factory could not be created because no binding information was found in the configuration file for endpoint with name '{0}'. Please check the endpoint configuration section with name '{0}' to ensure that binding information is present and correct. + + + The PSHA1 key length '{0}' is invalid. + + + The signature verification failed. Please see inner exception for fault details. + + + Security policy export failed. The binding contains a TransportSecurityBindingElement but no transport binding element that implements ITransportTokenAssertionProvider. Policy export for such a binding is not supported. Make sure the transport binding element in the binding implements the ITransportTokenAssertionProvider interface. + + + All parts of message in operation {0} must either contain type or element. + + + No DNS entries exist for host {0}. + + + The security token manager cannot create a token serializer for security token version '{0}'. + + + The WebSocket returned by the factory of type '{0}' has the SubProtocol '{1}' that doesn't match the requested SubProtocol value '{2}'. + + + Get default configured binding. + + + The binding specified to do metadata exchange does not contain a TransportBindingElement. + + + The remote endpoint sent an unexpected ack. Simplex servers do not process acks. + + + Unable to find a SecurityBindingElement. + + + TokenProvider returned token of incorrect type '{0}'. + + + Security session protocol factory must be set before this operation is performed. + + + Type {0} implements interface {1} which is not supported for body object in RPC style. + + + The specified channel listener at '{0}' is not registered with this transport manager. + + + The remote endpoint sent an unexpected terminate sequence message. Simplex clients do not process this message. + + + The binding ('{0}', '{1}') uses an Issued Token with Bearer Key Type in a invalid context. The Issued Token with a Bearer Key Type can only be used as a Signed Supporting token or a Signed Encrypted Supporting token. See the SecurityBindingElement.EndpointSupportingTokenParameters property. + + + ClientCredentials cannot create a local token provider for token requirement {0}. + + + The CallbackContract {0} is invalid because it is not an interface type. + + + The transaction '{0}' for operation '{1}' was completed due to asynchronous abort. + + + HTTP could not register URL {0}. Another application has already registered this URL with HTTP.SYS. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the task-based asynchronous OperationContract method '{2}' because they have the same operation name '{3}'. When a synchronous OperationContract method is matched to a task-based asynchronous OperationContract method, the two OperationContracts must have the same value for the '{4}' property. In this case, the values are different. To fix it, change the '{4} property of one of the OperationContracts to match the other. Alternatively, changing the name of one of the methods will prevent matching. + + + The RM source received an CloseSequence message. The RM source does not process CloseSequence messages. + + + Contract requires Duplex, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + comment '{0}' + + + The server didn't accept the connection request. It is possible that the WebSocket subprotocol sent by your client is not supported by the server. Protocol(s) supported by the server are '{0}'. + + + The service's security session did not receive a 'close' message from the client within the configured timeout ({0}). + + + Unable to log messages. Application may be running in partial trust. Either disable message logging or configure the application to run in full trust. + + + Security Impersonation succeeded at the server. + + + Cannot create an ICrypto interface from the '{0}' token for signature verification. + + + Positioned after last element. + + + The '{0}' authentication scheme has been specified on the HTTP factory. However, the factory only supports specification of exactly one authentication scheme. Valid authentication schemes are Digest, Negotiate, NTLM, Basic, or Anonymous. + + + Understood message header. + + + Authorize + + + This EndpointDispatcher is not currently attached to the provided ChannelDispatcher. + + + Key length '{0}' is not a multiple of 8 for symmetric keys. + + + SymmetricSecurityBindingElement cannot build a channel or listener factory. The ProtectionTokenParameters property is required but not set. Binding element configuration: {0} + + + node {0} + + + The message contains a callback context message property. Callback context can be transmitted only when the ContextBindingElement is configured with ContextExchangeMechanism of ContextSoapHeader. + + + Extensions for operation {0} in binding {1} cannot specify different use values. + + + An object that is not an exception was thrown. + + + Registration with zero addresses detected. Please call Register with more than zero addresses. + + + The {0}Response was received when the {0} request had not been sent. This is a WS-ReliableMessaging protocol violation. The reliable session cannot continue. + + + The required UserNameSecurityToken was not provided. + + + Throttle limit must be greater than zero. To disable, set to Int32.MaxValue. + + + WorkflowDurableInstance '{0}' loaded. + + + {0} Service + + + Security Support Provider Interface (SSPI) authentication failed. The server may not be running in an account with identity '{0}'. If the server is running in a service account (Network Service for example), specify the account's ServicePrincipalName as the identity in the EndpointAddress for the server. If the server is running in a user account, specify the account's UserPrincipalName as the identity in the EndpointAddress for the server. + + + An invalid template '{0}' was passed as the key in a pair of template and its associated object. UriTemplateTable Key-Value pairs must always contain a valid UriTemplate object as key; note that UriTemplateTable doesn't support templates that are ignoring the trailing slash in respect to matching. See the documentation for UriTemplateTable for more details. + + + Channel context management cannot be enabled or disabled after the channel is opened. + + + The text encoding '{0}' used in the text message format is not supported. + + + The inactivity timeout of ({0}) has been exceeded. + + + The data reference '{0}' could not be resolved in the received message. + + + The security standards manager was not specified on '{0}'. + + + Address not specified. + + + HTTP could not register URL {0}. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details). + + + The request channel timed out while waiting for a reply after {0}. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. + + + The public key is not an RSA key. + + + Missing required '{0}' attribute. + + + Internal Error: The instance of the MessageContract cannot be null in {0}. + + + HTTP pipeline operation cancelled. + + + The StreamUpgradeAcceptor specified ({0}) is not supported by this IStreamUpgradeChannelBindingProvider implementation. The most likely cause of this is passing a StreamUpgradeAcceptor that was not created by the StreamUpgradeProvider associated with this IStreamUpgradeChannelBindingProvider implementation. + + + The message could not be dispatched to the service at address '{0}'. Refer to the server Event Log for more details + + + The URL supplied to ServiceMetadataBehavior via the ExternalMetadataLocation property or the externalMetadataLocation attribute in the serviceMetadata section in config was a relative URL and there is no base address with which to resolve it. '{0}' was specified. + + + The .Net Framing version being used is not supported by '{0}'. See the server logs for more details. + + + The security token manager cannot create a token authenticator for requirement '{0}'. + + + This '{0}' object cannot be used to generate configuration because it was created with the constructor that takes a '{1}' as the paramter. This functionality is not supported through configuration files. Please use a different constructor if you wish to generate a configuration file. + + + TimeoutStream requires an inner Stream that supports timeouts; its CanTimeout property must be true. + + + Unrecognized message version. + + + Symmetric Key length {0} is not supported by the algorithm suite '{1}'. + + + Duplex channel to {0} was aborted during the open process. + + + Message security policy for the '{0}' action requires confidentiality without integrity. Confidentiality without integrity is not supported. + + + TransactedBatchingBehavior validation failed. The service endpoint cannot be started. TransactedBatchingBehavior requires a binding that contains a binding element ITransactedBindingElement that returns true for ITransactedBindingElement.TransactedReceiveEnabled. If you are using NetMsmqBinding or MsmqIntegrationBinding make sure that ExactlyOnce is set to true. + + + (Default) + + + '{0}' protocol can only be used by the Initiator. + + + The client security session operation failed. + + + The communication object, {0}, cannot be used for communication because it is in the Faulted state. + + + The endpoint configuration section for contract '{0}' with name '{1}' could not be loaded because more than one endpoint configuration with the same name and contract were found. Please check your config and try again. + + + This CreateChannel overload cannot be called on this instance of DuplexChannelFactory, as the DuplexChannelFactory was not initialized with an InstanceContext. Please call the CreateChannel overload that takes an InstanceContext. + + + A security session renew response was received with an invalid action '{0}'. + + + Timeout must be greater than or equal to TimeSpan.Zero. To disable timeout, specify TimeSpan.MaxValue. + + + A policy reference was ignored because the URI of the reference was empty. + + + Open ServiceHost '{0}'. + + + This channel can no longer be used to send messages as the output session was auto-closed due to a server-initiated shutdown. Either disable auto-close by setting the DispatchRuntime.AutomaticInputSessionShutdown to false, or consider modifying the shutdown protocol with the remote server. + + + Request Message is missing a MessageID header. One is required to correlate a reply. + + + <P class='intro'><B>Visual Basic</B></P> + + + <P class='intro'><B>C#</B></P> + + + Style {1} inferred from messages in operation {0} does not match expected style {2} specified via bindings. + + + The protocol factory cannot create a protocol. + + + Access is denied. + + + An endpoint for type '{0}' could not be added because the ServiceHost instance was not initialized properly. In order to add endpoints by Type, the CreateDescription method must be called. If you are using a class derived from ServiceHost, ensure that the class is properly calling base.CreateDescription. + + + WebSocket creation failed. The '{0}' returned a WebSocket that is either null or not opened. + + + No conversion possible to {0}. + + + The service class of type {0} both defines a ServiceContract and inherits a ServiceContract from type {1}. Contract inheritance can only be used among interface types. If a class is marked with ServiceContractAttribute, it must be the only type in the hierarchy with ServiceContractAttribute. Consider moving the ServiceContractAttribute on type {1} to a separate interface that type {1} implements. + + + The operation '{1}' on contract '{0}' is configured with TransactionAutoComplete set to false and the InstanceContextMode is not set to PerSession. TransactionAutoComplete set to false requires the use of InstanceContextMode.PerSession. + + + Failure sending security session Close to client. + + + Cannot start impersonation because the SecurityContext for the UltimateReceiver role from the request message with the '{0}' action is not mapped to a Windows identity. + + + Server security session received Close response message from client. + + + Client certificate is required. No certificate was found in the request. This might be because the client certificate could not be successfully validated by the operating system or IIS. For information on how to bypass those validations and use a custom X509CertificateValidator in WCF please see http://go.microsoft.com/fwlink/?LinkId=208540. + + + Wrapper type for message {0} cannot be projected as a data contract type since it has multiple namespaces. Consider using the XmlSerializer + + + The security channel listener was not specified on '{0}'. + + + Invalid TransactionFlowOption value. + + + This InstanceContext requires a valid Message to obtain the instance. + + + Send cannot be called when the session does not expect output. + + + The SecurityTokenParameters and SecurityToken tuple specified for use in the security header must both be null or must both be non-null. + + + Binding '{0}' is not configured properly. OneWayBindingElement requires an inner binding element that supports IRequestChannel/IReplyChannel or IDuplexSessionChannel. + + + Executing user callback. + + + An empty value was found for the required base-64 attribute name '{0}', namespace '{1}'. + + + Writing of a syndication feed started. + + + Only body return values are supported currently for protection, MessagePartDescription was specified. + + + A new ContextChannel was accepted. + + + The policy expression was not fully imported because it exceeded the maximum allowable complexity. The import stopped at element '{0}' '{1}'. + + + OperationBehaviorAttribute can only go on the service class, it cannot be put on the ServiceContract interface. Method '{0}' on type '{1}' violates this. + + + A response message was received, but there are no outstanding requests waiting for this message. The message is being dropped. + + + A message was received with a WS-Addressing ReplyTo or FaultTo header targeted at the \"None\" address. These values are not valid for request-reply operations. Please consider using a one-way operation or enabling ManualAddressing if you need to support ReplyTo or FaultTo values of \"None.\" + + + Internal Error: The InnerChannel property is null. + + + The contracts argument to the Resolve or BeginResolve methods cannot contain a null ContractDescription. + + + A Windows hotfix or later service pack is required on Windows XP and Windows Server 2003 to use WS-AtomicTransaction and COM+ Integration Web service transaction functionality. See the Microsoft .NET Framework release notes for instructions on installing the required hotfix. + + + The value of MaxPendingAccepts should not be larger than {0}. + + + The transaction '{0}' for operation '{1}' remains attached to the InstanceContext. + + + There was a mismatch between the number of supplied arguments and the number of expected arguments. Specifically, the argument '{0}' has '{1}' elements while the argument '{2}' has '{3}' elements. + + + The UriTemplate '{0}' is not valid; the UriTemplate final star variable '{1}' has been provides a default value as part of the additional defaults information. Note that UriTemplate doesn't support default values to final star variable. See the documentation for UriTemplate for more details. + + + UriTemplate '{0}' contains no variables; yet the BindByPosition method was called with {1} values. + + + HTTP could not register URL {0} because TCP port {1} is being used by another application. + + + The transaction '{0}' was asynchronously aborted. + + + No AppliesTo element is present in the deserialized RequestSecurityToken/RequestSecurityTokenResponse. + + + Client is unable to request the security session within the configured timeout ({0}). + + + A failure occurred when sending a renewal fault on the security session key to the client. + + + failed to start the service because it is disabled. An administrator can enable it by running 'sc.exe config {0} start= demand'. + + + Cannot import {0}\r\nDetail: {2}\r\nXPath to Error Source: {1} + + + Cannot renew the security session key. + + + Mex address not specified. + + + The operations {0} and {1} have the same action ({2}). Every operation must have a unique action value. + + + The IAsyncResult returned from Begin and the IAsyncResult supplied to the Callback are on different objects. These are required to be the same object. + + + The fault does not have detail information. + + + Cannot create security binding element based on the configuration data. When secure conversation authentication mode is selected, the secure conversation bootstrap binding element must also be specified. + + + The supplied token manager cannot create a token reference. + + + The token identifier element in the registration header is invalid. + + + When calling the CreateFromPolicy method, the policy argument must be an XmlElement instance with LocalName '{1}' and NamespaceUri '{0}'. This XmlElement has LocalName '{3}' and NamespaceUri '{2}'. + + + An async callback threw an exception! + + + The SOAP action specified on the message, '{0}', does not match the HTTP SOAP Action, '{1}'. + + + The binding specified requires that the to and via URIs must match because the Addressing Version is set to None. The to URI specified was '{0}'. The via URI specified was '{1}'. + + + The UriTemplate '{0}' is not valid; each portion of the query string must be of the form 'name=value', when value cannot be a compound segment. See the documentation for UriTemplate for more details. + + + This message cannot support the operation because it has been written. + + + The SetTransactionComplete method was wrongly called more than once in the operation '{0}' on contract '{1}'. The SetTransactionComplete method can only be called once. This is an invalid scenario and the current transaction was aborted. + + + The issued token has an invalid key size '{0}'. + + + Cannot call '{0}' on a non-atomized navigator. + + + Reading of a categories document completed. + + + This platform does not support server side WebSockets. + + + The remote endpoint responded to the {0} request with a response with action {1}. The response must be a {0}Response with action {2}. The channel was faulted. + + + The message is not encrypted with a key derived from the encrypted key. The binding's token parameter '{0}' requires key derivation. + + + Switched threads while processing a message for Contract '{0}' at Address '{1}'. UseSynchronizationContext property on ServiceBehaviorAttribute is set to true, and SynchronizationContext.Current was non-null when opening ServiceHost. If your service seems to be not processing messages, consider setting UseSynchronizationContext to false. + + + Service implementation object invoked with wrong number of input parameters, operation expects {0} parameters but was called with {1} parameters. + + + Cannot handle invocation of {0} on interface {1} because the OperationSelector on ClientRuntime is null. + + + Writing of a syndication item completed. + + + Opening {0} + + + The request message has From='{0}' but IContextChannel.RemoteAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress because sending a reply to a different address than the original sender can create a security risk. If you want to process such messages, enable ManualAddressing. + + + The service '{0}' is configured with ReleaseServiceInstanceOnTransactionComplete but no operations are configured with TransactionScopeRequired set to true. The ReleaseServiceInstanceOnTransactionComplete property requires at least one operation with TransactionScopeRequired set to true. Remove the ReleaseServiceInstanceOnTransactionComplete property from the service if this is the case. + + + The service '{0}' is configured with a TransactionTimeout but no operations are configured with TransactionScopeRequired set to true. TransactionTimeout requires at least one operation with TransactionScopeRequired set to true. + + + Maximum number of pending WebSocket connections ({0}) has been reached. Consider increasing the '{1}' quota on the '{2}' property of the transport. + + + {0} is not available in deserialized RequestSecurityTokenResponse. + + + Service's outgoing SSPI negotiation. + + + No signature is available in the security header to provide the nonce for replay detection. + + + The creator of this fault did not specify a Reason. + + + The service does not support concurrent transactions. + + + {0}. This often indicates that the HTTP client has prematurely closed the underlying TCP connection. + + + The position is not valid for this navigator. + + + WS-RM Sequence message sent. + + + failed to look up the service process in the SCM ({0}) + + + An error occurred when creating the WebSocket with the factory of type '{0}'. See the inner exception for details. + + + Sending to via {0} timed out after {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + Cannot read the Identity element. The Identity type is not supported or the Identity element is empty. + + + Directory {0} not found. + + + Header properties cannot be set in MessageHeaderAttribute of {0} as its type is MessageHeader<T>. + + + Initiating TCP connection. + + + SqlPersistenceProvider.Open() parameters. + + + The shared memory for the endpoint of the service '{0}' does not exist. The service may not be started. + + + The contract specified by type '{0}' is ambiguous. The type derives from at least two different types that each define its own service contract. For this type to be used as a contract type, exactly one of its inherited contracts must be more derived than any of the others. + + + Unexpected threading model. WCF/COM+ integration only supports STA and MTA threading models. + + + Extended protection is not supported on this platform. Please install the appropriate patch or change the ExtendedProtectionPolicy on the Binding or BindingElement to a value with a PolicyEnforcement value of \"Never\" or \"WhenSupported\". + + + The operating system's timer resolution was detected as {0} ticks, which is about {1} milliseconds. + + + The message is not encrypted with a key derived from the encryption token. The binding's token parameter '{0}' requires key derivation. + + + Error in deserializing body of request message for operation '{0}'. {1} + + + Unsupported WSDL, the fault message part must reference an element. This fault message does not reference an element. If you have edit access to the WSDL document, you can fix the problem by referencing a schema element using the 'element' attribute. + + + A connection has exceeded the connection lease timeout of this connection pool ({0}) and been closed. + + + Generating message contract since message {0} requires protection. + + + The WS-AT messaging library failed to initialize. + + + Array of type {0} is not supported. + + + An error was encountered when parsing the document's XML. Refer to the inner exception for more details. + + + Stream returned by OperationStreamProvider cannot be null. + + + Binding '{0}' lacks a TransportBindingElement. Every binding must have a binding element that derives from TransportBindingElement. This binding element must appear last in the BindingElementCollection. + + + The security negotiation with '{0}' cannot be initiated because the confidential endpoint address header ('{1}', '{2}') cannot be encrypted during the course of the negotiation. + + + The protocol binding '{0}' does not conform to the syntax for '{1}'. The following is an example of valid '{1}' protocol bindings: '{2}'. + + + Close ChannelFactory. Contract type: '{0}'. + + + A Channel/Service endpoint's Contract is null. + + + The service endpoint failed to listen on the URI '{0}' because access was denied. Verify that the current user is granted access in the appropriate allowAccounts section of SMSvcHost.exe.config. + + + Opening the {0} channel timed out after {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + Opening the channel timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + CreateFactory requires that the Endpoint property be initialized. Either provide a valid ServiceEndpoint in the CreateDescription method or override the CreateFactory method to provide an alternative implementation. + + + HTTP could not register URL {0} because the MaxEndpoints quota has been exceeded. To correct this, either close other HTTP-based services, or increase your MaxEndpoints registry key setting (see http://go.microsoft.com/fwlink/?LinkId=70352 for details). + + + The required WSDL extension element '{0}' from namespace '{1}' was not handled. + + + A property with the name '{0}' is not present. + + + The timeout value provided was not of a recognized format. Please see InnerException for more details. + + + UriTemplate does not support '{0}' as a valid format for a segment or a query part. + + + '{0}' protocol can only be used at the Recipient. + + + The supporting token provided for parameters '{0}' was not encrypted. + + + The Request/Reply operation {0} has no IRequestContext to use for the reply. + + + Security Token Authenticator was closed. + + + Framing major version {0} is not supported. + + + There was no channel that could accept the message with action '{0}'. + + + WS-RM Last Sequence message sent. + + + More data was expected, but EOF was reached. + + + Closed {0} + + + Client certificate is invalid. + + + Authentication failed. + + + Failed to set an activity id header on an outgoing message + + + The configured SecureConversation version does not support sessions. Use WSSecureConversationFeb2005 or above. + + + Writing of a syndication item started. + + + The {0}:{1} assertion is not supported. + + + The client must provide key entropy in key entropy mode '{0}'. + + + This service only supports WebSocket connections. + + + The requested resource is available. + + + Interface Not Registered + + + The signature must be in the security header. + + + The Send operation timed out after '{0}'. Increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. + + + A Proof Token was found in the response that was returned by the Security Token Service for a Bearer Key Type token request. Note that Proof Tokens should not be generated when a Bearer Key Type request is made. + + + For response in operation {0} to be a stream the operation must have a single out parameter or return value whose type is Stream. + + + A leg of the federated security chain contains multiple IssuedSecurityTokenParameters. The InfoCard system only supports one IssuedSecurityTokenParameters for each leg. + + + The listener at Uri '{0}' could not be initialized because it was created for an unrecognized channel type. + + + The receiver sent back a security session fault message. Retry the request. + + + The one-way operation '{1}' on ServiceContract '{0}' is configured for transaction flow. Transactions cannot be flowed over one-way operations. + + + KeyInfo clause '{0}' resolved to token '{1}', which does not contain a Symmetric key that can be used for derivation. + + + Receive timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + A new security session key was issued by the server. + + + Writing of a categories document started. + + + More than one MessageEncodingBindingElement was found in the BindingParameters of the BindingContext. This usually is caused by having multiple MessageEncodingBindingElements in a CustomBinding. Remove all but one of these elements. + + + A non-critical error or warning occurred during WSDL Export + + + Manual addressing is not supported with message level security. Configure the binding ('{0}', '{1}') to use transport security or to not do manual addressing. + + + Replying to an operation threw a exception. + + + RPC Message {1} in operation {0} has an invalid body name {2}. It must be {3} + + + Expected binary secret of type {0} but got secret of type {1}. + + + Service implementation object invoked with null input parameters, but operation expects {0} parameters. + + + The client's security session did not receive a 'close response' message from the service within the configured timeout ({0}). + + + The session security token provider returned a token of type '{0}'. The token type expected is '{1}'. + + + Close ClientBase. Contract type: '{0}'. + + + An attempt was made to add more than one transaction to a message. At most one transaction can be added. + + + Method {0} is not supported on this proxy, this can happen if the method is not marked with OperationContractAttribute or if the interface type is not marked with ServiceContractAttribute. + + + SecurityAuditBehavior is not supported on the channel factory. + + + Header name cannot be null or empty. + + + TransactedBatchingBehavior validation failed. Service cannot be started. Transacted batching requires ServiceBehavior.ReleaseServiceInstanceOnTransactionComplete to be false. + + + XPathNavigator positions cannot be compared. + + + The authentication schemes configured on the host ('{0}') do not allow those configured on the binding '{1}' ('{2}'). Please ensure that the SecurityMode is set to Transport or TransportCredentialOnly. Additionally, this may be resolved by changing the authentication schemes for this application through the IIS management tool, through the ServiceHost.Authentication.AuthenticationSchemes property, in the application configuration file at the <serviceAuthenticationManager> element, by updating the ClientCredentialType property on the binding, or by adjusting the AuthenticationScheme property on the HttpTransportBindingElement. + + + The security protocol '{0}' cannot do replay detection. + + + Bad Interface Registration + + + The service's security session was not able to close its output session within the configured timeout ({0}). + + + The envelope version of the incoming message ({0}) does not match that of the encoder ({1}). Make sure the binding is configured with the same version as the expected messages. + + + The cNamedArgs parameter is not supported and must be 0. + + + The server certificate with name '{0}' failed identity verification because its thumbprint ('{1}') does not match the one specified in the endpoint identity ('{2}'). As a result, the current HTTPS request has failed. Please update the endpoint identity used on the client or the certificate used by the server. + + + Reached the limit of messages to log. Message logging is stopping. + + + DerivedKeyToken requires a reference to a token. + + + failed to start the service ({0}). Refer to the Event Log for more details + + + The value for the Service attribute was not provided in the ServiceHost directive. + + + An error occured when getting the WebSocketVersion from the WebSocket factory of type '{0}'. See the inner exception for details. + + + Writing of a syndication item started. + + + An internal error has occurred. Unexpected error modifying filter table. + + + The HttpsGetEnabled property of ServiceMetadataBehavior is set to true and the HttpsGetUrl property is a relative address, but there is no https base address. Either supply an https base address or set HttpsGetUrl to an absolute address. + + + ServiceDurableInstance saved to persistence store. + + + The security protocol cannot verify the incoming message. + + + {0}. This often indicates that a service that HTTP.SYS depends upon (such as httpfilter) is not started. + + + The requested resource has been moved. + + + The security token manager requires the security binding element to be specified in order to create a token provider for requirement '{0}'. + + + Type load for contract interface ID {0} failed with Error:{1}. + + + There is already a listener on IP endpoint {0}. This could happen if there is another application already listening on this endpoint or if you have multiple service endpoints in your service host with the same IP endpoint but with incompatible binding configurations. + + + Could not establish trust relationship for the SSL/TLS secure channel with authority '{0}'. + + + A non-critical error or warning occurred in the MetadataExchangeClient during WSDL Import This could result in some endpoints not being imported. + + + The length of this argument must be greater than 0. + + + The binding ('{0}', '{1}') has been configured with a security algorithm suite '{2}' that is incompatible with the issued token key size '{3}' specified on the binding. + + + The transaction '{0}' was aborted because it was uncompleted when the session was closed and the TransactionAutoCompleteOnSessionClose OperationBehaviorAttribute was set to false. + + + Use the 'client' variable to call operations on the service. + + + The XPathNodeIterator has been invalidated. XPathNodeIterators passed as arguments to IXsltContextFunctions are only valid within the function. They cannot be cached for later use or returned as the result of the function. + + + The element with name '{0}' and namespace '{1}' is not an allowed item format. + + + The item cannot be added. The maximum cache size is ({0} items). + + + The item created a null person. + + + At most one signature is supported with default policy check. + + + Multiple supporting token authenticators with the token parameter type equal to '{0}' cannot be specified. If more than one Supporting Token of the same type is expected in the response, then configure the supporting token collection with just one entry for that SecurityTokenParameters. The SecurityTokenAuthenticator that gets created from the SecurityTokenParameters will be used to authenticate multiple tokens. It is not possible to add SecurityTokenParameters of the same type in the SupportingTokenParameters collection or repeat it across EndpointSupportingTokenParameters and OperationSupportingTokenParameters. + + + The type of the element does not match the configuration type. + + + This SecurityKeyIdentifierClause does not support key creation. + + + The session was closed before message transfer was complete. + + + A reply has already been sent from this RequestContext. + + + The HTTP request to '{0}' has exceeded the allotted timeout of {1} while reading the response. The time allotted to this operation may have been a portion of a longer timeout. + + + The number of XML infoset nodes inspected by the navigator has exceeded the quota ({0}). + + + The client certificate is not provided. Specify a client certificate in ServiceCredentials. + + + The token requirement does not contain a property '{0}'. + + + Error decoding the Cookie element of SecurityContextSecurityToken. + + + Could not formulate request message for security session operation '{0}'. + + + Unexpected code path for server security application, sending outgoing message on Recipient. + + + Item does not exist in SynchronizedKeyedCollection. + + + The property '{0}' is not supported when building a ChannelFactory. The property value must be null when calling BuildChannelFactory. + + + {0}: {1} (Fault Detail is equal to {2}). + + + Open timed out after {0} while establishing a transport session to {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + The WS-AtomicTransaction protocol service could not unmarshal the flowed transaction. The following exception occured: {0} + + + The '{0}' can only be used with HTTP (or HTTPS) transport. + + + The HTTP request with client authentication scheme '{0}' failed with '{1}' status. + + + The task-based asynchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a task-based asynchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must define the same number and types of parameters. In this case, some of the arguments are different. To fix it, ensure that the OperationContracts define the same number and types of arguments, in the same order. Alternatively, changing the name of one of the methods will prevent matching. + + + The authenticator was not included in the final leg of negotiation. + + + GenericCallbackException + + + The server security session received a close message from the client. + + + Only malformed Messages are supported. + + + The version of the header(s) ({0}) differs from the version of the message ({1}). + + + The value specified, '{0}', for the If-Modified-Since header does not parse into a valid date. Check the property value and ensure that it is of the proper format. + + + Timeouts larger than Int32.MaxValue TotalMilliseconds (approximately 24 days) cannot be honored. To disable timeout, specify TimeSpan.MaxValue. + + + The service class of type {0} both defines a ServiceContract and inherits a ServiceContract from type {1}. Contract inheritance can only be used among interface types. If a class is marked with ServiceContractAttribute, then another service class cannot derive from it. + + + Failed to trace a message + + + The ServiceDebugBehavior Help Page is enabled at a relative address and cannot be created because there is no base address. + + + The operation '{0}' cannot be the first operation to be called because IsInitiating is false. + + + The endpoint's binding is not specified. + + + The system hit the limit set for throttle '{0}'. Limit for this throttle was set to {1}. Throttle value can be changed by modifying attribute '{2}' in serviceThrottle element or by modifying '{0}' property on behavior ServiceThrottlingBehavior. + + + The remote endpoint of the socket ({0}) did not respond to a close request within the allotted timeout ({1}). It is likely that the remote endpoint is not calling Close after receiving the EOF signal (null) from Receive. The time allotted to this operation may have been a portion of a longer timeout. + + + A one-way header was expected on this message and none was found. It is possible that your bindings are mismatched. + + + An asynchronous write was called on the stream without a free buffer. + + + The length ('{0}' bytes) of the derived key's Nonce exceeds the maximum length ('{1}' bytes) allowed. + + + CustomChannelBindings are not supported. Please remove the CustomChannelBinding from the ExtendedProtectionPolicy\". + + + An endpoint configuration section for contract '{0}' could not be loaded because more than one endpoint configuration for that contract was found. Please indicate the preferred endpoint configuration section by name. + + + The security protocol secured the outgoing message. + + + An exception has been thrown when reading the stream. + + + The .Net Framing mode being used is not supported by '{0}'. See the server logs for more details. + + + An unexpected error has occurred. + + + The fault reason does not contain any text translations. + + + Request-reply security is not supported by the security protocol factory '{0}'. + + + Callback method {0} is not supported, this can happen if the method is not marked with OperationContractAttribute or if its interface type is not the target of the ServiceContractAttribute's CallbackContract. + + + Similar ServiceEndpoints were exported. The WSDL export process was forced to suffix wsdl:binding names to avoid naming conflicts.\r\n Similar ServiceEndpoints means different binding instances having the Name: {0} and Namespace: {1} and either the same ContractDescription or at least the same contract Name: {2}. + + + The remote endpoint sent an unexpected terminate sequence response message. Simplex servers do not process this message. + + + The username/password Membership provider {0} specified in the configuration is invalid. No such provider was found registered under system.web/membership/providers. + + + The protocol factory must support Request/Reply security in order to offer signature confirmation. + + + Could not duplicate the token (error=0x{0:X}). + + + The CustomBinding on the ServiceEndpoint with contract '{0}' lacks a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement. + + + In order to use the contract '{0}' with DuplexChannelFactory, the contract must specify a valid callback contract. If your contract does not have a callback contract, consider using ChannelFactory instead of DuplexChannelFactory. + + + The security token serializer must be specified on the security token provider. + + + The WS-RM policy under the namespace {0} requires the wsrmp:ExactlyOnce, wsrmp:AtLeastOnce, or wsrmp:AtMostOnce assertion. The {1} element under the {2} namespace was found. + + + There are two contracts listening on the same binding ({2}) and address with conflicting settings. Specifically, the contract '{0}' specifies SessionMode.NotAllowed while the contract '{1}' specifies SessionMode.Required. You should either change one of the SessionMode values or specify a different address (or ListenUri) for each endpoint. + + + A newly accepted connection did not receive initialization data from the sender within the configured ChannelInitializationTimeout ({0}). As a result, the connection will be aborted. If you are on a highly congested network, or your sending machine is heavily loaded, consider increasing this value or load-balancing your server. + + + A transaction vote request was completed, but there was no outstanding vote request. + + + Fail to load binding {0} from config. Error:{1}. + + + Cannot find '{0}' value in dictionary string. + + + Contract requires OneWay, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + Begin method execution. + + + Iid: {0}\nType Library ID: {1} + + + Cannot claim lock within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + None of the methods were found for interface {0}. + + + Could not find keyword {0}. + + + An error ({0}) occurred while parsing the content type of the HTTP request. The content type was: {1}. + + + {0} cannot be changed after the ServiceHost has opened. + + + InitializeDescription must be called with a serviceType or singletonInstance parameter. + + + The message could not be processed because the action '{0}' is invalid or unrecognized. + + + Extension {0} prevented call to operation '{1}' from replying by setting the reply to null. + + + This method is not supported for this HTTP content. + + + WebSocket upgrade request failed. The header '{0}' is missing in the response. + + + Credentials specified are not sufficient to carry requested operation. Please specify a valid value for {0}. + + + A message was written + + + Header name mismatch in member {1} of type {0}. The header name found in the description is {2}. The element name deduced by the formatter is {3}. This mismatch can happen if the ElementName specified in XmlElementAttribute or XmlArrayAttribute does not match the name specified in the MessageHeaderAttribute or MessageHeaderArrayAttribute or the member name. + + + The Method with name '{1}' in Type '{0}' could not be invoked because the application does not have permission to invoke the method: both the Method and its containing Type must be public. + + + The DeliveryRequirementsAttribute on contract '{0}' specifies a QueuedDeliveryRequirements constraint. This condition could not be verified because the configured binding does not implement IBindingDeliveryCapabilities. The DeliveryRequirementsAttribute may only be used with bindings that implement the IBindingDeliveryCapabilities interface. + + + The DeliveryRequirementsAttribute on contract '{0}' specifies that the binding must support ordered delivery (RequireOrderedDelivery). This condition could not be verified because the configured binding does not implement IBindingDeliveryCapabilities. The DeliveryRequirementsAttribute may only be used with bindings that implement the IBindingDeliveryCapabilities interface. + + + Service implementation type is an interface or abstract class and no implementation object was provided. + + + The RequestSecurityTokenResponseCollection received has more than one RequestSecurityTokenResponse element. Only one RequestSecurityTokenResponse element was expected. + + + The MetadataExchangeClient was not supplied with a MetadataReference or MetadataLocation from which to get metadata. You must supply one to the constructor, to the GetMetadata method, or to the BeginGetMetadata method. + + + The item's contributors were not serialized as part of serializing the feed in RSS 2.0 format. + + + Element {0} cannot be empty. + + + The ServiceMetadataExtension instance could not be added to the ServiceHost instance because it has already been added to another ServiceHost instance. + + + The ServiceMetadataExtension instance could not be removed from the ServiceHost instance because it has not been added to any ServiceHost instance. + + + The ServiceMetadataExtension instance could not be removed from the ServiceHost instance because it has already been added to a different ServiceHost instance. + + + IAsyncResult not provided or of wrong type. + + + The channel behaviors configured for the issuer address '{0}' cannot contain a behavior of type '{1}'. + + + Provided information is Insufficient to create a valid connection to the resolver service. + + + The URI supplied to ServiceMetadataBehavior via the ExternalMetadataLocation property or the externalMetadataLocation attribute in the serviceMetadata section in config must be a relative URI or an absolute URI with an http or https scheme. '{0}' was specified, which is a absolute URI with {1} scheme. + + + The operation: {0} is not valid while the object is in closed state. + + + The feed created a null category. + + + The SecurityVersion '{0}' does not support signature confirmation. Use a later SecurityVersion. + + + The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '{0}'. + + + Cannot write to a buffer which is currently being flushed. + + + You cannot specify an explicit Proxy Address as well as UseDefaultWebProxy=true in your HTTP Transport Binding Element. + + + Could not find interface in the Assembly + + + The asynchronous result object used to end this operation was not the object that was returned when the operation was initiated. + + + A reply message was received with no acknowledgement. + + + Cannot propagate channel parameters because the {0} is in the {1} state. This operation is only supported in the Opening or Opened state when the collection is locked. + + + Behavior type already exists in the collection + + + XmlSerializer attribute {0} is not valid in {1}. Only XmlElement, XmlArray, XmlArrayItem and XmlAnyElement attributes are supported in MessageContract when IsWrapped is false. + + + The channel received an unexpected fault input message with Action = '{0}' while closing. You should only close your channel when you are not expecting any more input messages. + + + The incoming message with action '{0}' contains a callback context header with name '{1}' and namespace '{2}'. Callback context headers are not expected in incoming messages at the client. + + + BaseAddress must an absolute uri. + + + The contract '{0}' has at least one operation annotated with '{1}', but the binding used for the contract endpoint at address '{2}' does not support required binding property '{3}'. Please ensure that the binding used for the contract supports the ReceiveContext capability. + + + text '{0}' + + + The Encrypted Header and the Security Header '{0}' attribute did not match. Encrypted Header: {1}. Security Header: {2}. + + + Async End called on wrong channel. + + + The Atom10 specification requires '{0}' to have one of these values: \"text\", \"html\", \"xhtml\", however this value is '{1}' in the document being deserialized. + + + The binding's PeerTransportSecuritySettings can not be supported under the current system security configuration. + + + Switched threads while processing a message for Contract '{0}' at Address '{1}'. Waiting for the completion of ReceiveContext acknowledgement. If your service seems to be not processing the message ensure that the channel implementation of receive context completes the operation. + + + The remote endpoint sent an unexpected close sequence response message. Simplex servers do not process this message. + + + Reading data from connection on '{0}'. + + + '{0}' does not support '{1}' creation. + + + Security protocol must be '{0}', type is: '{1}'.; + + + No value. + + + Contract does not allow Session, but Binding '{0}' does not support Datagram or is not configured properly to support it. + + + The TransportManager failed to listen on the supplied URI using the {0} service: {1}. + + + {0} returned true from OnTryCreateFaultMessage, but did not return a fault message. + + + Moniker Missing Colon + + + The UriTemplate '{0}' is not valid; the UriTemplate path variable '{1}' has a null default value while the following path segment '{2}' is not a variable segment with a null default value. Note that UriTemplate path variable with null default values must be followed only with other path variables with null defaulted value. See the documentation for UriTemplate for more details. + + + The RequestSecurityTokenResponse has multiple RequestedSecurityToken elements. + + + The security timestamp is stale because its expiration time ('{0}') is in the past. Current time is '{1}' and allowed clock skew is '{2}'. + + + The specified WSAT protocol version is invalid. + + + Message part specification must be made constant before being set. + + + Contract requires TwoWay (either request-reply or duplex), but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + Interface {0} not found in configuration. + + + Message with id {0} was not in a locked state. + + + The CloseTarget specified '{0}' does not identify the security token that signed the message. + + + A policy document was ignored because a policy expression with that ID has already been imported.\r\nPolicy ID:{0} + + + The security session received an unexpected close response from the other party. + + + {0} returned true from OnTryCreateException, but did not return an Exception. + + + The IssuanceTokenProvider has completed the security negotiation. + + + There is no SecurityContextSecurityToken with context-id={0} (no key generation-id) registered with SecurityContextSecurityTokenAuthenticator. + + + The UriTemplate '{0}' is not valid; the UriTemplate compound path segment '{1}' provides a default value to variable '{2}'. Note that UriTemplate doesn't support default values to variables in compound segments. See the documentation for UriTemplate for more details. + + + Bindings for operation {0} cannot specify different use and style values. Binding {1} specifies use {2} and style {3} while binding {4} specifies use {5} and style {6}. + + + Body object cannot be null in message {0} + + + Endpoints cannot be added after the ServiceHost has been opened/faulted/aborted/closed. + + + A body element was not found inside the message envelope. + + + The ChannelDispatcher with ListenUri '{0}' has endpoints with the following contracts: {1}. Metadata endpoints cannot share ListenUris. The conflicting endpoints were either specified in AddServiceEndpoint() calls, in a config file, or a combination of AddServiceEndpoint() and config. + + + Close '{0}'. + + + Failed to close {0} + + + The computed key algorithm '{0}' is not supported. + + + Security Token Authenticator was opened. + + + The custom crypto algorithm '{0}' obtained using CryptoConfig is not a valid or supported hash algorithm. + + + The impersonation level '{0}' was specified, yet HTTP Digest authentication can only support 'Impersonation' level when used with an explicit credential. + + + The content type {0} of the response message does not match the content type of the binding ({1}). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first {2} bytes of the response were: '{3}'. + + + SynchronizationContextWorkflowSchedulerService - Timer {0} cancelled. + + + The SecurityTokenProvider '{0}' could not resolve the token. + + + Connection was not accepted because the SecurityContext contained tokens that do not match the current security settings. + + + MaxBufferSize must not exceed MaxReceivedMessageSize. + + + The RequestSecurityTokenResponse CombinedHash is incorrect. + + + The required outer proxy could not be created. Ensure that the service moniker is correctly installed and registered. + + + Only one type of server identity can be specified. + + + An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. + + + Couldn't find required attribute of type {0} on {1}. + + + This collection does not support setting extensions by index. Please consider using the InsertItem or RemoveItem methods. + + + Content Type {0} was not supported by service {1}. The client and service bindings may be mismatched. + + + This message cannot support the operation because it has been read. + + + The SequenceAcknowledgement violates the cumulative acknowledgement invariant. + + + The ChannelDispatcher at '{0}' with contract(s) '{1}' is unable to open its IChannelListener. + + + The ChannelDispatcher at '{0}' is unable to open its IChannelListener as there are no endpoints for the ChannelDispatcher. + + + The send operation did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + The open operation did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + An exception was thrown in a call to a WSDL export extension: {0}\r\n Endpoint: {1} + + + ServiceHost base addresses. + + + X509Chain does not have any valid certificates. + + + An incoming create sequence request was rejected because the maximum pending channel count was reached. + + + The value could not be added to the collection, as the collection already contains an item of the same type: '{0}'. This collection only supports one instance of each type. + + + The underlying channel factory could not be created because no Binding was passed to the ChannelFactory. Please supply a valid Binding instance via the ChannelFactory constructor. + + + The config element '{0}' is invalid because the attribute '{1}' and the sub element '{2}' were both specified. These are mutually exclusive items and cannot be used simultaneouly. + + + Identity cannot be determined for an EndpointReference. + + + The client security session received a closed reponse from the server. + + + A signature is not expected for this message. + + + The security session id '{0}' is already present in the filter table. + + + Generating message contract since message part namespace ({0}) does not match the default value ({1}) + + + Protocol Type {0} was sent to a service that does not support that type of upgrade. + + + ContextBindingElementImporter cannot import policy because PolicyImportContext.BindingElements collection is null. + + + The IssuanceTokenProvider used the cached service token. + + + Binding not specified. + + + Context retrieved from Message. + + + RedirectionType 'Cache' does not allow any RedirectionLocation objects be passed into the constructor. + + + SecurityVersion.WSSecurityJan2004 does not support header encryption. Header with name '{0}' and namespace '{1}' is configured for encryption. Consider using SecurityVersion.WsSecurity11 and above or use transport security to encrypt the full message. + + + X509CertificateValidationMode.Custom requires a CustomCertificateValidator. Specify the CustomCertificateValidator property. + + + There was a problem reading the MetadataSet argument: a MetadataSection instance with identifier '{0}' and dialect '{1}' has a Metadata property whose type does not match the dialect. The expected Metadata type for this dialect is '{2}' but was found to be '{3}'. + + + DispatchOperation requires Invoker. + + + Internal SSL error (refer to Win32 status code for details). Check the server certificate to determine if it is capable of key exchange. + + + Header name mismatch in operation {0} from contract {1}:{2}. The header name found in the description is {3}. The element name deduced by the formatter is {4}. This mismatch can happen if the ElementName specified in XmlElementAttribute or XmlArrayAttribute does not match the name specified in the MessageHeaderAttribute or MessageHeaderArrayAttribute or the member name. + + + The socket was aborted because an asynchronous receive from the socket did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is: + + + XPath:{0} + + + The security session with id '{0}' is already pending. + + + There was an error while trying to deserialize parameter {0}:{1}. Please see InnerException for more details. + + + Id is missing in encrypted item in security header. + + + Failed to open {0} + + + Part {1}:{0} is repeating and is not supported in Soap Encoding. + + + UriTemplateTable does not support multiple templates that have equivalent path as template '{0}' but have different query strings, where the query strings cannot all be disambiguated via literal values. See the documentation for UriTemplateTable for more detail. + + + The '{0}' service is configured with EnsureOrderedDispatch set to true, but the ConcurrencyMode is not set to Single. EnsureOrderedDispatch requires the use of ConcurrencyMode.Single. + + + Cannot import the policy. The value of the attribute '{0}' must be either 'true', 'false', '1' or '0'. The following error occurred: '{1}'. + + + The operation '{1}' on contract '{0}' is configured with TransactionAutoComplete set to false but SessionMode is not set to Required. TransactionAutoComplete set to false requires SessionMode.Required. + + + failed to start the service. Refer to the Event Log for more details + + + The server security session sent a key renewal fault to the client. + + + Ignoring invalid SOAP fault extension in wsdl:operation name='{0}' from targetNamespace='{1}'. Reason: {2} + + + Failed to lookup a channel to receive an incoming message. Either the endpoint or the SOAP action was not found. + + + This factory buffers messages, so the message sizes must be in the range of an integer value. + + + The security timestamp is stale because its creation time ('{0}') is too far back in the past. Current time is '{1}', maximum timestamp lifetime is '{2}' and allowed clock skew is '{3}'. + + + WsdlImporter encountered unrecognized policy assertions in ServiceDescription '{0}': + + + Security processor was unable to find a security header with actor '{0}' in the message. This might be because the message is an unsecured fault or because there is a binding mismatch between the communicating parties. This can occur if the service is configured for security and the client is not using security. + + + The ServiceHost must be configured with either a serviceType or a serviceInstance. Both of these values are currently null. + + + The socket connection was aborted because an asynchronous send to the socket did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + The security token parameters to use for the issued token are not set on '{0}'. + + + There is no compatible TransportManager found for URI '{0}'. This may be because you have used an absolute address that points outside of the virtual application. Please use a relative address instead. + + + The Binding with name {0} failed validation because the Binding type {1} is not supported in partial trust. Consider using BasicHttpBinding or WSHttpBinding, or hosting your application in a full-trust environment. + + + An error occurred when verifying security for the message. + + + The primary signature is not signed with a key derived from the encrypted key. The binding's token parameter '{0}' requires key derivation. + + + The HTTPS channel factory does not support explicit specification of an identity in the EndpointAddress unless the authentication scheme is NTLM or Negotiate. + + + Binding {1}:{2} is configured with ContextExchangeMechanism.HttpCookie which is not compatible with the transport type {0}. Please modify the ContextExchangeMechanism or use HTTP or HTTPS transport. + + + The response message must be protected. This is required by an operation of the contract ('{0}', '{1}'). The protection must be provided by the binding ('{2}', '{3}'). + + + Multiple correlation tokens were found in the security correlation state. + + + The close operation did not complete within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + An error occurred while making the HTTP request to {0}. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also be caused by a mismatch of the security binding between the client and the server. + + + The OLE Transactions header was invalid or corrupt. + + + The security timestamp is invalid because its creation time ('{0}') is in the future. Current time is '{1}' and allowed clock skew is '{2}'. + + + The scheme parameter must not be empty. + + + ClientCredentialType.None is not valid for the TransportWithMessageCredential security mode. Specify a message credential type or use a different security mode. + + + The operation '{0}' could not be invoked because the property '{1}' on the OperationContract is set to '{2}'. To invoke this operation on the server, call the '{3}' method on the client proxy instead. + + + The system hit the limit set for the '{0}' throttle. Throttle value can be changed by modifying {0} property on {1}. + + + Unable to create a bi-directional (request-reply or duplex) channel for security negotiation. Please ensure that the binding is capable of creating a bi-directional channel. + + + Cannot add outgoing headers to message as MessageVersion in OperationContext.Current '{0}' does not match with the header version of message being processed '{1}'. + + + The Inner listener factory of {0} must be set before this operation. + + + Binary encoding {0} is not supported. + + + The default values of UriTemplate are immutable; they cannot be modified after the construction of the UriTemplate instance. See the documentation of UriTemplate for more details. + + + Cannot process contentType. + + + RPC Message {1} in operation {0} must have a single MessageBodyMember. + + + Invalid value for the {0} type. The type '{1}' does not derive from the appropriate base class '{2}' or is abstract. + + + The contract '{0}' is not self-consistent -- it has one or more IsTerminating or non-IsInitiating operations, but it does not have the SessionMode property set to SessionMode.Required. The IsInitiating and IsTerminating attributes can only be used in the context of a session. + + + SecurityContext for the UltimateReceiver role is missing from the SecurityContextProperty of the request message with action '{0}'. + + + HTTP request streaming cannot be used in conjunction with HTTP authentication. Either disable request streaming or specify anonymous HTTP authentication. + + + The wsdl operation input {0} in portType {1} does not reference a message. This is either because the message attribute is missing or empty. + + + The security timestamp is invalid because its creation time ('{0}') is greater than or equal to its expiration time ('{1}'). + + + Service description message '{1}' from target namespace '{2}' does not contain part named '{0}'. + + + Authentication failed for HTTP(S) connection + + + The security protocol factory must be set before this operation is performed. + + + The MetadataExchangeClient could not create an HttpWebRequest for: address='{0}', dialect='{1}', and identifier='{2}'. + + + The channel demuxer Open failed previously with exception '{0}'. + + + The message could not be dispatched because the transport manager has been stopped. This can happen if the application is being recycled or disabled. + + + Receiving data at via '{0}'. + + + Maximum number of inbound session channel has been reached. + + + Receive bytes on connection '{0}'. + + + Reading of a service document completed. + + + Unrecognized identity type Name='{0}', Namespace='{1}'. + + + The operation contract '{0}' is not self-consistent. When the '{1}' is set to '{2}', both '{3}' and '{4}' properties must be true, and the operation must not have any input parameters. + + + The token requirement '{0}' does not specify the target address. This is required by the token manager for creating the corresponding security token provider. + + + The security negotiation message with action '{0}' is larger than the maximum allowed buffer size '{1}'. If you are using a streamed transport consider increasing the maximum buffer size on the transport. + + + The endpoint at {0} processes input sessions. The create sequence request must not contain an offer for a return sequence. This is likely caused by a binding mismatch. + + + InitializeRuntime requires that the Description property be initialized. Either provide a valid ServiceDescription in the CreateDescription method or override the InitializeRuntime method to provide an alternative implementation. + + + The WebSocketVersion returned by the WebSocket factory of type '{0}' is either null, empty or invalid. + + + The HTTP service located at {0} is unavailable. This could be because the service is too busy or because no endpoint was found listening at the specified address. Please ensure that the address is correct and try accessing the service again later. + + + This collection does not support setting items by index. + + + No correlation token was found in the security correlation state. + + + The UriTemplate '{0}' is not valid; the UriTemplate variable named '{1}' appears multiple times in the template. Note that UriTemplate variable names are case-insensitive. See the documentation for UriTemplate for more details. + + + The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. + + + The supporting signature is not signed with a derived key. The binding's supporting token parameter '{0}' requires key derivation. + + + Cannot modify channel parameters because the {0} is in the {1} state. This operation is only supported in the Created state. + + + The UriTemplate '{0}' is not valid; the UriTemplate variable declaration '{1}' isn't a valid variable construct. Note that UriTemplate variable definitions are either a simple, non-empty, variable name or a 'name=value' format, where the name must not be empty and the value provides a default value to the variable. See the documentation for UriTemplate for more details. + + + Positioned before first element. + + + failed to look up the service SID in the SCM ({0}) + + + The following Policy Assertions were not Imported:\r\n + + + TimeSpan must be greater than TimeSpan.Zero. + + + Invalid serializer specified. The only valid values are 'xml' and 'datacontract'. + + + The configured application was not found. (The Application ID was {0}.) + + + The communication object, {0}, cannot be used for communication because it has been Aborted: {1} + + + The CLSID specified in the service file is not configured in the specified application. (The CLSID is {0}, the AppID is {1}.) + + + ContextBindingElement of binding {0}:{1} is configured with ContextExchangeMode.HttpCookie but the configuration of this binding's HttpTransportBindingElement prevents upper channel layers from managing cookies. Please set the HttpTransportBindingElement.AllowCookies property to false or change the ContextExchangeMechanism of ContextBindingElement to SoapHeader. + + + Channel interface type '{0}' is not supported. + + + The DataProtectionSecurityStateEncoder is unable to decode the byte array. Ensure that a 'UserProfile' is loaded, if this is a 'web farm scenario' ensure all servers are running as the same user with the roaming profiles or provide a custom SecurityStateEncoder'. + + + The Service contains multiple ServiceEndpoints with different ContractDescriptions which each have Name='{0}' and Namespace='{1}'. Either provide ContractDescriptions with unique Name and Namespaces, or ensure the ServiceEndpoints have the same ContractDescription instance. + + + This SecurityProtocol instance was not set up to process incoming messages. + + + The reply was not signed with the required signing token. + + + Finished Security ExportChannelBinding + + + The flowed transaction could not be unmarshaled. The following exception occurred: {0} + + + The operation '{0}' on callback contract '{1}' is configured with TransactionAutoComplete set to false. TransactionAutoComplete set to false cannot be used with operations on callback contracts. + + + The binding does not contain a TransportBindingElement. + + + A message was closed + + + '{0}' is an absolute address. The supported relativeAddress formats are \"[subfolder/]filename\" or \"~/[subfolder/]filename\". + + + HttpChannelFactory cannot create the channel with shape '{0}' when the {1} of {2} was set as '{3}'. + + + A message was copied + + + Existing transaction '{0}' being used for operation '{1}'. + + + Unrecognized contentType ({0}). Expected: {1}. + + + Standards manager of filter does not match that of filter table. Can not have two different filters. + + + The message could not be dispatched because the service at the endpoint address '{0}' is unavailable for the protocol of the address. + + + Internal Error: Unrecognized constant type {0}. + + + Maximum number of pending connections has been reached. + + + An error occurred while receiving the HTTP response to {0}. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details. + + + ExtendedProtectionPolicy specified a PolicyEnforcement of 'Always' which is not supported for the authentication mode requested. This prevents the ExtendedProtectionPolicy from being enforced. For StandardBindings use a SecurityMode of TransportWithMessageCredential and a ClientCredential type of Windows. For CustomBindings use SspiNegotiationOverTransport or KerberosOverTransport. Alternatively, specify a PolicyEnforcement of 'Never'. + + + A pending security session was added to the server. + + + The key rollover interval cannot be greater than the key renewal interval. + + + Server security session sent session aborted fault to client. + + + The extension element already exists in the collection. + + + There is no handler registered for session token renew event. + + + The {0} object has been disposed. + + + An IPv4 address was specified ({0}), but IPv4 is not enabled on this machine. + + + RequestedSecurityToken not specified in RequestSecurityTokenResponse. + + + Can only store into ArgBuilder or LocalBuilder. Got: {0}. + + + The issuer cannot provide a computed key in key entropy mode '{0}'. + + + The SecurityContextSecurityToken cache is full. + + + The wsa:ReplyTo header must be present on a wsrm:{0} message. + + + The task-based asynchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a task-based asynchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, the two OperationContracts must have the same value for the '{5}' property. In this case, the values are different. To fix it, change the '{5} property of one of the OperationContracts to match the other. Alternatively, changing the name of one of the methods will prevent matching. + + + The RequestSecurityToken message does not match the endpoint filters the service '{0}' is expecting incoming messages to match. This may be because the RequestSecurityToken was intended to be sent to a different service. + + + The '{0}' header cannot be added because it does not support the specified message version '{1}'. + + + Unrecognized identity property type: '{0}'. + + + There is a problem with the XML that was received from the network. See inner exception for more details. + + + Did not understand message header. + + + Operation '{0}' could not be loaded as it uses an unsupported combination of Use and Style settings: Document with Encoded. To fix the problem, change the Use setting to Literal or change the Style setting to Rpc. + + + Construct ChannelFactory. Contract type: '{0}'. + + + A TCP error ({0}: {1}) occurred while transmitting data. The local IP address and port is {2}. The remote IP address and port is {3}. + + + The contract name '{0}' could not be found in the list of contracts implemented by the service '{1}'. + + + Cannot find a unique port number that is available for both IPv4 and IPv6. + + + This fault did not provide a reason (MessageFault.Reason.Translations.Count was 0). + + + A security session operation was started at the client. + + + A previous call to this WsdlImporter left it in a faulted state. It is no longer usable. + + + The value '{0}' cannot be parsed as the type '{1}'. + + + The XML element {0} does not have a child of type {1}. + + + Specified size is too large for this implementation. + + + The '{0}' protocol binding '{1}' specifies an invalid port number '{2}'. + + + Message part {0} in namespace {1} appears more than once in Message. + + + Context cached at the channel layer cannot be changed after the channel is opened. + + + A feed containing items that are not buffered (i.e. the items are not stored in an IList) cannot clone its items. Buffer the items in the feed before calling Clone on it or pass false to the Clone method. + + + Security header is empty. + + + Unloading the performance counters failed. + + + --- End of inner ExceptionDetail stack trace --- + + + Incoming binary negotiation has invalid ValueType {0}. + + + All of the reply sequence's messages must be acknowledged prior to closing the request sequence. This is a violation of the reply sequence's delivery guarantee. The session cannot continue. + + + The IMessageFilterTable created for a Filter cannot be a MessageFilterTable or a subclass of MessageFilterTable. + + + The number of bytes available is inconsistent with the HTTP Content-Length header. There may have been a network error or the client may be sending invalid requests. + + + The token resolver is unable to resolve the token reference '{0}'. + + + MessageOperationFormatter cannot serialize faults. + + + The server received a TerminateSequence message before all reply sequence messages were acknowledged. This is a violation of the reply sequence acknowledgement protocol. + + + An error occurred while loading attribute '{0}' on method '{1}' in type '{2}'. Please see InnerException for more details. + + + IXsltContextFunction return type '{0}' not supported. + + + Specified PeerResolverMode value {0} is invalid. Please specify either PeerResolveMode.Auto, Default, or Pnrp. + + + Starting Security ExportChannelBinding + + + The contract type name in the configuration file was not in the form of an interface identifier. (The string is \"{0}\".) + + + There are too many pending secure conversations on the server. Please retry later. + + + Message bindings for operation {0} in binding {1} cannot specify different use values. + + + The Security Support Provider Interface does not support Impersonation level 'None'. Specify Identification, Impersonation or Delegation level. + + + The endpoint at {0} has stopped accepting wsrm sessions. + + + UserNamePasswordValidationMode.Custom requires a CustomUserNamePasswordValidator. Specify the CustomUserNamePasswordValidator property. + + + Service security negotiation processing failure. + + + The reverting operation failed with the exception '{0}'. + + + The MetadataExchangeClient can only get metadata from http or https addresses when using MetadataExchangeClientMode HttpGet. It cannot get metadata from '{0}'. + + + Required xml:lang attribute value is missing. + + + The transaction '{0}' for operation '{1}' was completed due to an unhandled execution exception. + + + Signature verification failed. + + + WebSockets are not supported in the classic pipeline mode. Consider using the integrated pipeline mode for the application pool. + + + The request message in the request context received from channel '{0}' is null. + + + The recursive policy fetching limit has been reached. Check to determine if there is a loop in the federation service chain. + + + The request for security token could not be satisfied because authentication failed. + + + Policy chain contains self issued URI or a managed issuer in the wrong position. + + + The value specified for the AuthenticationScheme property on the HttpTransportBindingElement ('{0}') is not allowed when building a ChannelFactory. If you used a standard binding, ensure the ClientCredentialType is not set to HttpClientCredentialType.InheritedFromHost, a value which is invalid on a client. If you set the value to '{0}' directly on the HttpTransportBindingElement, please set it to Digest, Negotiate, NTLM, Basic, or Anonymous. + + + SOAP security negotiation failed. See inner exception for more details. + + + IssuanceTokenProvider pruned service token cache. + + + The UriTemplate '{0}' is not valid; the additional default value '{1}' has a null value as default value. Note that null default values must be only provided to concrete path variables. See the documentation for UriTemplate for more details. + + + This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service. For example:<BR/> + + + The Security Support Provider Interface (SSPI) negotiation failed. + + + More than one Timestamp element was present in security header. + + + The input handler list cannot be empty. + + + XML child node {0} of type {1} is unexpected for element {2}. + + + The InstanceContext has no provider for creating Service implementation objects. + + + failed to retrieve the UserSid of the service process ({0}) + + + The object with CLSID '{0}' does not support the required IPersistStream interface. + + + The service encountered an error. + + + Failed to impersonate client identity during serialization of the response message. + + + WS-RM SequenceAcknowledgement received. + + + SocketConnection create + + + Unable to obtain XmlDictionaryReaderQuotas from the Binding. If you have specified a custom EncodingBindingElement, verify that the EncodingBindingElement can handle XmlDictionaryReaderQuotas in its GetProperty<T>() method. + + + The HTTP request is unauthorized with client authentication scheme '{0}'. The authentication header received from the server was '{1}'. + + + The EncryptedData or EncryptedKey is in an invalid state for this operation. + + + WorkflowDurableInstance aborted. + + + {0} must contain either a single ServiceKnownTypeAttribute that refers to a method or a set of ServiceKnownTypeAttributes, each specifying a valid type + + + The requested upgrade is not supported by '{0}'. This could be due to mismatched bindings (for example security enabled on the client and not on the server). + + + Read is not supported on this stream. + + + Failed to convert type library to assembly + + + {0} is not available in deserialized RequestSecurityToken. + + + Get configured endpoint. + + + The message containing this stream has been closed. Note that request streams cannot be accessed after the service operation returns. + + + The outer element name must be specified. + + + SpnegoTokenProvider completed SSPI negotiation. + + + None of the binding elements in binding '{0}' define a message version. At least one binding element must define a message version and return it from the GetProperty<MessageVersion> method. + + + Parameter '{0}' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is '{1}'. + + + Multiple server identity keywords were specified. Ensure that at most one identity keyword is specified. + + + The subprotocol '{0}' is invalid because it contains the invalid character '{1}'. + + + ContractDescription '{0}' has zero operations; a contract must have at least one operation. + + + Empty string is not a valid subprotocol value. Please use \"null\" to specify no value. + + + Error creating a reader for the MTOM message + + + The remote endpoint replied to a request for a two way session with an offer for a one way session. This is likely caused by a binding mismatch. The channel could not be opened. + + + The SecurityContextSecurityToken with Context-id={0} (no key generation-id) has expired. + + + No security session with id '{0}' is pending. + + + No Infocard token was found in the ChannelParameters. Infocard requires that the security token be created during channel intialization. + + + '{0}' from namespace '{1}' is not expected. Expecting element '{2}' from namespace '{3}' + + + The parameter named {0} of type {1} on method {2} of interface {3} cannot be serialized. + + + When using the rpc-encoded style, message contract types or the System.ServiceModel.Channels.Message type cannot be used if the operation has no parameters or has a void return value. Add a blank message contract type as a parameter or return type to operation '{0}'. + + + A Channel/Service endpoint's Binding is null. + + + the protocol is not supported + + + Error in line {0} position {1}. + + + ServiceHost implementation type {0} does not implement ServiceContract {1}. + + + Cannot renew the security session key. Session Key Renewal is not supported. + + + Cannot write to the stream because the end of the stream marker was already written. + + + The size necessary to buffer the XML content exceeded the buffer quota. + + + Because base ServiceContract '{0}' has a CallbackContract '{1}', derived ServiceContract '{2}' must also specify either '{1}' or a derived type as its CallbackContract. + + + Binding type {0} instance {1} not found in config. + + + The outer name of the element extension cannot be empty. + + + The ContractDescriptions in contracts must all have unique Name and Namespace pairs. More than one ContractDescription had the pair Name='{0}' and Namespace='{1}'. + + + A symmetric crypto could not be created from token '{0}'. + + + The service certificate is not provided for target '{0}'. Specify a service certificate in ClientCredentials. + + + Cannot add EndpointDispatcher to more than one ChannelDispatcher. + + + The {0} declared on method '{1}' in type '{2}' is invalid. {0}s are only valid on methods that are declared in a type that has ServiceContractAttribute. Either add ServiceContractAttribute to type '{2}' or remove {0} from method '{1}'. + + + A reply message was received for operation '{0}' with action '{1}'. However, your client code requires action '{2}'. + + + Internal Error: Message must be a valid IMethodCallMessage. + + + CallbackBehaviorAttribute can only be run as a behavior on an endpoint with a duplex contract. Contract '{0}' is not duplex, as it contains no callback operations. + + + Ignoring invalid SOAP header extension in wsdl:operation name='{0}' from targetNamespace='{1}'. Reason: {2} + + + A VARIANT parameter was passed by value. VARIANT parameters must be passed by reference. + + + There was an error deserializing the security token XML. Please see the inner exception for more details. + + + Syndication XML node of type '{0}' with name '{1}' and namespace '{2}' ignored on read. + + + KeyValuePairs must have at least one element. + + + The operation '{0}' could not be loaded because it has a parameter or return type of type System.ServiceModel.Channels.Message or a type that has MessageContractAttribute and other parameters of different types. When using System.ServiceModel.Channels.Message or types with MessageContractAttribute, the method must not use any other types of parameters. + + + Endpoint listener opened. + + + Extension type is not configured. + + + Invalid CleanupInterval value of {0}; it must be greater than zero + + + ActivityBoundary + + + The RM destination received a CreateSequenceResponse message. The RM destination does not process CreateSequenceResponse messages. + + + A Channel/Service endpoint's Contract's name is null or empty. + + + The body reader is in ReadState '{0}' and cannot be consumed. + + + A Channel/Service endpoint's Contract's namespace is null. + + + Value cannot be negative. + + + Disposing {0} + + + WS-RM SequenceAcknowledgement sent. + + + Target type is an interface but corresponding type is not PersistStreamTypeWrapper. + + + The OleTransactions protocol negotiation failed for coordination context '{0}'. + + + The incoming message contains a SOAP header representing the WS-Addressing '{0}', yet the HTTP transport is configured with AddressingVersion.None. As a result, the message is being dropped. If this is not desired, then update your HTTP binding to support a different AddressingVersion. + + + The service instance was released on the completion of the transaction '{0}' because the ReleaseServiceInstanceOnTransactionComplete ServiceBehaviorAttribute was set to true. + + + An attempt to reuse a pooled connection failed. Another attempt will be made with {0} remaining in the overall timeout. + + + AcceleratedTokenAuthenticator does not expect RequestSecurityTokenResponse from the client. + + + Endpoints cannot be added before the Description property has been initialized. + + + The security session requires a security token authenticator that implements '{0}'. '{1}' does not implement '{0}'. + + + A secure conversation cancellation is not allowed by the binding. + + + Unable to create Attached or Unattached reference for '{0}'. + + + No signature was created because not part of the message matched the supplied message part specification. + + + An error occurred while processing a message. {0} + + + This property sets EnableFaults on the client. To set EnableFaults on the server, use ChannelDispatcher's EnableFaults. + + + At least one operation on the '{0}' contract is configured with the TransactionFlowAttribute attribute set to Mandatory but the channel's binding '{1}' is not configured with a TransactionFlowBindingElement. The TransactionFlowAttribute attribute set to Mandatory cannot be used without a TransactionFlowBindingElement. + + + The negotiation RequestSecurityTokenResponse has a different context from the authenticator RequestSecurityTokenResponse. + + + The following remote identity failed verification: '{0}'. + + + Top level XML element with name {0} in namespace {1} cannot reference {2} type because it already references a different type ({3}). Use a different operation name or MessageBodyMemberAttribute to specify a different name for the Message or Message parts. + + + The entry found in AuthenticationManager's CustomTargetNameDictionary for {0} does not match the requested identity of {1}. + + + Could not connect to {0}. TCP error code {1}: {2}. + + + Security Token Provider was closed. + + + The token provider '{0}' does not support token cancellation. + + + Listener created + + + The signature confirmation elements cannot occur after the primary signature. + + + Specified argument was out of the range of valid values. + + + Failed to revert impersonation. {0} + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the task-based asynchronous OperationContract method '{2}' because they have the same operation name '{3}'. When a synchronous OperationContract method is matched to a task-based asynchronous OperationContract method, the two OperationContracts must define the same return type. In this case, the return types are different. To fix it, ensure that method '{0}' and method '{2}' have the same return type. Alternatively, changing the name of one of the methods will prevent matching. + + + The one-way operation returned a fault message with Action='{0}'. + + + There is no namespace binding for prefix '{0}' in scope. + + + Wrapper element name cannot be empty. + + + SocketConnection aborted under Close + + + IAsyncResult's State must be the state argument passed to your Begin call. + + + Switched threads while processing a message for Contract '{0}' at Address '{1}'. Cannot process more than one transaction at a time and the transaction associated with the previous message is not yet complete. Ensure that the caller has committed the transaction. + + + The 'scopeName' argument to the InstanceKey constructor must be a non-empty string which indicates the scope of uniqueness for the key. Durable services use the service namespace and name as the scope of uniqueness. + + + Binding name cannot be null or empty. + + + TThe operation '{1}' on contract '{0}' is configured with TransactionAutoComplete set to false and with ConcurrencyMode not set to Single. TransactionAutoComplete set to false requires ConcurrencyMode.Single. + + + The syndication item formatter must be configured with a syndication item. + + + The context identifier element in the registration header is invalid. + + + The UriTemplate '{0}' is not valid; the UriTemplate path variable '{1}' has a null default value while following path variable '{2}' has no defaults or provides a non-null default value. Note that UriTemplate path variable with null default value must be followed only with other path variables with null defaulted values. See the documentation for UriTemplate for more details. + + + The remote endpoint sent an unexpected create sequence response. Servers do not process this message. + + + Could not open the thread token (error=0x{0:X}). + + + The MetadataExchangeClient instance could not be initialized because no Binding is available for scheme '{0}'. You can supply a Binding in the constructor, or specify a configurationName. + + + Signature confirmation is not expected in the security header. + + + Multiple headers with name '{0}' and namespace '{1}' found. + + + The wsdl operation output {0} in portType {1} does not reference a message. This is either because the message attribute is missing or empty. + + + WSDL part {0} in message {1} from namespace {2} must have either an element or a type name + + + You have tried to create a channel to a service that does not support .Net Framing. + + + The security session was terminated This may be because no messages were received on the session for too long. + + + The SecurityContextSecurityToken has an invalid Cookie. The following error occurred when processing the Cookie: '{0}'. + + + UriTemplate '{0}' contains {1} path variables and {2} query variables but {3} values were passed to the BindByPosition method. The number of values passed to BindByPosition should be greater than or equal to the number of path variables in the template and cannot be greater than the total number of variables in the template. + + + The SecurityContextSecurityToken's Cookie element either does not contain '{0}' or has a wrong value for it. + + + The QName is invalid. + + + IXsltContextVariable type '{0}' not supported. + + + The SecurityContextSecurityToken with context-id={0} (no key generation-id) has expired. + + + Cannot determine the key size of the issued token. + + + This collection already contains an address with scheme {0}. There can be at most one address per scheme in this collection. If your service is being hosted in IIS you can fix the problem by setting 'system.serviceModel/serviceHostingEnvironment/multipleSiteBindingsEnabled' to true or specifying 'system.serviceModel/serviceHostingEnvironment/baseAddressPrefixFilters'. + + + The contract does not have an endpoint supporting the binding specified. + + + The service '{0}' is configured with TransactionAutoCompleteOnSessionClose, but no operations are configured with TransactionScopeRequired set to true. The TransactionAutoCompleteOnSessionClose property requires at least one operation with TransactionScopeRequired set to true. Remove the TransactionAutoCompleteOnSessionClose property from the service if this is the case. + + + Identity was determined for an EndpointReference. + + + No binary negotiation was received from the other party. + + + The identity check failed for the outgoing message. The expected identity is '{0}' for the '{1}' target endpoint. + + + Invalid format for encrypted body. + + + The binary encoder session information is not properly formed. + + + The specified ContractDescription could not be exported to WSDL because the Type property of the MessagePartDescription with name '{1}' in the OperationDescription with name '{0}' is not set. The Type property must be set in order to create WSDL. + + + OperationDescription '{0}' is invalid because its Messages property contains an invalid number of MessageDescription instances. Each OperationDescription must have one or two messages. + + + The issuer cannot provide key entropy or a proof token in key entropy mode '{0}'. + + + The token's crypto collection does not support algorithm '{0}'. + + + The HTTP concurrent receive quota was reached. + + + Could not find endpoint element with name '{0}' and contract '{1}' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this name could be found in the client element. + + + ... Error reading body: {0}: {1} ... + + + An unrecognized WSDL extension of Type '{0}' was not handled. + + + Unrecognized charSet '{0}' in contentType. + + + The request channel timed out attempting to send after {0}. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. + + + The IssuanceTokenProvider removed the expired service token. + + + The message version of the outgoing message ({0}) does not match that of the encoder ({1}). Make sure the binding is configured with the same version as the message. + + + The requested resouce has not changed and should be taken from cache. + + + The interface with IID {0} cannot be exposed as a web service + + + The primary signature must be encrypted. + + + The HTTP SOAPAction header and the wsa:Action SOAP header did not match. + + + Unrecognized encoding occurred while reading the binary security token. + + + The endpoint at {0} processes reply sessions. The create sequence request must contain an offer for a return sequence. This is likely caused by a binding mismatch. + + + ApplyConfiguration requires that the Description property be initialized. Either provide a valid ServiceDescription in the CreateDescription method or override the ApplyConfiguration method to provide an alternative implementation. + + + Connection information. + + + Access to performance counters is denied. Application may be running in partial trust. Either disable performance counters or configure the application to run in full trust. + + + An internal error has occurred. Invalid MessageState. + + + The service '{0}' is configured with TransactionAutoCompleteOnSessionClose set to true and with an InstanceContextMode not set to PerSession. TransactionAutoCompleteOnSessionClose set to true requires an instancing mode that uses sessions. + + + the service failed to listen + + + The subprotocol '{0}' was not requested by the client. The client requested the following subprotocol(s): '{1}'. + + + The DataProtectionSecurityStateEncoder is unable to encode the byte array. Ensure that a 'UserProfile' is loaded, if this is a 'web farm scenario' ensure all servers are running as the same user with the roaming profiles or provide a custom SecurityStateEncoder'. + + + Only an absolute Uri can be used as a base address. + + + Failed to copy the HTTP header '{0}' with value '{1}' to '{2}'. + + + The server is not accepting new secure conversations currently because it is closing. Please retry later. + + + Signing without primary signature requires timestamp. + + + Message not logged because its size exceeds configured quota + + + The task-based asynchronous OperationContract method '{0}' in type '{1}' was matched with the asynchronous OperationContract methods '{2}' and '{3}' because they have the same operation name '{4}'. When a task-based asynchronous OperationContract method is matched to a pair of asynchronous OperationContract methods, any additional attributes must be declared on the task-based asynchronous OperationContract method. In this case, the asynchronous OperationContract method '{2}' has one or more attributes of type '{5}'. To fix it, remove the '{5}' attribute or attributes from method '{2}'. Alternatively, changing the name of one of the methods will prevent matching. + + + Method {0} given in config was not found on interface {1}. + + + Only one primary signature is allowed in a security header. + + + The array passed does not have enough space to hold all the properties contained by this collection. + + + The SecurityContextSecurityToken does not have a cookie. + + + Security Token Provider was opened. + + + Context cached at the channel cannot be set or retrieved when the context management is disabled at the channel layer. Ensure context channel property 'IContextManager.Enabled' is set to true. + + + A WS-RM sequence has faulted. + + + The 'parameters' argument must be either null or an empty array. + + + The remote endpoint sent inconsistent requests to create the same sequence. The OfferId values are not identical. + + + The service cannot cache the negotiation state as the capacity '{0}' has been reached. Retry the request. + + + OperationContract method '{0}' in type '{1}' does not properly implement the async pattern, as more than one corresponding method '{2}' was found. When using the async pattern, exactly one end method must be provided. Either remove or rename one or more of the '{2}' methods such that there is just one, or set the AsyncPattern property on method '{0}' to false. + + + BasicHttpContextBinding {0}:{1} requires that AllowCookies property is set to true. + + + Encryption not expected for this message. + + + The username is not provided. Specify username in ClientCredentials. + + + The remote endpoint has sent an unrecognized fault with namespace, {0}, name {1}, and reason {2}. The channel could not be opened. + + + This service does not support WebSocket connections. + + + This service requires ASP.NET compatibility and must be hosted in IIS. Either host the service in IIS with ASP.NET compatibility turned on in web.config or set the AspNetCompatibilityRequirementsAttribute.AspNetCompatibilityRequirementsMode property to a value other than Required. + + + The maximum message size quota for incoming messages ({0}) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element. + + + Failed to do mex retrieval:{0}. + + + For replay detection to be done ProtectionLevel must be Sign or EncryptAndSign. + + + Clone() was not implemented properly by '{0}'. The cloned object was '{1}'. + + + The initialization process of the request message timed out after {0}. To increase this quota, use the '{1}' property on the '{2}'. + + + NegotiationTokenProvider was attached. + + + The message received over Transport security was missing the 'To' header. + + + Receive on local address {0} timed out after {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + .Net Framing upgrade request for {0} was sent to a service that is not setup to receive upgrades. + + + All parameter names used in operations that make up a service contract must not be null. + + + The operation to establish the WebSocket connection timed out. To increase this time limit, use the OpenTimeout property on the service endpoint's binding. + + + Invalid IContextChannel passed to OperationContext. Must be either a server dispatching channel or a client proxy channel. + + + Canonicalization algorithm '{0}' is not supported. + + + Cannot resolve reference URI '{0}' in signature to compute digest. + + + Binding '{0}' doesn't support creating any channel types. This often indicates that the BindingElements in a CustomBinding have been stacked incorrectly or in the wrong order. A Transport is required at the bottom of the stack. The recommended order for BindingElements is: TransactionFlow, ReliableSession, Security, CompositeDuplex, OneWay, StreamSecurity, MessageEncoding, Transport. + + + There is no negotiation message to send. + + + The ICrypto implementation '{0}' is not supported. + + + Could not establish secure channel for SSL/TLS with authority '{0}'. + + + The body writer returned from OnCreateBufferedCopy was not buffered. + + + UriTemplateTable (with allowDuplicateEquivalentUriTemplates = false) does not support both '{0}' and '{1}', since they are equivalent. Call MakeReadOnly with allowDuplicateEquivalentUriTemplates = true to use both of these UriTemplates in the same table. See the documentation for UriTemplateTable for more detail. + + + Unable to create Key Type element for the Key Type '{0}'. This might be due to a wrong version of MessageSecurityVersion set on the SecurityBindingElement. + + + The transaction '{0}' for operation '{1}' was newly created. + + + {0}.OnCloseMessageReceived when state == Created. + + + Invalid OperationFormatUse specified in the OperationFormatStyle of operation {0}, DataContractSerializer supports only Literal. + + + Server '{0}' sent back a fault indicating it is in the process of shutting down. Please see the inner exception for fault details. + + + There was an error verifying some XML Schemas generated during export:\r\n{0} + + + No encryption message parts were specified for messages with the '{0}' action. + + + WaitForMessage timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + The body of the message cannot be read because it is empty. + + + Generating message contract since the operation has multiple return values. + + + The contract type {0} is not attributed with ServiceContractAttribute. In order to define a valid contract, the specified type (either contract interface or service class) must be attributed with ServiceContractAttribute. + + + The type {0} registered as a policy extension does not have a public default constructor. Policy extensions must have a public default constructor + + + The element '{0}' in namespace '{1}' is not valid. This either means that element '{0}' is a duplicate element, or that it is not a legal extension because extension elements cannot be in the addressing namespace. + + + The ClientCredentials cannot be added to the binding parameters because the binding parameters already contains a SecurityCredentialsManager '{0}'. If you are configuring custom credentials for the channel, please first remove any existing ClientCredentials from the behaviors collection before adding the custom credential. + + + An active security session was removed by the server. + + + Method '{0}' has OperationContractAttribute, but enclosing type '{1}' does not have ServiceContractAttribute. OperationContractAttribute can only be used on methods in ServiceContractAttribute types or on their CallbackContract types. + + + The keyword '{0}' has no equal sign following it. Ensure that each keyword is followed by an equal sign and a value. + + + The supporting token provided for parameters '{0}' was not signed as part of the primary signature. + + + Sent a message over a channel + + + The message is not a valid SOAP message. The body contains more than 1 root element. + + + Server '{0}' sent back a fault indicating it is too busy to process the request. Please retry later. Please see the inner exception for fault details. + + + RequestContext aborted + + + The framing fault size ({0}) exceeds the quota. + + + Outgoing reply message for operation '{0}' specified Action='{1}', but contract for that operation specifies ReplyAction='{2}'. The Action specified in the Message must match the ReplyAction in the contract, or the operation contract must specify ReplyAction='*'. + + + The timestamp element added to security header to sign has no id. + + + Close timed out after {0}. Increase the timeout value passed to the call to Close or increase the CloseTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. + + + Security policy import failed. The security policy contains supporting token requirements at the operation scope. The contract description does not specify the action for the request message associated with this operation. + + + Get configuration section. + + + The operation cannot be completed because the stream is closed. + + + The timestamp must occur last in this security header layout. + + + A WSDL import extension threw an exception during the BeforeImport call: {0}\r\nError: {1} + + + The socket listener has been disposed. + + + The binding ('{0}','{1}') for contract ('{2}','{3}') supports impersonation only on Windows 2003 Server and newer version of Windows. Use SspiNegotiated authentication and a binding with Secure Conversation with cancellation enabled. + + + The endpoint address for the NT service '{0}' read from shared memory is empty. + + + The server didn't accept the connection request. It is possible that the client side message encoding format doesn't match the setting on the server side. Please check your binding settings. + + + Received bad HTTP response + + + Found multiple X.509 certificates using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}'. Provide a more specific find value. + + + The feed's contributors were not serialized as part of serializing the feed in RSS 2.0 format. + + + In operation {0}, more than one fault is declared with detail type {1} + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the task-based asynchronous OperationContract method '{2}' because they have the same operation name '{3}'. When a synchronous OperationContract method is matched to a task-based asynchronous OperationContract method, the two OperationContracts must define the same number and types of parameters. In this case, some of the arguments are different. To fix it, ensure that the OperationContracts define the same number and types of arguments, in the same order. Alternatively, changing the name of one of the methods will prevent matching. + + + The remote HTTP server did not satisfy the mutual authentication requirement. + + + WMI GetObject Query: {0} + + + Expected record type '{0}', found '{1}'. + + + An event notification threw an exception. Please refer to InnerException. + + + Could not open the process token (error=0x{0:X}). + + + Aborted '{0}'. + + + SynchronizationContextWorkflowSchedulerService - Timer {0} created for InstanceId {1}. + + + Cannot have two operations in the same contract with the same name, methods {0} and {1} in type {2} violate this rule. You can change the name of one of the operations by changing the method name or by using the Name property of OperationContractAttribute. + + + The security audit log is written successfully. + + + Headers are not supported in RPC encoded format. Headers are ignored in message {0}. + + + {0} is not assignable from {1}. + + + The message received over Transport security has unsigned 'To' header. + + + The token provider of type '{0}' did not return a token of type '{1}'. Check the credential configuration. + + + The return type of method {1} in type {2} must be IEnumerable<Type> to be used by ServiceKnownTypeAttribute in {0} + + + Binding '{0}' was not found in config. The config file must be present and contain a binding matching the one specified in the moniker. + + + Reading of a syndication item started. + + + The conversion between the client parameter type '{0}' to the required server parameter type '{1}' cannot be performed. + + + There are too many active security negotiations or secure conversations at the service. Please retry later. + + + One way operation {0} cannot not specify a reply action. + + + The request did not have any signatures but the reply has signature confirmations. + + + Message {0} must not have headers to be used in RPC encoded style. + + + There was an error creating the security key identifier clause from the security token XML. Please see the inner exception for more details. + + + The type argument passed to the generic ChannelFactory class must be an interface type. + + + The localId cannot be empty. Specify a valid 'localId'. + + + Insufficient winsock resources available to complete socket connection initiation. + + + Cannot create security binding element based on configuration data. The secure conversation bootstrap requires another secure conversation which is not supported. + + + Invalid key encryption algorithm {0}. + + + Could not find a base address that matches scheme {0} for the endpoint with binding {1}. Registered base address schemes are [{2}]. + + + For this security protocol, the incoming signing token must be an EncryptedKey. + + + A ServiceContract has more the one operation with an Action of \"*\". A ServiceContract can have at most one operation an Action = \"*\". + + + Cannot add two items with the same key to SynchronizedKeyedCollection. + + + The package full name '{0}' is invalid. + + + Buffer size must be at least {0} bytes. + + + Listener disposed + + + Fault could not be loaded as the Use setting is Encoded and it references a schema definition using Element attribute. To fix the problem, change the Use setting to Literal. + + + Context protocol was unable to parse the context header. + + + This request operation sent to {0} did not receive a reply within the configured timeout ({1}). The time allotted to this operation may have been a portion of a longer timeout. This may be because the service is still processing the operation or because the service was unable to send a reply message. Please consider increasing the operation timeout (by casting the channel/proxy to IContextChannel and setting the OperationTimeout property) and ensure that the service is able to connect to the client. + + + This request operation did not receive a reply within the configured timeout ({0}). The time allotted to this operation may have been a portion of a longer timeout. This may be because the service is still processing the operation or because the service was unable to send a reply message. Please consider increasing the operation timeout (by casting the channel/proxy to IContextChannel and setting the OperationTimeout property) and ensure that the service is able to connect to the client. + + + The symmetric security protocol can either be configured with a symmetric token provider and a symmetric token authenticator or an asymmetric token provider. It cannot be configured with both. + + + Close response message was sent by client security session. + + + The feed's links were not serialized as part of serializing the feed in RSS 2.0 format. + + + A security policy was imported for the endpoint. The security policy contains requirements that cannot be represented in a Windows Communication Foundation configuration. Look for a comment about the SecurityBindingElement parameters that are required in the configuration file that was generated. Create the correct binding element with code. The binding configuration that is in the configuration file is not secure. + + + Cannot find the correlation state for applying security to reply at the responder. + + + The callback address contains multiple context headers. There can be at most one context header in a callback address. + + + The client requested creation of a two way session. A one way session was created. The session cannot continue without as a one way session. This is likely caused by a binding mismatch. + + + The Infocard token created during channel intialization has expired. Please create a new channel to reacquire token. + + + You cannot Send messages on a channel after CloseOutputSession has been called. + + + The extensions cannot contain an Identity if one is supplied as a constructor argument. + + + Get default configured endpoint. + + + Multiple headers with name '{0}' and namespace '{1}' and role '{2}' found. + + + Calling IWsdlExportExtension.ExportContract twice with the same ContractDescription is not supported. + + + Unrecognized envelope version: {0}. + + + Starting Security ImportChannelBinding + + + VirtualPathExtension is not allowed to be removed. + + + The server at {0} rejected the session-establishment request. + + + The prefix '{0}' is not defined. + + + Header namespace mismatch in member {1} of type {0}. The header namespace found in the description is {2}. The element namespace deduced by the formatter is {3}. This mismatch can happen if the Namespace specified in XmlElementAttribute or XmlArrayAttribute does not match the namespace specified in the MessageHeaderAttribute or MessageHeaderArrayAttribute or the contract namespace. + + + The 'parameters' argument must be an array of one element. + + + Writing of a syndication feed completed. + + + The WS-AtomicTransaction transaction formatter could not read the registry value '{0}'. + + + Could not impersonate the anonymous user (error=0x{0:X}). + + + The binding (Name={0}, Namespace={1}) cannot be used to create a ChannelFactory or a ChannelListener because it appears to be missing a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement. + + + Context protocol was unable to parse the context header. Nodes disallowed by the context header schema were found inside the context header. + + + The scheme '{0}' used by binding {1} does not match the required scheme '{2}'. + + + The binding does not contain a ChannelDemuxerBindingElement. + + + The supporting token provided for parameters '{0}' did not endorse the primary signature. + + + The method '{1}' in type '{0}' is marked IsOneWay=true and declares one or more FaultContractAttributes. One-way methods cannot declare FaultContractAttributes. To fix it, change IsOneWay to false or remove the FaultContractAttributes. + + + Connecting to via {0} timed out after {1}. Connection attempts were made to {2} of {3} available addresses ({4}). Check the RemoteAddress of your channel and verify that the DNS records for this endpoint correspond to valid IP Addresses. The time allotted to this operation may have been a portion of a longer timeout. + + + None of the contract in metadata matched the contract specified. + + + Cannot locate operation {0} in Contract {1}. + + + The '{0}' binding with the '{1}' namespace is configured to issue cookie security context tokens. COM+ Integration services does not support cookie security context tokens. + + + A supporting token that satisfies parameters '{0}' and attachment mode '{1}' was not provided. + + + The '{0}' binding element does not support cloning. + + + No matching <service> tag was found. Default endpoints added. + + + The wsrm:{0} request message's wsa:ReplyTo address containing a URI which is not equivalent to the remote address. This is not supported. The reliable session was faulted. + + + There was no CLR type specified for parameter {0}, preventing the operation from being generated. + + + Unable to decrypt an encrypted data block. Please verify that the encryption algorithm and keys used by the sender and receiver match. + + + Object is read-only. + + + Required message property '{0}' is missing from the IncomingProperties collections of the received message. Ensure that when the receive context is enabled on the binding, the created channel ensures that '{0}' is present on all received messages. + + + Validity of message with id {0} has expired. + + + Reading of a syndication feed started. + + + A peer registration with the service address {0} already exists. + + + This collection holds response headers and cannot contain the specified request header '{0}'. + + + Specified value has invalid Control characters. + + + Syndication element with name '{0}' and namespace '{1}' is invalid. + + + The authentication schemes cannot be inherited from the host for binding '{0}'. No AuthenticationScheme was specified on the ServiceHost or in the virtual application in IIS. This may be resolved by enabling at least one authentication scheme for this virtual application in IIS, through the ServiceHost.Authentication.AuthenticationSchemes property or in the configuration at the <serviceAuthenticationManager> element. + + + Get ChannelEndpointElement. + + + Receive request on local address {0} timed out after {1}. The time allotted to this operation may have been a portion of a longer timeout. + + + The primary signature is not signed with a derived key. The binding's primary token parameter '{0}' requires key derivation. + + + Some of the binding elements in this binding were not used when building the ChannelFactory / ChannelListener. This may be have been caused by the binding elements being misordered. The recommended order for binding elements is: TransactionFlow, ReliableSession, Security, CompositeDuplex, OneWay, StreamSecurity, MessageEncoding, Transport. Note that the TransportBindingElement must be last. The following binding elements were not built: {0}. + + + The key size requirements for the '{0}' algorithm suite are not met by the '{1}' token which has key size of '{2}'. + + + The received transaction has an isolation level of '{0}' but the service is configured with a TransactionIsolationLevel of '{1}'. The isolation level for received transactions and the service must be the same. + + + No outgoing EndpointAddress is available to check the identity on a message to be sent. + + + Invalid RefreshInterval value of {0}; it must be greater than zero + + + The remote endpoint has responded to a {0} request message with an invalid reply. The reply has a wsa:RelatesTo header with an unexpected identifier. The reliable session cannot continue. + + + Generating manifest file {0} failed with {1}. + + + The SPN for the responding server at URI '{0}' could not be determined. + + + The Address, Binding and Contract keywords are required. + + + TransactedBatchingBehavior cannot be used when ReceiveContext is being used. + + + There is no pending asynchronous write on this stream. Ensure that there is pending write on the stream or verify that the implementation does not try to complete the same operation multiple times. + + + The action {0} is not supported by this endpoint. Only WS-ReliableMessaging February 2005 messages are processed by this endpoint. + + + An exception was thrown in a call to a policy export extension.\r\nExtension: {0}\r\nError: {1} + + + The RM destination received an acknowledgement message. The RM destination does not process acknowledgement messages. + + + The MetadataExchangeClient is sending a request for metadata. + + + The document formatter must be configured with a document. + + + Context channel received a message with context which does not match the current context cached at the channel. Ensure service does not change context after it was originally set or disable context management by setting channel property 'IContextManager.Enabled' to false. + + + The communication object, {0}, cannot be modified while it is in the {1} state. + + + Work item enqueued. + + + The identity check failed for the incoming message. The expected identity is '{0}' for the '{1}' target endpoint. + + + The context-id={0} (generation-id={1}) is already registered with SecurityContextSecurityTokenAuthenticator. + + + The identity of the security session renew message does not match the identity of the session token. + + + WMI PutInstance Class: {0} + + + Multi-dimensional SafeArray parameters cannot be used. + + + At least one security token in the message could not be validated. + + + Service behavior {0} requires that the binding associated with endpoint {1} listening on {2} supports the context protocol, because the contract associated with this endpoint may require a session. Currently configured binding for this endpoint does not support the context protocol. Please modify the binding to add support for the context protocol or modify the SessionMode on the contract to NotAllowed. + + + The transaction '{0}' was received for operation '{1}' from a transacted transport, such as MSMQ. + + + The client security session received a key renewal fault from the server. + + + The negotiation has not yet completed. + + + Cannot create a typed message from type '{0}'. The functionality only valid for types decorated with MessageContractAttribute. + + + The operation '{0}' could not be completed because the sessionful channel timed out waiting to receive a message. To increase the timeout, either set the receiveTimeout property on the binding in your configuration file, or set the ReceiveTimeout property on the Binding directly. + + + DeliveryRequirementsAttribute requires QueuedDelivery, but binding for the endpoint with contract '{0}' doesn't support it or isn't configured properly to support it. + + + The specified channel type {0} is not supported by this channel manager. + + + Cannot resolve KeyInfo in derived key token for resolving source token: KeyInfoClause '{0}'. + + + The authentication modes using Kerberos do not support the impersonation level '{0}'. Specify identification or impersonation. + + + Cannot load the X.509 certificate identity specified in the configuration. + + + The remote endpoint requested an address for acknowledgements that is not the same as the address for application messages. The channel could not be opened because this is not supported. Ensure the endpoint address used to create the channel is identical to the one the remote endpoint was set up with. + + + Value '{0}' specified for 'name' attribute of ContextMessageProperty is either null or has invalid character(s). Please ensure value of 'name' is within the allowed value space. + + + The item's authors were not serialized as part of serializing the feed in RSS 2.0 format. + + + An unrecognized token authenticator '{0}' was used for token processing. + + + The Peer resolver threw an exception. Please refer to InnerException. + + + failed to grant the PROCESS_DUP_HANDLE access right to the target service's account SID '{0}'. + + + The address of the security token issuer is not specified. An explicit issuer address must be specified in the binding for target '{0}' or the local issuer address must be configured in the credentials. + + + Either the client credential was invalid or there was an error collecting the client credentials by the SSPI. + + + Envelope Version '{0}' is not supported. + + + The ServiceCredentials cannot be added to the binding parameters because the binding parameters already contains a SecurityCredentialsManager '{0}'. If you are configuring custom credentials for the service, please first remove any existing ServiceCredentials from the behaviors collection before adding the custom credential. + + + The security header element '{0}' with the '{1}' id must be signed. + + + You have tried to create a channel to a service that does not support .Net Framing. It is possible that you are encountering an HTTP endpoint. + + + The synchronous OperationContract method '{0}' in type '{1}' was matched with the task-based asynchronous OperationContract method '{2}' because they have the same operation name '{3}'. When a synchronous OperationContract method is matched to a task-based asynchronous OperationContract method, any additional attributes must be declared on the synchronous OperationContract method. In this case, the task-based asynchronous OperationContract method '{2}' has one or more attributes of type '{4}'. To fix it, remove the '{4}' attribute or attributes from method '{2}'. Alternatively, changing the name of one of the methods will prevent matching. + + + Writing of a syndication feed completed. + + + A signed supporting token is not expected in the security header in this context. + + + The WSDL binding named {0} is not valid because an operation binding doesn't have a name specified. + + + At least one RedirectionLocation must be provided for this RedirectionType. + + + An error occurred while loading attribute '{0}' on parameter {1} of method '{2}' in type '{3}'. Please see InnerException for more details. + + + The security protocol cannot secure the outgoing message. + + + The '{0}' id occurred twice in the message that is supplied for verification. + + + HTTP response was received + + + From: {0}\nAppId: {1}\nClsId: {2}\nIid: {3}\nAction: {4}\nInstance Id: {5}\nManaged Thread Id: {6}\nUnmanaged Thread Id: {7}\nRequesting Identity: {8} + + + The callback contract of contract {0} either does not exist or does not define any operations. If this is not a duplex contract, consider using ChannelFactory instead of DuplexChannelFactory. + + + The '{0}' required message part was not signed. + + + The communication object, {0}, cannot be modified unless it is in the Created state. + + + The wsa:MessageId header must be present on a wsrm:{0} message. + + + Failure sending security session aborted fault to client. + + + At most one reference list is supported with default policy check. + + + The TransactionProtocol setting was not understood. A supported protocol must be specified. + + + There was an error while trying to deserialize parameter {0}:{1}. The InnerException message was '{2}'. Please see InnerException for more details. + + + An error was encountered when parsing the item's XML. Refer to the inner exception for more details. + + + An error was encountered when parsing the feed's XML. Refer to the inner exception for more details. + + + The operation: {0} is not valid while the object is in open state. + + + Receive timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + The framing content type size ({0}) exceeds the quota. + + + The server rejected the upgrade request. + + + A security token ('{0}', '{1}') was found outside the security header. The message may have been altered in transit. + + + The content type {0} of the message is not supported by the encoder. + + + Issuing cookie SecurityContextSecurityToken is not supported. + + + The COM+ string in the .svc file was formatted incorrectly. (The string is \"{0}\".) + + + Cannot find the X.509 certificate using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}'. + + + The specified key size {0} is invalid. The key size must be between {1} and {2}. + + + The binding ('{0}','{1}') for contract ('{2}','{3}') has been configured with an incompatible security version that does not support unattached references to EncryptedKeys. Use '{4}' or higher as the security version for the binding. + + + The UriTemplate '{0}' is not valid; the UriTemplate variable declaration '{1}' provides an empty default value to path variable '{2}'. Note that UriTemplate path variables cannot be bound to a null or empty value. See the documentation for UriTemplate for more details. + + + OperationFormatter encountered an invalid Message body. Expected to find node type 'Element' with name '{0}' and namespace '{1}'. Found node type '{2}' with name '{3}' and namespace '{4}' + + + At least one fault reason must be specified. + + + Found multiple X.509 certificates using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}' for target '{4}'. Provide a more specific find value. + + + The current channel does not support closing the output session as this channel does not implement ISessionChannel<IDuplexSession>. + + + No session token was present in the message. + + + At least one operation on the '{0}' contract is configured with the TransactionFlowAttribute attribute set to Mandatory but the channel's binding '{1}' is not configured with a TransactionFlowBindingElement. The TransactionFlowAttribute attribute set to Mandatory cannot be used without a TransactionFlowBindingElement. + + + MessageBuffer is closed. + + + The binding associated with ServiceMetadataBehavior or ServiceDebugBehavior is not supported. The inner binding elements used by this binding must support IReplyChannel. Verify that HttpGetBinding/HttpsGetBinding (on ServiceMetadataBehavior) and HttpHelpPageBinding/HttpsHelpPageBinding (on ServiceDebugBehavior) are supported. + + + The space needed for encoding ({0} bytes) exceeds the message frame offset. + + + An incoming channel was disposed because there was an error while attempting to open it. + + + Failed to load type library + + + Cannot make a call on this channel because a call to Open() is in progress. + + + The ReplayWindow and ClockSkew cannot be the maximum possible value when replay detection is enabled. + + + The issued token is of unexpected type '{0}'. Expected token type '{1}'. + + + Bearer Key Type is not supported with WSFederationHttpBinding. Please use WS2007FederationHttpBinding. + + + Unexpected encrypted element in security header. + + + The HTTP request was forbidden with client authentication scheme '{0}'. + + + WebSocket object cannot be accessed directly. + + + The '{0}' contains multiple '{1}' objects, which is invalid. At most one '{1}' should be specified. + + + The server challenged this request and streamed requests cannot be resubmitted. To enable HTTP server challenges, set your TransferMode to Buffered or StreamedResponse. + + + The type {0} is not a supported result type. + + + The RM source received multiple CreateSequenceResponse messages with different sequence identifiers over the same session. + + + The socket listener is not listening. + + + SecurityVersion.WSSecurityJan2004 does not support header decryption. Use SecurityVersion.WsSecurity11 and above or use transport security to encrypt the full message. + + + The required binding keyword was not specified or is not valid. + + + The HTTP request context was aborted while writing the response. As a result, the response may not have been completely written to the network. This can be remedied by gracefully closing the request context rather than aborting it. + + + Service security negotiation completed. + + + An internal error has occurred. The XML buffer is not in the correct state to perform the operation. + + + The method '{0}' could not be found. Ensure that the correct method name is specified. + + + cdata '{0}' + + + The client certificate is not provided. Specify a client certificate in ClientCredentials. + + + The message cannot be deserialized into MessageContract type {0} since it does not have a default (parameterless) constructor. + + + UserNamePasswordValidationMode.MembershipProvider requires a MembershipProvider. Specify the MembershipProvider property. + + + Header namespace mismatch in operation {0} from contract {1}:{2}. The header namespace found in the description is {3}. The element namespace deduced by the formatter is {4}. This mismatch can happen if the Namespace specified in XmlElementAttribute or XmlArrayAttribute does not match the namespace specified in the MessageHeaderAttribute or MessageHeaderArrayAttribute or the contract namespace. + + + The maximum message size quota for outgoing messages ({0}) has been exceeded. + + + The requestContext has been aborted. + + + TransactedBatchingBehavior validation failed. Service or client cannot be started. Transacted batching is not supported for session contracts. Remove transacted batching behavior from the endpoint or define a non-sessionful contract. + + + Generating message contract since the wrapper namespace ({1}) of message {0} does not match the default value ({2}) + + + The value '{1}' is not supported in this context for the binding property '{0}'. + + + The username cannot be empty. + + + The value '{0}' is not valid for the Location property. The Location property must be a valid absolute or relative URI. + + + The authenticate method in the ServiceAuthenticationManager returned null. If you do not want to return any authorization policies in the collection then return an empty ReadOnlyCollection instead. + + + Cannot access directory {0}. + + + Creation time must be before expiration time. + + + WebSocket upgrade request failed. The value of header '{0}' is '{1}'. The expected value is '{2}'. + + + Open '{0}'. + + + A base address cannot contain a Uri fragment. + + + XmlSerializer attribute {0} is not valid in {1}. Only SoapElement attribute is supported. + + + This CreateChannel overload cannot be called on this instance of DuplexChannelFactory, as the InstanceContext provided to the DuplexChannelFactory does not contain a valid UserObject. + + + A pending security session was activated by the server. + + + ChannelDispatcher requirements cannot be met by the IChannelListener for Binding '{0}' since the contract requires support for one of these channel types '{1}' but the binding only supports these channel types '{2}'. + + + SpnegoTokenAuthenticator completed SSPI negotiation. + + + The Identity check failed for the outgoing message. The remote endpoint did not provide a domain name system (DNS) claim and therefore did not satisfied DNS identity '{0}'. This may be caused by lack of DNS or CN name in the remote endpoint X.509 certificate's distinguished name. + + + The interface with IID {0} has no methods configured in the COM+ catalog and cannot be exposed as a web service. + + + Cannot create the '{0}' symmetric algorithm from the token. + + + The remote endpoint sent an unexpected request to create a sequence. Clients do not process requests for a sequence. + + + The number of parameters in the request did not match the number supported by the method. Ensure that the correct number of parameters are specified. + + + A registration service address could not be created from MSDTC whereabouts information. + + + The pending security session was closed by the server. + + + MessageVersion '{0}' not supported by MTOM encoder. + + + The service operation '{0}' that belongs to the contract with the '{1}' name and the '{2}' namespace does not allow impersonation. + + + Listen at '{0}'. + + + Failed to receive a message over TCP channel + + + value must be >= {0} and <= {1}. + + + An error occurred while transmitting data. + + + This operation cannot be done after processing is started. + + + An exception was thrown in a call to a WSDL export extension: {0}\r\n contract: {1} + + + The ContractDescription argument to ImportEndpoints must be contained in the KnownContracts collection. + + + Setting minFreeMemoryPercentageToActivateService requires full trust privilege. Please change the application's trust level or remove this setting from the configuration file. + + + An exception was thrown in a call to a policy import extension.\r\nExtension: {0}\r\nError: {1} + + + Service + + + The caller was not authenticated by the service. + + + The issuer must provide key entropy in key entropy mode '{0}'. + + + The receive context, {0}, is in the {1} state. Receive contexts cannot be used for sending delayed acks unless they are in the Received state. + + + The value of wsrm:Identifier is not a known Sequence identifier. + + + Outgoing request message for operation '{0}' specified Action='{1}', but contract for that operation specifies Action='{2}'. The Action specified in the Message must match the Action in the contract, or the operation contract must specify Action='*'. + + + Reading of a syndication item completed. + + + The Rss20Serializer does not support RSS version '{0}'. + + + The renew security session message does not have the session token as a supporting token. + + + Transport is listening at base URI. + + + The '{0}' operation timed out after '{1}'. The time allotted to this operation may have been a portion of a longer timeout. + + + The token Serializer cannot serialize '{0}'. If this is a custom type you must supply a custom serializer. + + + A performance counter failed to load. Some performance counters will not be available. + + + AppId: {0} + + + {0} ({1}) + + + Via '{0}' is too long to be processed by the remote host. See the server logs for more details. + + + There was an error in deserializing one of the headers in message {0}. Please see InnerException for more details. + + + The security algorithm suite was not specified on '{0}'. + + + Cound not load type '{0}' from the assemblies in current AppDomain. + + + OperationDescription's Name must be a non-empty string. + + + An error occurred communicating with the distributed transaction manager. + + + The binding ('{0}', '{1}') is configured with a security token parameter '{2}' that has an incompatible security token inclusion mode '{3}'. Specify an alternate security token inclusion mode (for example, '{4}'). + + + Method '{0}' in class '{1}' has bad parameter metadata: a pass-by-value parameter is marked with the 'out' parameter mode. + + + The HostName portion of an endpoint address cannot be normalized. + + + Client security session received session aborted fault from server. + + + The security policy expert failed. The provided transport token assertion of type '{0}' did not create a transport token assertion to include the sp:TransportBinding security policy assertion. + + + A DispatchOperation (or ClientOperation) can only be added to its parent DispatchRuntime (or ClientRuntime). + + + Cannot add a ChannelDispatcher to more than one ServiceHost. + + + The Type of object passed as parameter '{0}' is not derived from {1}. Ensure that the type of object passed is either of type {1} or derived from {1}. + + + A registration already exists for URI '{0}'. + + + Cannot resolve KeyInfo for unwrapping key: KeyInfo '{0}', available tokens '{1}'. + + + Seek is not supported on this stream. + + + The one-way operation returned a non-null message with Action='{0}'. + + + The service implementation object was not initialized or is not available. + + + The UriTemplate '{0}' is not valid; each portion of the query string must be of the form 'name' or of the form 'name=value', where name is a simple literal. See the documentation for UriTemplate for more details. + + + The MetadataResolver cannot recieve an empty contracts argument to the Resolve or BeginResolve methods. You must supply at least one ContractDescription. + + + More than one 'To' header specified in a message secured by Transport Security. + + + The processing of the WSDL parameter failed. Error: {0} + + + The TransportBindingElement of type '{0}' in this CustomBinding returned a null or empty string for the Scheme. TransportBindingElement's Scheme must be a non-empty string. + + + An internal error has occurred. Item already exists. + + + Could not find XmlSerializer for type {0}. + + + The framing via size ({0}) exceeds the quota. + + + Open ChannelFactory. Contract type: '{0}'. + + + Could not find default endpoint element that references contract '{0}' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element. + + + The IEndpointBehavior '{0}' cannot be used on the server side; this behavior can only be applied to clients. + + + The IssuanceTokenProvider has started a new security negotiation. + + + ... stream ... + + + AsymmetricSecurityBindingElement cannot build a channel or listener factory. The InitiatorTokenParameters property is required but not set. Binding element configuration: {0} + + + Missing Quote in value {0}. + + + The callback passed to operation '{0}' was called more than once. This indicates an internal error in the implementation of that operation. + + + The HttpGetEnabled property of ServiceMetadataBehavior is set to true and the HttpGetUrl property is a relative address, but there is no http base address. Either supply an http base address or set HttpGetUrl to an absolute address. + + + The communication object, {0}, has overridden the virtual function {1} but it does not call version defined in the base class. + + + Unexpected end of file. + + + Parameter 'baseAddress' must an absolute uri. + + + The incoming message was signed with a token which was different from what used to encrypt the body. This was not expected. + + + There was an error while trying to serialize parameter {0}:{1}. The InnerException message was '{2}'. Please see InnerException for more details. + + + The opening handshake properties associated with the current WebSocket connection are not available. The most likely cause is that the property '{0}' on the '{1}' object returned from the custom '{2}' is not set. + + + The socket connection has been disposed. + + + The service type provided could not be loaded as a service because it does not have a default (parameter-less) constructor. To fix the problem, add a default constructor to the type, or pass an instance of the type to the host. + + + The sequence has been terminated by the remote endpoint. {0} The reliable session was faulted. + + + The security settings lifetime manager was not specified on '{0}'. + + + There was a validation error on a schema generated during export:\r\n Source: {0}\r\n Line: {1} Column: {2}\r\n Validation Error: {3} + + + The transaction identifier element in the registration header is invalid + + + In a contract inheritance hierarchy, the ServiceContract's CallbackContract must be a subtype of the CallbackContracts of all of the CallbackContracts of the ServiceContracts inherited by the original ServiceContract, Types {0} and {1} violate this rule. + + + The Binding with name {0} failed validation because it contains a BindingElement with type {1} which is not supported in partial trust. Consider using BasicHttpBinding or WSHttpBinding, or hosting your application in a full-trust environment. + + + The value of argument '{0}' ({1}) is invalid for Enum type '{2}'. + + + The token requirement has an unexpected type '{1}' for property '{0}'. The expected property type is '{2}'. + + + The request message has FaultTo='{0}' but IContextChannel.LocalAddress is '{1}'. When ManualAddressing is false, these values must be the same, null, or EndpointAddress.AnonymousAddress. Enable ManualAddressing or avoid setting FaultTo on the message. + + + A property with the name '{0}' already exists. + + + Switched threads while processing a message. + + + The length ('{0}' bytes) of the derived key's Label exceeds the maximum length ('{1}' bytes) allowed. + + + The KeyInfo value was not found in the encrypted item to find the decrypting token. + + + The type for the '{0}' parameter in '{1}' within the namespace '{2}' cannot not be resolved. + + + Addressing Version '{0}' does not support adding WS-Addressing headers. + + + Webhost couldn't compile service + + + Activating message received. + + + The client was unable to process the callback request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from CallbackBehaviorAttribute or from the <clientDebug> configuration behavior) on the client in order to send the exception information back to the server, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the client trace logs. + + + This operation is not supported because the collection is read-only. + + + Negotiation state already exists for context '{0}'. + + + Extension element not associated with an extension collection. + + + Transport secured messages should have the 'To' header specified. + + + The HTTP response message should not be null. Please ensure your '{0}' instance returns a non-null '{1}' object. + + + The transaction header '{0}' within the namespace '{1}' was not understood by the service. The client and the service must be configured to use the same protocol and protocol version ('{2}'). + + + An unrecognized element was encountered in the XML during deserialization which was ignored. + + + Content type '{0}' is too long to be processed by the remote host. See the server logs for more details. + + + The StreamUpgradeProvider {0} does not support the specified ChannelBindingKind ({1}). + + + Instance of MessagePartDescription Name='{0}' Namespace='{1}' cannot be used in this context: required 'Type' property was not set. + + + The remote server did not satisfy the mutual authentication requirement. + + + The value cannot be accessed because it has not yet been fully decoded. + + + The OLE Transactions propagation token received in the message could not be used to unmarshal a transaction. It may be invalid or corrupt. + + + A previous attempt to import this {0} already failed. + + + The ConfigurationName property must be a non-empty string. + + + The remote endpoint has errantly sent a TerminateSequence protocol message before the sequence finished. + + + Stream Security is required at {0}, but no security context was negotiated. This is likely caused by the remote endpoint missing a StreamSecurityBindingElement from its binding. + + + Unrecognized supporting token '{0}' was encountered. + + + ServiceDurableInstance '{0}' deleted from persistence store. + + + MessageVersion '{0}' is not supported in this scenario. Only MessageVersion '{1}' is supported. + + + Registered relativeAddress '{0}' in configuration file is not a valid one. Possible causes could be : You specified an empty addreess or an absolute address (i.e., starting with '/' or '\\'), or the address contains invalid character[s]. The supported relativeAddress formats are \"[folder/]filename\" or \"~/[folder/]filename\". + + + The binary encoder session information exceeded the maximum size quota ({0}). To increase this quota, use the MaxSessionSize property on the BinaryMessageEncodingBindingElement. + + + The RequestSecurityTokenResponse has multiple RequestedProofToken elements. + + + The name of the extension element must be specified. + + + The item created a null category. + + + end element '{0}' from namespace '{1}' + + + When multiple endpoints on a service share the same ListenUri, those endpoints must all have the same Identity in their EndpointAddress. The endpoints at ListenUri '{0}' do not meet this criteria. + + + When using the IAsyncResult design pattern, the End method cannot be decorated with OperationContractAttribute. Only the corresponding Begin method can be decorated with OperationContractAttribute; that attribute will apply to the Begin-End pair of methods. Method '{0}' in type '{1}' violates this. + + + The Scheme cannot be computed for this binding because this CustomBinding lacks a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement. + + + Security impersonation failed at the server. + + + No duplex session listener was listening at {0}. This could be due to an incorrect via set on the client or a binding mismatch. + + + No service available to handle this action + + + Writing of a categories document completed. + + + Writing of a syndication item completed. + + + Shared listener connection: '{0}'. + + + Multiple filters matched. + + + CLSID {0} is not allowed. + + + Fault Sent for InstanceId {0}. + + + Unable to finish reading Base64 data as the given buffer quota has been exceeded. Buffer quota: {0}. Consider increasing the MaxReceivedMessageSize quota on the TransportBindingElement. Please note that a very high value for MaxReceivedMessageSize will result in buffering a large message and might open the system to DOS attacks. + + + The ReleaseInstanceMode property on OperationBehaviorAttribute can only be set on non-callback operations. Method '{0}' violates this. + + + The UriTemplate '{0}' is not valid; the query string cannot end with '&amp;'. See the documentation for UriTemplate for more details. + + + Security negotiation failure because an incorrect Context attribute specified in RequestSecurityToken/RequestSecurityTokenResponse from the other party. + + + The socket connection was aborted by your local machine. This could be caused by a channel Abort(), or a transmission error from another thread using this socket. + + + The RequestSecurityTokenResponseCollection does not contain an authenticator. + + + The 'Via' property on the message is set to Anonymous Uri '{0}'. Please set the 'Via' property to a non-anonymous address as message cannot be addressed to anonymous Uri on server side composite duplex channels. + + + The function '{0}' is not implemented. + + + The channel is configured to use interactive initializer '{0}', but the channel was Opened without calling DisplayInitializationUI. Call DisplayInitializationUI before calling Open or other methods on this channel. + + + The RequestSecurityToken must specify a RenewTarget. + + + The user specified maximum retry count for a particular message has been exceeded. Because of this the reliable session cannot continue. + + + An encrypted header must have an id. + + + The '{0}' list created by the Func '{1}' is invalid because it contains one or more null items. + + + ContractDescription's Name must be a non-empty string. + + + Received reply over request channel + + + No primary signature available for supporting token signature verification. + + + UriTemplateTable does not support '{0}' and '{1}' since they are not equivalent, but cannot be disambiguated because they have equivalent paths and the same common literal values for the query string. See the documentation for UriTemplateTable for more detail. + + + The security token manager cannot create a token provider for requirement '{0}'. + + + Metadata contains a reference that cannot be resolved: '{0}'. + + + The message with Action '{0}' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None). + + + Key derivation algorithm '{0}' is not supported. + + + LoadConfigurationSection requires that the Description property be initialized. Provide a valid ServiceDescription in the CreateDescription method. + + + The token provider '{0}' was unable to renew the security token. + + + ApplyConfiguration requires that the Endpoint property be initialized. Either provide a valid ServiceEndpoint in the CreateDescription method or override the ApplyConfiguration method to provide an alternative implementation. + + + The ClaimType '{0}' is not recognized. Expected ClaimType '{1}'. + + + A failure occurred while writing to the security audit log. + + + The receive context, {0}, is in an unsupported state '{1}'. This indicates an internal error in the implementation of that receive context. + + + The endpoint at {0} processes duplex sessions. The create sequence request must contain an offer for a return sequence. This is likely caused by a binding mismatch. + + + The server security session sent a close response to the client. + + + This message cannot support the operation because it has been copied. + + + failed to establish the data connection because of an I/O error + + + Ignoring invalid part in wsdl:message name='{0}' from targetNamespace='{1}'. Reason: {2} + + + This operation is only valid after the transport manager has been opened. + + + The receive context, {0}, cannot be used for sending delayed acks because it is in the Faulted state. + + + Cannot find a token authenticator for the '{0}' token type. Tokens of that type cannot be accepted according to current security settings. + + + MaxOutboundConnectionsPerEndpoint quota ({0}) has been reached, so the connection was closed and not reused by the listener. + + + There is no transaction in the context of the operation. + + + The CLSID specified in the service file does not have a service element in a configuration file. (The CLSID is {0}.) + + + The UriTemplate '{0}' is not valid; the UriTemplate last path segment '{1}' provides a default value to final star variable '{2}'. Note that UriTemplate doesn't support default values to final star variable. See the documentation for UriTemplate for more details. + + + Identity check failed for incoming message. The expected DNS identity of the remote endpoint was '{0}' but the remote endpoint provided DNS claim '{1}'. If this is a legitimate remote endpoint, you can fix the problem by explicitly specifying DNS identity '{1}' as the Identity property of EndpointAddress when creating channel proxy. + + + The contract operation '{0}' requires Windows identity for automatic impersonation. A Windows identity that represents the caller is not provided by binding ('{1}','{2}') for contract ('{3}','{4}'. + + + An invalid create sequence message was received. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Private.Uri.SR.resw b/obj/x86/Debug/FxResources.System.Private.Uri.SR.resw new file mode 100644 index 0000000..f7b90b0 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.Uri.SR.resw @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + A derived type '{0}' is responsible for parsing this Uri instance. The base implementation must not be used. + + + An invalid Unicode character by IDN standards was specified in the host. + + + A URI scheme name '{0}' already has a registered custom parser. + + + Fail: {0} + + + IDN labels must be between 1 and 63 characters long. + + + Invalid URI: Invalid port specified. + + + ---- Assert Short Message ---- + + + Invalid URI: The Uri scheme is too long. + + + The process cannot access the file because it is being used by another process. + + + Could not find a part of the path '{0}'. + + + An item with the same key has already been added. + + + Invalid URI: The hostname could not be parsed. + + + Unable to find the specified file. + + + Specified file length was too large for the file system. + + + The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. + + + Assertion failed. + + + Invalid URI: The URI is empty. + + + A relative URI cannot be created because the 'uriString' parameter represents an absolute URI. + + + Insufficient memory to continue the execution of the program. + + + ---- DEBUG ASSERTION FAILED ---- + + + Decoded string is not a valid IDN name. + + + Invalid URI: The Authority/Host could not be parsed. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Access to the path '{0}' is denied. + + + This operation is not supported for a relative URI. + + + The URI parser instance passed into 'uriParser' parameter is already registered with the scheme name '{0}'. + + + Could not find a part of the path. + + + ---- Assert Long Message ---- + + + UriComponents.SerializationInfoString must not be combined with other UriComponents. + + + Non-negative number required. + + + Invalid URI: The URI scheme is not valid. + + + The file '{0}' already exists. + + + Invalid URI: There is an invalid sequence in the string. + + + String contains invalid Unicode code points. + + + Invalid URI: The Authority/Host cannot end with a backslash character ('\\'). + + + Invalid URI: A Dos path must be rooted, for example, 'c:\\'. + + + The value '{0}' passed for the UriKind parameter is invalid. + + + Invalid URI: The Uri string is too long. + + + Invalid URI: The username:password construct is badly formed. + + + Invalid URI: The format of the URI could not be determined. + + + Unknown error '{0}'. + + + Invalid IDN encoded string. + + + Index and count must refer to a location within the buffer. + + + Could not find file '{0}'. + + + A derived type '{0}' has reported an invalid value for the Uri port '{1}'. + + + Invalid Unicode code point found at index {0}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Reflection.DispatchProxy.SR.resw b/obj/x86/Debug/FxResources.System.Reflection.DispatchProxy.SR.resw new file mode 100644 index 0000000..c030189 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.DispatchProxy.SR.resw @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The base type '{0}' cannot be abstract. + + + The type '{0}' must be an interface, not a class. + + + The base type '{0}' must have a public parameterless constructor. + + + The base type '{0}' cannot be sealed. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Reflection.Metadata.SR.resw b/obj/x86/Debug/FxResources.System.Reflection.Metadata.SR.resw new file mode 100644 index 0000000..76a3bfb --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.Metadata.SR.resw @@ -0,0 +1,423 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Invalid signature. + + + Stream length minus starting position is too large to hold a PEImage. + + + Invalid coded index. + + + Unexpected handle kind: {0}. + + + PE image not available. + + + Invalid directory relative virtual address. + + + Base reader must be a full metadata reader. + + + Invalid document name. + + + Unknown section name: '{0}'. + + + {0} must not return null. + + + Not enough space for stream header name. + + + Illegal tables in compressed metadata stream. + + + Unexpected CodeView data signature value. + + + Invalid directory size. + + + Expected signature header for '{0}', but found '{1}' (0x{2:x2}). + + + Specified label doesn't belong to the current builder. + + + Unexpected op-code: {0}. + + + The operation is not valid on this builder as it has been linked with another one. + + + Read out of bounds. + + + Little-endian architecture required. + + + Row ID or heap offset is too large. + + + Specified handle is not a valid metadata heap handle. + + + Metadata table header too small. + + + Value must be multiple of {0}. + + + The value of field Characteristics in debug directory entry must be zero. + + + Unknown PE Magic value. + + + Missing mscorlib reference in AssemblyRef table. + + + Metadata tables too small. + + + Table row count space to small. + + + Can't get a heap offset for a virtual heap handle + + + Metadata table 0x{0:x2} not sorted. + + + Specified readers must be minimal delta metadata readers. + + + Invalid compressed integer. + + + Write out of bounds. + + + The limit on the size of {0} heap has been exceeded. + + + Unexpected SignatureTypeCode: (0x{0:x}). + + + Invalid Metadata stream format. + + + Invalid number of rows of Module table: {0}. + + + Not enough space for Blob stream. + + + Not enough space for version string. + + + Unexpected stream end. + + + Missing data directory. + + + Negative byte count or offset. + + + Invalid handle. + + + Invalid row count: {0} + + + Invalid PE signature. + + + Signature provider returned invalid signature. + + + Not enough space for String stream. + + + Specified handle is not a TypeDefinitionHandle, TypeRefererenceHandle, or TypeSpecificationHandle. + + + Invalid number of sections in declared in PE header. + + + Unable to read metadata file. + + + Sequence point value is out of range. + + + Stream must support read and seek operations. + + + The path must be padded with NUL characters. + + + Can't add vararg parameters to non-vararg signature. + + + Signature type sequence must have at least one element. + + + Invalid COR header size. + + + Metadata image doesn't represent an assembly. + + + Specified handle is not a valid metadata table or UserString heap handle. + + + Invalid entry point token: 0x{0:8X} + + + Invalid relative virtual address (RVA): 0x{0:X8} + + + Expected non-empty list. + + + The size of the builder returned by {0}.{1} is smaller than requested. + + + Invalid import definition kind: {0}. + + + Invalid constant value. + + + Hash must be at least {0}B long. + + + There are too many subnamespaces. + + + Invalid method header: 0x{0:X2} + + + Invalid method header: 0x{0:X2} 0x{1:X2} + + + The MetadataStringDecoder instance used to instantiate the Metadata reader must have a UTF8 encoding. + + + Value is too large. + + + Stream header too small. + + + Image is either too small or contains an invalid byte offset or count. + + + Value of type '{0}' is not a constant. + + + Expected signature header for '{0}' or '{1}', but found '{2}' (0x{3:x2}). + + + Invalid number of rows of Assembly table: {0}. + + + Image is too small. + + + Invalid token. + + + The Debug directory was not of type CodeView. + + + Unknown tables: 0x{0:x16}. + + + Blob is to large. + + + Invalid section name + + + Section too small. + + + Invalid metadata section span. + + + Not enough space for Metadata stream. + + + Handle belongs to a future generation + + + Expected list of size {0}. + + + Invalid type size. + + + Can't emit a branch, the current encoder not created with a branch builder. + + + Invalid SEH header: 0x{0:X2} + + + Invalid local signature token: 0x{0:X8} + + + Specified handle is not a TypeDefinitionHandle or TypeRefererenceHandle. + + + EnCMap table not sorted or has missing records. + + + Invalid COR20 header signature. + + + Builder must be aligned to 4 byte boundary. + + + Unknown file format. + + + Invalid serialized string. + + + Metadata header too small. + + + PE image does not have metadata. + + + Standalone debug metadata image doesn't contain Module table. + + + Not enough space for GUID stream. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.Extensions.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.Extensions.SR.resw new file mode 100644 index 0000000..4675a07 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Extensions.SR.resw @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Value must be positive. + + + The process cannot access the file because it is being used by another process. + + + Could not find a part of the path '{0}'. + + + An item with the same key has already been added. + + + Paths that begin with \\\\?\\GlobalRoot are internal to the kernel and should not be opened by managed applications. + + + Second path fragment must not be a drive or UNC name. + + + '{0}' must be greater than zero. + + + The path is not of a legal form. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + Unable to find the specified file. + + + The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. + + + FrameworkName version component is missing. + + + The specified length exceeds the maximum value of {0}. + + + The UNC path should be of the form \\\\server\\share. + + + Access to the path is denied. + + + FrameworkName cannot have less than two components or more than three components. + + + The process cannot access the file '{0}' because it is being used by another process. + + + The given path's format is not supported. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Access to the path '{0}' is denied. + + + Search pattern cannot contain \"..\" to move up directories and can be contained only internally in file/directory names, as in \"a..b\". + + + Could not find a part of the path. + + + FrameworkName is invalid. + + + URI formats are not supported. + + + Non-negative number required. + + + '{0}' cannot be greater than {1}. + + + Path cannot be the empty string or all whitespace. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Illegal characters in path. + + + Unknown error '{0}'. + + + FrameworkName version component is invalid. + + + Could not find file '{0}'. + + + StartIndex cannot be less than zero. + + + The parameter '{0}' cannot be an empty string. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.InteropServices.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.SR.resw new file mode 100644 index 0000000..22697cb --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.SR.resw @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Non-negative number required. + + + Handle collector count overflows or underflows. + + + maximumThreshold cannot be less than initialThreshold. + + + maximumThreshold cannot be less than initialThreshold. + + + Non-negative number required. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.Numerics.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.Numerics.SR.resw new file mode 100644 index 0000000..fc29f7b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Numerics.SR.resw @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The parameter must be a BigInteger. + + + With the AllowHexSpecifier bit set in the enum bit field, the only other valid bits that can be combined into the enum value must be a subset of those in HexNumber. + + + The number must be greater than or equal to zero. + + + BigInteger cannot represent infinity. + + + Value was either too large or too small for a UInt32. + + + Value was either too large or too small for a UInt64. + + + Format specifier was invalid. + + + An undefined NumberStyles value is being used. + + + The value is too large to be represented by this format specifier. + + + The value is not a number. + + + The value could not be parsed. + + + Value was either too large or too small for an Int64. + + + Value was either too large or too small for an Int32. + + + Value was either too large or too small for a Decimal. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.Serialization.Primitives.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.Serialization.Primitives.SR.resw new file mode 100644 index 0000000..7b85d39 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Serialization.Primitives.SR.resw @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Property 'Order' in DataMemberAttribute attribute cannot be a negative number. + + + Serialization error. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.SR.resw new file mode 100644 index 0000000..f71a0f1 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.SR.resw @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This stream does not support seeking. + + + UnmanagedMemoryStream length must be non-negative and less than 2^63 - 1 - baseAddress. + + + The specified array does not contain the specified number of elements starting at the specified offset. + + + Empty. + + + This Windows Runtime stream is backed by a .NET Stream; its size cannot be set to a value that is larger than 2^63 - 1 bytes. (2^63 - 1 = 0x7FFFFFFFFFFFFFFF = Int64.MaxValue). + + + The UnmanagedMemoryStream capacity would wrap around the high end of the address space. + + + The Windows Runtime stream that underlies this System.IO.Stream object has invoked an IO completion callback and specified null for the IAsyncInfo instance that describes the completed IO operation. This behavior is not supported because results cannot be retrieved from a null operation. Either the underlying Windows Runtime stream has a faulty implementation, or you are using a Windows Runtime object in an unsupported runtime environment. + + + This stream does not support the Position property because it is not seekable. + + + The specified object cannot be converted to a System.IO.Stream instance because it is not a Windows Runtime stream. In order to convert an object to a Stream instance it must implement at least one of the following 3 Windows Runtime stream interfaces: IInputStream, IOutputStream, IRandomAccessStream. + + + Stream does not support writing. + + + This AsyncResult or Task corresponds to a different asynchronous operation ID than the one that invoked the completion callback. + + + The asynchronous operation could not be completed. + + + The specified stream position is beyond the end of the stream. + + + This IRandomAccessStream does not support the {0} method because it requires cloning and this stream does not support cloning. + + + The specified underlying Task is not started. Task instances must be run immediately upon creation. + + + Cannot convert the specified Windows Runtime stream to a managed System.IO.Stream object without a buffer because this Windows Runtime stream has been previously converted to a managed Stream object with a buffer. Ensure that the 'bufferSize' argument matches the existing buffer or use the '{0}'-overload without the 'bufferSize' argument to convert the specified Windows Runtime stream to a Stream object with the same buffer size as previously. + + + Cannot use the specified Stream as a Windows Runtime IRandomAccessStream because this Stream does not support seeking. + + + '{0}' must be greater than zero. + + + The Task provider delegate specified for this IAsyncInfo instance returned a Task object that was not started. Task instances must be run immediately upon creation. + + + The task provider delegate used to create this asynchronous operation returned null, but a valid Task object was expected. + + + A callback for the same asynchronous IO operation was invoked more than once. + + + Stream does not support seeking. + + + Cannot convert the specified Windows Runtime stream to a managed System.IO.Stream object with the specified buffer size because this Windows Runtime stream has been previously converted to a managed Stream object with a different buffer size. Ensure that the 'bufferSize' argument matches the existing buffer or use the '{0}'-overload without the 'bufferSize' argument to convert the specified Windows Runtime stream to a Stream object with the same buffer size as previously. + + + Cannot set the length of a stream to a negative value. + + + An IO error occurred in the Windows runtime system. + + + A native library routine was not found: {0}. + + + Cannot use the specified Stream as a Windows Runtime IInputStream because this Stream is not readable. + + + The specified Windows Runtime stream does not support reading nor writing. Windows Runtime streams with such capabilities cannot be converted to managed Stream objects. Use a Windows Runtime stream that can support reading, writing or both. + + + The specified relative path may not consist of white spaces only + + + An error has occurred. + + + Offset and length were greater than the size of the SafeBuffer. + + + Enum value was out of legal range. + + + An attempt was made to move the position before the beginning of the stream. + + + Cannot set the size of this stream because it cannot be written to. + + + Cannot use the specified Stream as a Windows Runtime IOutputStream because this Stream is not writable. + + + The specified useful data length exceeds the capacity of this buffer. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Stream length must be non-negative and less than 2^31 - 1 - origin. + + + Length must be non-negative. + + + The specified source buffer does not contain the specified number of elements starting at the specified offset. + + + Cannot convert the specified Stream object to a Windows Runtime stream because it does not have sufficient capabilities. In order to convert a System.IO.Stream instance to a Windows Runtime stream at least one of the properties CanRead, CanWrite, CanSeek must return TRUE; however, none of these properties returns TRUE for the specified Stream. + + + Send is not supported in the Windows Runtime SynchronizationContext + + + This Stream is backed by a Windows Runtime stream with a length that exceeds 2^63 - 1 bytes. Operations related to the stream's length or position cannot be performed on streams when the length exceeds 2^63 - 1 bytes. (2^63 - 1 = 0x7FFFFFFFFFFFFFFF = Int64.MaxValue = approx. 8000 PetaBytes.) + + + The specified index is out of bounds of the specified array. + + + The specified buffer index is not within the buffer capacity. + + + Cannot seek to an absolute stream position that is larger than 2^63 - 1 bytes. (2^63 - 1 = 0x7FFFFFFFFFFFFFFF = Int64.MaxValue). + + + This stream does not support the Length property because it is not seekable. + + + MemoryStream's internal buffer cannot be accessed. + + + The requested invocation is not permitted because this IAsyncInfo instance has already been closed. + + + Not enough space available in the buffer. + + + The state of this object does not permit invoking this method. + + + Cannot call GetResults on this asynchronous info because the underlying operation has not completed. + + + Non-negative number required. + + + This stream does not support read access. + + + Stream was too long. + + + Cannot access a closed Stream. + + + Cannot seek to an absolute stream position that is negative. + + + The method cannot be called twice on the same instance. + + + Stream does not support reading. + + + The requested operation cannot be performed because this stream has already been disposed. + + + The length cannot be greater than the capacity. + + + The specified buffer capacity is not sufficient to hold data of the specified length. + + + The specified value is not a valid member of the InputStreamOptions enumeration. + + + Cannot write to a BufferedStream while the read buffer is not empty if the underlying stream is not seekable. Ensure that the stream underlying this BufferedStream can seek or avoid interleaving read and write operations on this BufferedStream. + + + The buffer size for a Windows Runtime stream adapter may not be negative. Use a positive buffer size or 0 to disable buffering. + + + The specified Windows Runtime stream supports the IRandomAccessStream interface and its CanWrite property returns TRUE, however it does not implement the IOutputStream interface. Windows Runtime streams with such inconsistent capabilities cannot be converted to managed Stream objects. IRandomAccessStream instances whose CanWrite property returns TRUE must implement the IOutputStream interface. + + + The specified state transition is illegal for the current state of this object. + + + The specified AsyncResult does not correspond to any outstanding IO operation. + + + Unable to expand length of this stream beyond its capacity. + + + This operation is not supported for an UnmanagedMemoryStream created from a SafeBuffer. + + + The specified destination buffer is not large enough to hold the specified number of bytes starting at the specified offset. + + + The 'Completed' handler delegate cannot be set more than once, but this handler has already been set. + + + This stream does not support write access. + + + Buffer cannot be null. + + + Invalid seek origin. + + + The specified Windows Runtime stream supports the IRandomAccessStream interface and its CanRead property returns TRUE, however it does not implement the IInputStream interface. Windows Runtime streams with such inconsistent capabilities cannot be converted to managed Stream objects. IRandomAccessStream instances whose CanRead property returns TRUE must implement the IInputStream interface. + + + Unmanaged memory stream position was beyond the capacity of the stream. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw new file mode 100644 index 0000000..2f141d2 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Invalid argument. + + + The element is not enabled. + + + Invalid value for {0} property on CornerRadius. + + + XAML parsing failed. + + + The element is not available. + + + A cycle occurred while laying out the GUI. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Claims.SR.resw b/obj/x86/Debug/FxResources.System.Security.Claims.SR.resw new file mode 100644 index 0000000..4378245 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Claims.SR.resw @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Actor cannot be set so that circular directed graph will exist chaining the subjects together. + + + The Claim '{0}' was not able to be removed. It is either not part of this Identity or it is a claim that is owned by the Principal that contains this Identity. For example, the Principal will own the claim when creating a GenericPrincipal with roles. The roles will be exposed through the Identity that is passed in the constructor, but not actually owned by the Identity. Similar logic exists for a RolePrincipal. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Cryptography.Algorithms.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.Algorithms.SR.resw new file mode 100644 index 0000000..8e14051 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Algorithms.SR.resw @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Specified padding mode is not valid for this algorithm. + + + The hash algorithm name cannot be null or empty. + + + The specified curve '{0}' or its parameters are not valid for this platform. + + + Value was invalid. + + + The string contains a character not in the 7 bit ASCII character set. + + + Specified key is not a valid size for this algorithm. + + + '{0}' is not a known hash algorithm. + + + Object contains only the public half of a key pair. A private key must also be provided. + + + The Initialization vector should have the same length as the algorithm block size in bytes. + + + CNG provider unexpectedly terminated encryption or decryption prematurely. + + + The cipher mode specified requires that an initialization vector (IV) be used. + + + Salt is not at least eight bytes. + + + Key is not a valid public or private key. + + + The specified Oid is not valid. The Oid.FriendlyName or Oid.Value property must be set. + + + The specified prime curve parameters are not valid. Prime, A, B, G.X, G.Y and Order are required and must be the same length, and the same length as Q.X, Q.Y and D if those are specified. Seed, Cofactor and Hash are optional. Other parameters are not allowed. + + + EffectiveKeySize value must be at least 40 bits. + + + KeySize value must be at least as large as the EffectiveKeySize value. + + + Error occurred during a cryptographic operation. + + + Specified initialization vector (IV) does not match the block size for this algorithm. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Specified key is a known semi-weak key for '{0}' and cannot be used. + + + Method not supported. Derived class must override. + + + The OID value was invalid. + + + The specified PaddingMode is not supported. + + + Attempt to transform beyond end of buffer. + + + The input data is not a complete block. + + + Specified key is a known weak key for '{0}' and cannot be used. + + + TransformBlock may only process bytes in block sized increments. + + + Specified padding mode is not valid for this algorithm. + + + Algorithm is unavailable or is not supported for this operation. + + + Non-negative number required. + + + The specified key parameters are not valid. Q.X and Q.Y are required fields. Q.X, Q.Y must be the same length. If D is specified it must be the same length as Q.X and Q.Y for named curves or the same length as Order for explicit curves. + + + The specified RSA parameters are not valid; both Exponent and Modulus are required fields. + + + The specified Characteristic2 curve parameters are not valid. Polynomial, A, B, G.X, G.Y, and Order are required. A, B, G.X, G.Y must be the same length, and the same length as Q.X, Q.Y and D if those are specified. Seed, Cofactor and Hash are optional. Other parameters are not allowed. + + + The specified named curve parameters are not valid. Only the Oid parameter must be set. + + + Unknown padding mode used. + + + Buffer cannot be null. + + + Positive number required. + + + Cannot open an invalid handle. + + + Key is not a valid private key. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Cryptography.Cng.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.Cng.SR.resw new file mode 100644 index 0000000..66a1b9f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Cng.SR.resw @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Specified padding mode is not valid for this algorithm. + + + Unsupported hash algorithm. RSACng currently supports only MD5, SHA1, SHA256, SHA384 and SHA512. + + + The hash algorithm name cannot be null or empty. + + + The specified curve '{0}' or its parameters are not valid for this platform. + + + Keys used with the RSACng algorithm must have an algorithm group of RSA. + + + The CNG key handle being opened was detected to be ephemeral, but the EphemeralKey open option was not specified. + + + Specified key is not a valid size for this algorithm. + + + '{0}' is not a known hash algorithm. + + + This key is for algorithm '{0}'. Expected '{1}'. + + + Specified key is a known weak key for this algorithm and cannot be used. + + + Keys used with the ECDiffieHellmanCng algorithm must have an algorithm group of ECDiffieHellman. + + + CNG provider unexpectedly terminated encryption or decryption prematurely. + + + The cipher mode specified requires that an initialization vector (IV) be used. + + + EffectiveKeySize must be the same as KeySize in this implementation. + + + DeriveKeyMaterial requires an ECDiffieHellmanCngPublicKey. + + + The provider name '{0}' is invalid. + + + Key Blob not in expected format. + + + Key is not a valid public or private key. + + + The specified Oid is not valid. The Oid.FriendlyName property must be set, or be determined from Oid.Value. + + + Specified initialization vector (IV) does not match the block size for this algorithm. + + + The key blob format '{0}' is invalid. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + The keys from both parties must be the same size to generate a secret agreement. + + + XML serialization of an elliptic curve key requires using an overload which specifies the XML format to be used. + + + Keys used with the ECDsaCng algorithm must have an algorithm group of ECDsa. + + + Specified cipher mode is not valid for this algorithm. + + + The specified PaddingMode is not supported. + + + Attempt to transform beyond end of buffer. + + + The input data is not a complete block. + + + Method not supported. + + + TransformBlock may only process bytes in block sized increments. + + + Non-negative number required. + + + The specified RSA parameters are not valid; both Exponent and Modulus are required fields. + + + The algorithm name '{0}' is invalid. + + + The algorithm group '{0}' is invalid. + + + The TLS key derivation function requires both the label and seed properties to be set. + + + Unknown padding mode used. + + + This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms. + + + Buffer cannot be null. + + + The specified cryptographic algorithm is not supported on this platform. + + + The hash algorithm is not supported for signatures. Only MD5, SHA1, SHA256,SHA384, and SHA512 are supported at this time. + + + Cannot open an invalid handle. + + + Key is not a valid private key. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Cryptography.Encoding.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.Encoding.SR.resw new file mode 100644 index 0000000..fa94a4b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Encoding.SR.resw @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + No OID value matches this name. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Only single dimensional arrays are supported for the requested action. + + + The OID value is invalid. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Cryptography.Primitives.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.Primitives.SR.resw new file mode 100644 index 0000000..d6e7569 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Primitives.SR.resw @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Stream was not writable. + + + Value was invalid. + + + Stream was not readable. + + + Specified key is not a valid size for this algorithm. + + + FlushFinalBlock() method was called twice on a CryptoStream. It can only be called once. + + + Stream does not support writing. + + + Stream does not support seeking. + + + Error occurred during a cryptographic operation. + + + Specified initialization vector (IV) does not match the block size for this algorithm. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + Accessing a hash algorithm by manipulating the HashName property is not supported on this platform. Instead, you must instantiate one of the supplied subtypes (such as HMACSHA1.) + + + Specified cipher mode is not valid for this algorithm. + + + Specified padding mode is not valid for this algorithm. + + + Non-negative number required. + + + Stream does not support reading. + + + Specified block size is not valid for this algorithm. + + + Setting the hashname after it's already been set is not supported on this platform. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Cryptography.X509Certificates.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.X509Certificates.SR.resw new file mode 100644 index 0000000..e63c7bd --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.X509Certificates.SR.resw @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Invalid file permissions. The file '{0}' must readable and writable by the current owner and by no one else, and the permissions could not be changed to meet that criteria. + + + Only one certificate with a private key can be exported in a single PFX. + + + Unable to get file status. + + + The owner of '{0}' is not the current user. + + + Enumeration has not started. Call MoveNext. + + + The string contains a character not in the 7 bit ASCII character set. + + + String cannot be empty or null. + + + The certificate export operation failed. + + + The X509 certificate store is read-only. + + + Cannot obtain public key from X509Certificate. Public Key ASN.1 is in an unexpected format. + + + Invalid directory permissions. The directory '{0}' must be readable, writable and executable by the owner. + + + The {0} value was invalid. + + + Invalid handle. + + + Unix LocalMachine X509Store is limited to the Root and CertificateAuthority stores. + + + The X509 certificate store has not been opened. + + + The certificate has invalid policy. + + + Illegal enum value: {0}. + + + The {0} value cannot be set on Unix. + + + The X509 certificate could not be added to the store because all candidate file names were in use. + + + Value of flags is invalid. + + + Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection. + + + The certificate key algorithm is not supported. + + + {0} is an invalid handle. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + The chain context handle is invalid. + + + The OID value was invalid. + + + Only asymmetric keys that implement ICspAsymmetricAlgorithm are supported. + + + The home directory of the current user could not be determined. + + + The parameter should be an X509Extension. + + + The specified X509 certificate store does not exist. + + + Array may not be empty or null. + + + Only single dimensional arrays are supported for the requested action. + + + The store handle is invalid. + + + Invalid find type. + + + The string contains an invalid X500 name attribute key, oid, value or delimiter. + + + Object identifier (OID) is unknown. + + + Unknown error. + + + CryptoApi ECDsa keys are not supported. + + + Invalid content type. + + + X509ContentType.SerializedCert and X509ContentType.SerializedStore are not supported on Unix. + + + The X509 Basic Constraints extension with OID 2.5.29.10 is not supported. + + + The public key of the certificate does not match the value specified. + + + Cannot remove the specified item because it was not found in the specified Collection. + + + Invalid find value. + + + Non-negative number required. + + + The value of 'nameType' is invalid. + + + Cannot find the original signer. + + + Unix LocalMachine X509Stores are read-only for all users. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Text.Encoding.CodePages.SR.resw b/obj/x86/Debug/FxResources.System.Text.Encoding.CodePages.SR.resw new file mode 100644 index 0000000..948b3b3 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Text.Encoding.CodePages.SR.resw @@ -0,0 +1,597 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Recursive fallback not allowed for character \\u{0:X4}. + + + Index and count must refer to a location within the string. + + + Korean (Johab) + + + Hebrew (Windows) + + + Turkish (Windows) + + + Baltic (Windows) + + + Arabic (Windows) + + + Cyrillic (Windows) + + + Central European (Windows) + + + Greek (Windows) + + + Western European (Windows) + + + Vietnamese (Windows) + + + IBM EBCDIC (France-Euro) + + + IBM EBCDIC (UK-Euro) + + + IBM EBCDIC (Spain-Euro) + + + IBM EBCDIC (Italy-Euro) + + + IBM EBCDIC (Finland-Sweden-Euro) + + + IBM EBCDIC (Denmark-Norway-Euro) + + + IBM EBCDIC (Germany-Euro) + + + IBM EBCDIC (US-Canada-Euro) + + + IBM EBCDIC (Icelandic-Euro) + + + IBM EBCDIC (International-Euro) + + + IBM EBCDIC (Turkish Latin-5) + + + IBM Latin-1 + + + {0} is not a supported code page. + + + No data is available for encoding {0}. + + + Insufficient memory to continue the execution of the program. + + + Valid values are between {0} and {1}, inclusive. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Recursive fallback not allowed for bytes {0}. + + + Baltic (DOS) + + + Arabic (ASMO 708) + + + Greek (DOS) + + + Arabic (DOS) + + + IBM EBCDIC (International) + + + OEM United States + + + Japanese (Shift-JIS) + + + Chinese Simplified (GB2312) + + + Chinese Traditional (Big5) + + + Korean + + + Thai (Windows) + + + IBM EBCDIC (Greek Modern) + + + IBM EBCDIC (Multilingual Latin-2) + + + OEM Multilingual Latin I + + + Turkish (DOS) + + + OEM Cyrillic + + + Central European (DOS) + + + Western European (DOS) + + + Greek, Modern (DOS) + + + Nordic (DOS) + + + Arabic (864) + + + Cyrillic (DOS) + + + Icelandic (DOS) + + + Portuguese (DOS) + + + French Canadian (DOS) + + + Hebrew (DOS) + + + Non-negative number required. + + + Too many bytes. The resulting number of chars is larger than what can be returned as an int. + + + Too many characters. The resulting number of bytes is larger than what can be returned as an int. + + + String contains invalid Unicode code points. + + + Hebrew (ISO-Logical) + + + Thai (Mac) + + + Central European (Mac) + + + Romanian (Mac) + + + Ukrainian (Mac) + + + Chinese Traditional (Mac) + + + Korean (Mac) + + + Western European (Mac) + + + Japanese (Mac) + + + Greek (Mac) + + + Cyrillic (Mac) + + + Arabic (Mac) + + + Hebrew (Mac) + + + Chinese Simplified (Mac) + + + Icelandic (Mac) + + + Croatian (Mac) + + + Turkish (Mac) + + + Ext Alpha Lowercase + + + IBM EBCDIC (Cyrillic Serbian-Bulgarian) + + + Cyrillic (KOI8-U) + + + Western European (IA5) + + + German (IA5) + + + Swedish (IA5) + + + Norwegian (IA5) + + + TCA Taiwan + + + Chinese Traditional (CNS) + + + IBM5550 Taiwan + + + Chinese Traditional (Eten) + + + Wang Taiwan + + + TeleText Taiwan + + + IBM EBCDIC (Denmark-Norway) + + + IBM EBCDIC (Germany) + + + IBM EBCDIC (Finland-Sweden) + + + T.61 + + + ISO-6937 + + + IBM EBCDIC (Japanese katakana) + + + IBM EBCDIC (France) + + + IBM EBCDIC (Italy) + + + IBM EBCDIC (UK) + + + IBM EBCDIC (Spain) + + + IBM EBCDIC (Hebrew) + + + IBM EBCDIC (Greek) + + + IBM EBCDIC (Arabic) + + + IBM EBCDIC (Turkish) + + + Japanese (JIS 0208-1990 and 0212-1990) + + + Chinese Simplified (GB2312-80) + + + IBM Latin-1 + + + Korean Wansung + + + IBM EBCDIC (Cyrillic Russian) + + + IBM EBCDIC (Thai) + + + IBM EBCDIC (Korean Extended) + + + IBM EBCDIC (Icelandic) + + + Cyrillic (KOI8-R) + + + Europa + + + Cyrillic (ISO) + + + Baltic (ISO) + + + Greek (ISO) + + + Arabic (ISO) + + + Latin 3 (ISO) + + + Central European (ISO) + + + Turkish (ISO) + + + Hebrew (ISO-Visual) + + + Latin 9 (ISO) + + + Estonian (ISO) + + + ISCII Bengali + + + ISCII Devanagari + + + ISCII Telugu + + + ISCII Tamil + + + ISCII Oriya + + + ISCII Assamese + + + ISCII Malayalam + + + ISCII Kannada + + + ISCII Gujarati + + + ISCII Punjabi + + + Chinese Simplified (GB18030) + + + Chinese Simplified (HZ) + + + Korean (EUC) + + + Chinese Simplified (EUC) + + + Japanese (EUC) + + + Chinese Simplified (ISO-2022) + + + Korean (ISO) + + + Japanese (JIS-Allow 1 byte Kana - SO/SI) + + + Japanese (JIS) + + + Japanese (JIS-Allow 1 byte Kana) + + + Chinese Traditional (ISO-2022) + + + User Defined + + + IBM EBCDIC (Japanese and Japanese-Latin) + + + IBM EBCDIC (Simplified Chinese) + + + IBM EBCDIC (Traditional Chinese) + + + IBM EBCDIC (Japanese and Japanese Katakana) + + + IBM EBCDIC (Japanese and US-Canada) + + + IBM EBCDIC (Korean and Korean Extended) + + + Array cannot be null. + + + The output char buffer is too small to contain the decoded characters, encoding '{0}' fallback '{1}'. + + + The output byte buffer is too small to contain the encoded data, encoding '{0}' fallback '{1}'. + + + IBM EBCDIC (US-Canada) + + + Index and count must refer to a location within the buffer. + + + Could not find a resource entry for the encoding codepage '{0} - {1}' + + + Must complete Convert() operation or call Encoder.Reset() before calling GetBytes() or GetByteCount(). Encoder '{0}' fallback '{1}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Text.RegularExpressions.SR.resw b/obj/x86/Debug/FxResources.System.Text.RegularExpressions.SR.resw new file mode 100644 index 0000000..7146eda --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Text.RegularExpressions.SR.resw @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Reference to undefined group number {0}. + + + Unexpected opcode in regular expression generation: {0}. + + + Capture group numbers must be less than or equal to Int32.MaxValue. + + + Unterminated (?#...) comment. + + + Unrecognized escape sequence \\{0}. + + + Count cannot be less than -1. + + + Not enough )'s. + + + Incomplete \\p{X} character escape. + + + Enumeration has either not started or has already finished. + + + Malformed \\p{X} character escape. + + + Malformed \\k<...> named back reference. + + + Unimplemented state. + + + Nested quantifier {0}. + + + Length cannot be less than 0 or exceed input length. + + + A subtraction must be the last element in a character class. + + + [x-y] range in reverse order. + + + Capture number cannot be zero. + + + Missing control character. + + + Too many | in (?()|). + + + Replacement pattern error. + + + Reference to undefined group name {0}. + + + parsing '{0}' - {1} + + + Internal error in ScanRegex. + + + Too many )'s. + + + Alternation conditions cannot be comments. + + + Quantifier {x,y} following nothing. + + + Cannot include class \\{0} in character range. + + + Illegal conditional (?(...)) expression. + + + Unrecognized grouping construct. + + + (?({0}) ) reference to undefined group. + + + Result cannot be called on a failed Match. + + + Unrecognized control character. + + + (?({0}) ) malformed. + + + The RegEx engine has timed out while trying to match a pattern to an input string. This can occur for many reasons, including very large inputs or excessive backtracking caused by nested quantifiers, back-references and other factors. + + + Illegal {x,y} with x > y. + + + Illegal \\ at end of pattern. + + + Unknown property '{0}'. + + + Insufficient hexadecimal digits. + + + Start index cannot be less than 0 or greater than input length. + + + Unterminated [] set. + + + Alternation conditions do not capture and cannot be named. + + + This operation is only allowed once per object. + + + Invalid group name: Group names must begin with a word character. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Threading.Overlapped.SR.resw b/obj/x86/Debug/FxResources.System.Threading.Overlapped.SR.resw new file mode 100644 index 0000000..6481779 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.Overlapped.SR.resw @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 'overlapped' was not allocated by this ThreadPoolBoundHandle instance. + + + 'overlapped' has already been freed. + + + 'handle' has been disposed or is an invalid handle. + + + 'preAllocated' is already in use. + + + 'handle' has already been bound to the thread pool, or was not opened for asynchronous I/O. + + + NativeOverlapped cannot be reused for multiple operations. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Threading.SR.resw b/obj/x86/Debug/FxResources.System.Threading.SR.resw new file mode 100644 index 0000000..54c39c3 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.SR.resw @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The event is already signaled and cannot be incremented. + + + The lock is being disposed while still being used. It either is being held by a thread and/or has active waiters waiting to acquire the lock. + + + A read lock may not be acquired with the write lock held in this mode. + + + The participantCount argument must be less than or equal the number of participants. + + + Upgradeable lock may not be acquired with write lock held in this mode. Acquiring Upgradeable lock gives the ability to read along with an option to upgrade to a writer. + + + Write lock may not be acquired with read lock held. This pattern is prone to deadlocks. Please ensure that read locks are released before taking a write lock. If an upgrade is necessary, use an upgrade lock in place of the read lock. + + + Recursive write lock acquisitions not allowed in this mode. + + + The specified timeout must represent a value between -1 and Int32.MaxValue, inclusive. + + + The postPhaseAction failed with an exception. + + + The participantCount argument must be a positive value. + + + The barrier has been disposed. + + + Upgradeable lock may not be acquired with read lock held. + + + The participantCount argument must be a positive value. + + + Recursive read lock acquisitions not allowed in this mode. + + + The operation was canceled. + + + Recursive upgradeable lock acquisitions not allowed in this mode. + + + The participantCount argument must be non-negative and less than or equal to 32767. + + + The barrier has no registered participants. + + + The increment operation would cause the CurrentCount to overflow. + + + This method may not be called from within the postPhaseAction. + + + The upgradeable lock is being released without being held. + + + Adding participantCount participants would result in the number of participants exceeding the maximum number allowed. + + + The write lock is being released without being held. + + + The number of threads using the barrier exceeded the total number of registered participants. + + + Invalid attempt made to decrement the event's count below zero. + + + The participantCount argument is greater than the number of participants that haven't yet arrived at the barrier in this phase. + + + The read lock is being released without being held. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Threading.Tasks.Dataflow.SR.resw b/obj/x86/Debug/FxResources.System.Threading.Tasks.Dataflow.SR.resw new file mode 100644 index 0000000..cabf5e9 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.Tasks.Dataflow.SR.resw @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Number must be positive. + + + Number must be either non-negative and less than or equal to Int32.MaxValue or -1 + + + Number must be no greater than the value specified in BoundedCapacity. + + + The DataflowMessageHeader instance does not represent a valid message header. + + + The source completed without providing data to receive. + + + Source {0} unlinked from target {1}. + + + This member is not supported on this dataflow block. The block is intended for a specific purpose that does not utilize this member. + + + This block must only be used with the source from which it was created. + + + The target does not have the message reserved. + + + The target block failed to consume a message it had successfully reserved. + + + BoundedCapacity must be Unbounded or -1 for this dataflow block. + + + The argument must be false if no source from which to consume is specified. + + + {1} task launched from block {0} with {2} message(s) pending. + + + Source {0} linked to target {1}. + + + The SyncRoot property may not be used for the synchronization of concurrent collections. + + + Block {0} completed as {1}. {2} + + + Greedy must be true for this dataflow block. + + + To construct a DataflowMessageHeader instance, either pass a non-zero value or use the parameterless constructor. + + + Block of type {0} instantiated with Id {1}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Threading.Tasks.Parallel.SR.resw b/obj/x86/Debug/FxResources.System.Threading.Tasks.Parallel.SR.resw new file mode 100644 index 0000000..042e481 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.Tasks.Parallel.SR.resw @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + This method is not supported. + + + One of the actions was null. + + + The Partitioner used here returned a null partitioner source. + + + This method requires the use of an OrderedPartitioner with the KeysNormalized property set to true. + + + Stop was called after Break was called. + + + The Partitioner source returned a null enumerator. + + + The Partitioner used here must support dynamic partitioning. + + + Break was called after Stop was called. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Xml.ReaderWriter.SR.resw b/obj/x86/Debug/FxResources.System.Xml.ReaderWriter.SR.resw new file mode 100644 index 0000000..1631433 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Xml.ReaderWriter.SR.resw @@ -0,0 +1,597 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Reference to unparsed entity '{0}'. + + + Invalid byte was found at index {0}. + + + DTD must be defined before the document root element. + + + There is an unclosed conditional section. + + + The '{0}' start tag on line {1} position {2} does not match the end tag of '{3}'. + + + Expecting 'PCDATA'. + + + The parameter entity replacement text must nest properly within markup declarations. + + + '{0}' is an invalid xml:space value. + + + Cannot resolve '{0}'. + + + Expecting a system identifier or a public identifier. + + + The String '{0}' cannot be represented as an XmlQualifiedName. A namespace for prefix '{1}' cannot be found. + + + Cannot have multiple DTDs. + + + General entity '{0}' references itself. + + + Unexpected end of file has occurred. + + + Invalid character in the given encoding. + + + System does not support '{0}' encoding. + + + Unexpected DTD declaration. + + + Make sure that the ConformanceLevel setting is set to ConformanceLevel.Fragment or ConformanceLevel.Auto if you want to write an XML fragment. + + + Set XmlWriterSettings.Async to true if you want to use Async Methods. + + + There is no Unicode byte order mark. Cannot switch to Unicode. + + + '{0}' is a duplicate attribute name. + + + Element '{0}' was not found. + + + The QName '{0}' cannot be represented as a String. A prefix for namespace '{1}' cannot be found. + + + For security reasons DTD is prohibited in this XML document. To enable DTD processing set the DtdProcessing property on XmlReaderSettings to Parse and pass the settings into XmlReader.Create method. + + + The XmlReader is closed or in error state. + + + Cannot open '{0}'. The Uri parameter must be a file system relative or absolute path. + + + Invalid name character in '{0}'. The '{1}' character, hexadecimal value 0x{2}, cannot be included in a name. + + + The '{0}' property is read only and cannot be set. + + + The '{0}' character, hexadecimal value {1}, cannot be included in a name. + + + The empty string '' is not a valid name. + + + {0} + + + The current position on the Reader is neither an element nor an attribute. + + + An internal error has occurred. + + + The buffer is not large enough to fit a surrogate pair. Please provide a buffer of size at least 2 characters. + + + BaseUri must be specified either as an argument of XmlReader.Create or on the XmlParserContext. If it is specified on both, it must be the same base URI. + + + Parameter entity '{0}' references itself. + + + Index and count must refer to a location within the string. + + + XmlWriterSettings.{0} can contain only valid XML text content characters when XmlWriterSettings.CheckCharacters is true. {1} + + + There is an unclosed literal string. + + + Standalone document declaration must have a value of 'no' because an external entity '{0}' is referenced. + + + '{0}' is an invalid name for processing instructions. + + + Invalid value of a character entity reference. + + + Cannot bind to the reserved namespace. + + + Incomplete entity contents. + + + An XML comment cannot contain '--', and '-' cannot be the last character. + + + Cannot resolve external DTD subset - public ID = '{0}', system ID = '{1}'. + + + Unexpected XML declaration. The XML declaration must be the first node in the document, and no white space characters are allowed to appear before it. + + + ']]>' is not allowed in character data. + + + Name cannot begin with the '{0}' character, hexadecimal value {1}. + + + ']]>' is not expected. + + + Invalid high surrogate character (0x{0}). A high surrogate character must have a value from range (0xD800 - 0xDBFF). + + + Cannot resolve entity reference '{0}' because the DTD has been ignored. To enable DTD processing set the DtdProcessing property on XmlReaderSettings to Parse and pass the settings into XmlReader.Create method. + + + The {0} method is not supported on node type {1}. If you want to read typed content of an element, use the ReadElementContentAs method. + + + Invalid NmToken value '{0}'. + + + String must be exactly one character long. + + + Prefix '{0}' cannot be mapped to namespace name reserved for 'xml' or 'xmlns'. + + + The input document has exceeded a limit set by {0}. + + + Fragment identifier '{0}' cannot be part of the system identifier '{1}'. + + + Expecting an external identifier or an entity value. + + + {0} Line {1}, position {2}. + + + Root element is missing. + + + Invalid namespace declaration. + + + The Whitespace or SignificantWhitespace node can contain only XML white space characters. '{0}' is not an XML white space character. + + + An error has occurred while opening external DTD '{0}': {1} + + + WriteStartDocument cannot be called on writers created with ConformanceLevel.Fragment. + + + '{0}' is an unexpected token. Expecting white space. + + + Unexpected end of file while parsing {0} has occurred. + + + Prefix 'xml' is reserved for use by XML and can be mapped only to namespace name 'http://www.w3.org/XML/1998/namespace'. + + + Value '{0}' was either too large or too small for {1}. + + + The string '{0}' is not a valid {1} value. + + + An error occurred while parsing EntityName. + + + '{0}', hexadecimal value {1}, is an invalid character. + + + The surrogate pair is invalid. Missing a low surrogate character. + + + Cannot change conformance checking to {0}. Make sure the ConformanceLevel in XmlReaderSettings is set to Auto for wrapping scenarios. + + + ReadContentAsBase64 and ReadContentAsBinHex method calls cannot be mixed with calls to ReadElementContentAsBase64 and ReadElementContentAsBinHex. + + + Expecting an internal subset or the end of the DOCTYPE declaration. + + + '{0}' is an invalid attribute type. + + + ReadValueChunk method is not supported on this XmlReader. Use CanReadValueChunk property to find out if an XmlReader implements it. + + + Valid values are between {0} and {1}, inclusive. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + The second character surrogate pair is not in the input buffer to be written. + + + '{0}' is an unexpected token. The expected token is '{1}'. + + + '{0}' is an unexpected token. The expected token is '{1}' or '{2}'. + + + Cannot resolve entity reference '{0}'. + + + Invalid text declaration. + + + An XML error has occurred. + + + '{0}' is not a valid BinHex text sequence. + + + '{0}' is an invalid XmlNodeType. + + + The Writer is closed or in error state. + + + The '{0}' value for the 'dateTimeOption' parameter is not an allowed value for the 'XmlDateTimeSerializationMode' enumeration. + + + Only white space characters should be used. + + + The string was not recognized as a valid Uri. + + + The ReadValueAsChunk method is not supported on node type {0}. + + + Invalid content model. + + + White space not allowed before '?', '*', or '+'. + + + Conversion buffer overflow. + + + Prefix 'xmlns' is reserved for use by XML. + + + Incomplete DTD content. + + + Element '{0}' with namespace name '{1}' was not found. + + + '{0}' is not a valid Base64 text sequence. + + + Invalid syntax for a hexadecimal numeric entity reference. + + + XmlWriterSettings.{0} can contain only valid XML white space characters when XmlWriterSettings.CheckCharacters and XmlWriterSettings.NewLineOnAttributes are true. + + + Expecting external ID, '[' or '>'. + + + Conditional sections must specify the keyword 'IGNORE' or 'INCLUDE'. + + + A conditional section is not allowed in an internal subset. + + + Object type is not supported. + + + Non-negative number required. + + + Unexpected end of file has occurred. The following elements are not closed: {0} + + + A parameter entity reference is not allowed in internal markup. + + + An error has occurred while opening external entity '{0}': {1} + + + ReadSubtree() can be called only if the reader is on an element node. + + + The {0} method is not supported on node type {1}. + + + Entity replacement text must nest properly within markup declarations. + + + Not the same name table. + + + String contains invalid Unicode code points. + + + Invalid syntax for a decimal numeric entity reference. + + + Xml type 'List of {0}' does not support a conversion from Clr type '{1}' to Clr type '{2}'. + + + Data at the root level is invalid. + + + Expecting '?', '*', or '+'. + + + Cannot write XML declaration. WriteStartDocument method has already written it. + + + ReadElementContentAs() methods cannot be called on an element that has child elements. + + + There was no XML start tag open. + + + ReadContentAsBase64 and ReadContentAsBinHex method calls cannot be mixed with calls to ReadChars, ReadBase64, and ReadBinHex. + + + Document does not have a root element. + + + Unable to translate Unicode character \\u{0:X4} at index {1} to specified code page. + + + DTD is not allowed in XML fragments. + + + The empty string '' is not a valid local name. + + + DTD is prohibited in this XML document. + + + The prefix '{0}' cannot be redefined from '{1}' to '{2}' within the same start element tag. + + + Version number '{0}' is invalid. + + + Line {0}, position {1}. + + + '{0}', hexadecimal value {1}, is an invalid attribute character. + + + Unexpected end tag. + + + XmlReaderSettings.XmlNameTable must be the same name table as in XmlParserContext.NameTable or XmlParserContext.NamespaceManager.NameTable, or it must be null. + + + Array cannot be null. + + + The output byte buffer is too small to contain the encoded data, encoding '{0}' fallback '{1}'. + + + There are multiple root elements. + + + Syntax for an XML declaration is invalid. + + + Set XmlReaderSettings.Async to true if you want to use Async Methods. + + + '{0}' is not a valid BinHex text sequence. The sequence must contain an even number of characters. + + + Enumeration data type required. + + + Expecting an attribute type. + + + Reference to undeclared entity '{0}'. + + + Operation is not valid due to the current state of the object. + + + An asynchronous operation is already in progress. + + + Index and count must refer to a location within the buffer. + + + The DTD has already been written out. + + + {0} method is not supported on this XmlReader. Use CanReadBinaryContent property to find out if a reader implements it. + + + '{0}' is an unqualified name and cannot contain the character ':'. + + + External entity '{0}' reference cannot appear in the attribute value. + + + ReadValueChunk calls cannot be mixed with ReadContentAsBase64 or ReadContentAsBinHex. + + + The surrogate pair (0x{0}, 0x{1}) is invalid. A high surrogate character (0xD800 - 0xDBFF) must always be paired with a low surrogate character (0xDC00 - 0xDFFF). + + + Token {0} in state {1} would result in an invalid XML document. + + + '{0}' is an undeclared namespace. + + + Cannot write XML declaration. XML declaration can be only at the beginning of the document. + + + The '{0}' namespace is not defined. + + + Content cannot be converted to the type {0}. + + + Cannot use a prefix with an empty namespace. + + + Expected DTD markup was not found. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Xml.XDocument.SR.resw b/obj/x86/Debug/FxResources.System.Xml.XDocument.SR.resw new file mode 100644 index 0000000..63664ac --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Xml.XDocument.SR.resw @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The XmlReader state should be Interactive. + + + '{0}' is an invalid expanded name. + + + This XmlWriter does not support base64 encoded data. + + + The prefix 'xml' is bound to the namespace name 'http://www.w3.org/XML/1998/namespace'. Other prefixes must not be bound to this namespace name, and it must not be declared as the default namespace. + + + This instance cannot be deserialized. + + + An XObject cannot be used as a value. + + + The XmlReader should not be on a node of type {0}. + + + Non white space characters cannot be added to content. + + + An attribute cannot be written after content. + + + The root element is missing. + + + The argument cannot be converted to a string. + + + '{0}' is an invalid prefix. + + + '{0}' is an invalid name for a processing instruction. + + + A node of type {0} cannot be added to content. + + + The XmlReader cannot resolve entity references. + + + The parent is missing. + + + The argument must be derived from {0}. + + + The XmlReader must be on a node of type {0} instead of a node of type {1}. + + + This operation was corrupted by external code. + + + The prefix 'xmlns' is bound to the namespace name 'http://www.w3.org/2000/xmlns/'. It must not be declared. Other prefixes must not be bound to this namespace name, and it must not be declared as the default namespace. + + + A common ancestor is missing. + + + The prefix '{0}' cannot be bound to the empty namespace name. + + + This XmlWriter does not support entity references. + + + The XmlReader state should be EndOfFile after this operation. + + + An attribute cannot be added to content. + + + Duplicate attribute. + + + This operation would create an incorrectly structured document. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Xml.XmlDocument.SR.resw b/obj/x86/Debug/FxResources.System.Xml.XmlDocument.SR.resw new file mode 100644 index 0000000..98e6ef2 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Xml.XmlDocument.SR.resw @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + '{0}' is an invalid xml:space value. + + + The reference node must be a child of the current node. + + + The index being passed in is out of range. + + + The document to be loaded could not be found. + + + The 'InnerText' of a 'Document' node is read-only and cannot be set. + + + The element list has changed. The enumeration operation failed to continue. + + + Cannot create an 'EntityReference' node with a name starting with '#'. + + + An 'Attributes' collection can only contain 'Attribute' objects. + + + Invalid name character in '{0}'. The '{1}' character, hexadecimal value {2}, cannot be included in a name. + + + The '{0}' character, hexadecimal value {1}, cannot be included in a name. + + + Invalid XML attribute quote character. Valid attribute quote characters are ' and \". + + + The empty string '' is not a valid name. + + + Non-CLS Compliant Exception. + + + Cannot insert the node in the specified location. + + + Prefixes beginning with \"xml\" (regardless of whether the characters are uppercase, lowercase, or some combination thereof) are reserved for use by XML. + + + This node is read-only. It cannot be modified. + + + The 'Attribute' node cannot be inserted because it is already an attribute of another element. + + + Cannot bind to the reserved namespace. + + + An XML comment cannot contain '--', and '-' cannot be the last character. + + + This document already has an 'XmlDeclaration' node. + + + Name cannot begin with the '{0}' character, hexadecimal value {1}. + + + Invalid high surrogate character (0x{0}). A high surrogate character must have a value from range (0xD800 - 0xDBFF). + + + Cannot insert a node or any ancestor of that node as a child of itself. + + + The node to be removed is not a child of this node. + + + The string for white space contains an invalid character. + + + The 'InnerText' of an 'Entity' node is read-only and cannot be set. + + + The string '{0}' is not a valid {1} value. + + + '{0}', hexadecimal value {1}, is an invalid character. + + + The surrogate pair is invalid. Missing a low surrogate character. + + + The prefix of an element name cannot start with 'xml'. + + + Cannot set the 'InnerXml' for the current node because it is either read-only or cannot have children. + + + The second character surrogate pair is not in the input buffer to be written. + + + The Writer is closed or in error state. + + + Only white space characters should be used. + + + XmlResolver can be set only by fully trusted code. + + + Cannot have '?>' inside an XML processing instruction. + + + Indentation value must be greater than 0. + + + 'Entity' and 'Notation' nodes cannot be cloned. + + + Cannot set a value on node type '{0}'. + + + The Writer is closed. + + + Reference to undeclared parameter entity '{0}'. + + + Type is incompatible. + + + The named node is from a different document context. + + + WriteStartDocument needs to be the first call. + + + Cannot set the namespace if Namespaces is 'false'. + + + 'EntityReference' nodes have no support for setting value. + + + The reference node is not a child of this node. + + + This document already has a 'DocumentElement' node. + + + Object type is not supported. + + + The attribute local name cannot be empty. + + + The namespace declaration attribute has an incorrect 'namespaceURI': '{0}'. + + + Cannot create node of type {0}. + + + Cannot import a null node. + + + This document already has a 'DocumentType' node. + + + Relative URIs are not supported. + + + Cannot have ']]>' inside an XML CDATA block. + + + Cannot write XML declaration. WriteStartDocument method has already written it. + + + The 'xmlns' attribute is bound to the reserved namespace 'http://www.w3.org/2000/xmlns/'. + + + The node to be inserted is from a different document context. + + + The current node cannot contain other nodes. + + + Cannot create a node without an owner document. + + + There was no XML start tag open. + + + Resolving of external URIs was prohibited. + + + Document does not have a root element. + + + There is no reader from which to load the document. + + + The current node cannot contain other nodes, so the node to be removed is not its child. + + + '{0}' does not represent any 'XmlNodeType'. + + + The 'Text' node is not connected in the DOM live tree. No 'SplitText' operation could be performed. + + + Unexpected XmlNodeType: '{0}'. + + + The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type. + + + NotInWriteState. + + + Wrong XML version information. The XML must match production \"VersionNum ::= '1.' [0-9]+\". + + + Operation is not valid due to the current state of the object. + + + An undefined prefix is in use. + + + Wrong value for the XML declaration standalone attribute of '{0}'. + + + The document does not have a root element. + + + The XmlReader passed in to construct this XmlValidatingReaderImpl must be an instance of a System.Xml.XmlTextReader. + + + The surrogate pair (0x{0}, 0x{1}) is invalid. A high surrogate character (0xD800 - 0xDBFF) must always be paired with a low surrogate character (0xDC00 - 0xDFFF). + + + Token {0} in state {1} would result in an invalid XML document. + + + The '{0}' namespace is not defined. + + + The local name for elements or attributes cannot be null or an empty string. + + + Cannot use a prefix with an empty namespace. + + + Invalid name character in '{0}'. + + + Cannot import nodes of type '{0}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Xml.XmlSerializer.SR.resw b/obj/x86/Debug/FxResources.System.Xml.XmlSerializer.SR.resw new file mode 100644 index 0000000..e26bd9d --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Xml.XmlSerializer.SR.resw @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + To be XML serializable, types which inherit from {2} must have an implementation of Add({1}) at all levels of their inheritance hierarchy. {0} does not implement Add({1}). + + + The type for {0} may not be specified for primitive types. + + + XmlRoot and XmlType attributes may not be specified for the type {0}. + + + '{0}' is an invalid value for the {1} property. {0} cannot be converted to {2}. + + + The top XML element '{0}' from namespace '{1}' references distinct types {2} and {3}. Use XML attributes to specify another XML name or namespace for the element or types. + + + Input or output values of an rpc\\literal method cannot have an XmlNamespaceDeclarations attribute (member '{0}'). + + + KnownType cannot be null in operation {0} + + + Value '{0}' cannot be used for the {1} property. The datatype '{2}' is missing. + + + Referenced identifier #{0} not found in document. + + + No conversion possible to {0}. + + + Type '{0}' from namespace '{1}' does not have corresponding IXmlSerializable type. Please consider adding {2} to '{3}'. + + + The type, {0}, is undeclared. + + + No repeating element accessor for {0}:{1}. + + + Method {0}.{1}() specified by {2} has invalid signature: return type must be compatible with {3}. + + + Internal error: {0}. + + + XmlAttribute cannot be used in conjunction with XmlElement, XmlText, XmlAnyElement, XmlArray, or XmlArrayItem. + + + The Form property may not be 'Unqualified' when an explicit Namespace property is present. + + + Error in deserializing body of request message for operation '{0}'. + + + The XML element '{0}' from namespace '{1}' is already present in the current scope. Use XML attributes to specify another XML name or namespace for the element. + + + Cannot deserialize element as attribute {0}:{1}. + + + Cannot assign object of type {0} to an object of type {1}. + + + Invalid array type for XmlAnyElementAttribute: '{0}'. + + + Illegal namespace declaration xmlns:{0} + + + Value of {0} mismatches the type of {1}; you need to set it to {2}. + + + Negative values are prohibited. + + + There is an error in XML document ({0}, {1}). + + + For non-array types, you may use the following attributes: XmlAttribute, XmlText, XmlElement, or XmlAnyElement. + + + Cannot serialize member '{0}' of type {1}. XmlAttribute/XmlText cannot be used to encode types implementing {2}. + + + Only XmlRoot attribute may be specified for the type {0}. Please use {1} to specify schema type. + + + Could not deserialize {0}. Parameterless constructor is required for collections and enumerators. + + + The specified type is abstract: name + + + Enum is missing {0}. + + + Instance validation error: '{0}' is not a valid value for {1}. + + + XmlArrayAttribute cannot be used in repeating part {1}:{0}. + + + There was an error in serializing body of message {0}: '{1}'. Please see InnerException for more details. + + + '{1}' values must be unique within the same scope. Value '{0}' is in use. Please change '{1}' property on '{2}'. + + + Choice identifier '{0}' must be an enum. + + + Type '{0}' cannot be serialized by XmlSerializer, serialization code for the type is missing. Consult the SDK documentation for adding it as a root serialization type. http://go.microsoft.com/fwlink/?LinkId=613136 + + + XmlText, XmlAnyElement, or XmlChoiceIdentifier cannot be used with rpc\\literal SOAP, you may use the following attributes: XmlArray, XmlArrayItem, or single XmlElement. + + + Type {0} is not supported because it has unbound generic parameters. Only instantiated generic types can be serialized. + + + Type of choice identifier '{0}' is inconsistent with type of '{1}'. Please use {2}. + + + XmlArray and XmlArrayItem cannot be used in conjunction with XmlAttribute, XmlElement, XmlText, or XmlAnyElement. + + + The XML element '{0}' from namespace '{1}' was not expected. The XML element name and namespace must match those provided via XmlAnyElementAttribute(s). + + + Invalid data type: '{0}'. + + + XmlElement, XmlText, and XmlAnyElement cannot be used in conjunction with XmlAttribute, XmlArray, or XmlArrayItem. + + + This mapping was not crated by reflection importer and cannot be used in this context. + + + The type {0} may not be serialized. + + + There is an error in the XML document. + + + Missing '{0}' member needed for serialization of choice '{1}'. + + + IsNullable may not be set to 'false' for a Nullable<{0}> type. Consider using '{0}' type or removing the IsNullable property from the {1} attribute. + + + The return value must be the first member. + + + Namespace prefix '{0}' is not defined. + + + The XML attribute '{0}' from namespace '{1}' is already present in the current scope. Use XML attributes to specify another XML name or namespace for the attribute. + + + {0} is an unsupported type. Please use [XmlIgnore] attribute to exclude members of this type from serialization graph. + + + {0} cannot be serialized. Static types cannot be used as parameters or return types. + + + There was an error reflecting field '{0}'. + + + {0} + + + The type {0} may not be used in this context. To use {0} as a parameter, return type, or member of a class or struct, the parameter, return type, or member must be declared as type {0} (it cannot be object). Objects of type {0} may not be used in untyped collections. + + + The element '{0}' has been attributed with duplicate XmlAnyElementAttribute(Name + + + There can only be one default member value. + + + Invalid data type: '{0}'. + + + Invalid array type {0}. + + + Only TypeKind.Root can be set for typeof(object) which is never value type. + + + Could not deserialize array of element {0}:{1}. + + + Error in deserializing body of reply message for operation '{0}'. + + + You must implement public static {0}({1}) method on {2}. + + + Member {0}.{1} of type {2} hides base class member {3}.{4} of type {5}. Use XmlElementAttribute or XmlAttributeAttribute to specify a new name. + + + Type {0} cannot inherit from any class other than object to be used as body object in RPC style. + + + This element was named '{0}' from namespace '{1}' but should have been named '{2}' from namespace '{3}'. + + + The encoding style '{0}' is not valid for this call because this XmlSerializer instance does not support encoding. Use the SoapReflectionImporter to initialize an XmlSerializer that supports encoding. + + + Using {0} as a base type for a class is not supported by XmlSerializer. + + + The type {0} may not be used in this context. + + + Cannot serialize interface {0}. + + + Type '{0}' from namespace '{1}' declared as derivation of type '{2}' from namespace '{3}, but corresponding CLR types are not compatible. Cannot convert type '{4}' to '{5}'. + + + Unexpected type of '{0}' value. + + + Member '{0}.{1}' hides inherited member '{2}.{3}', but has different custom attributes. + + + Invalid NmToken value '{0}'. + + + In operation {0}, the schema type corresponding to the fault detail type {1} is anonymous. Please set Fault name explicitly to export anonymous types. + + + Only XmlEnum may be used on enumerated constants. + + + Cannot serialize object of type '{0}'. The object does not have serializable members. + + + Cannot deserialize type '{0}' because it contains property '{1}' which has no public setter. + + + Invalid location for an XmlNamespaceDeclarationAttribute. + + + XmlSerializer attribute {0} is not valid in {1}. Only XmlElement, XmlArray, XmlArrayItem and XmlAnyElement attributes are supported when IsWrapped is true. + + + Identifier '{0}' is not CLS-compliant. + + + Invalid text type {0}. + + + {0}.{1}() must return a valid type name. + + + '{0}' is an invalid language identifier. + + + Cannot deserialize attribute as element {0}:{1}. + + + Type {0} implements interface {1} which is not supported for body object in RPC style. + + + Invalid sequence type {0}. + + + Cannot serialize member '{0}' of type '{1}', see inner exception for more details. + + + The node must be either type XmlAttribute or a derived type. + + + '{0}' is an invalid value for the {1} property. The property may only be specified for primitive types. + + + Cannot serialize object of type '{0}'. Consider changing type of XmlText member '{0}.{1}' from {2} to string or string array. + + + The string '{0}' is not a valid {1} value. + + + The type {0} may not be serialized with SOAP-encoded messages. Set the Use for your message to Literal. + + + {0}. {1} already has attributes. + + + Invalid type for XmlAnyAttributeAttribute: '{0}'. + + + Invalid or missing value of the choice identifier '{1}' of type '{0}[]'. + + + There was an error reflecting property '{0}'. + + + The global XML attribute '{0}' from namespace '{1}' references distinct types {2} and {3}. Use XML attributes to specify another XML name or namespace for the attribute or types. + + + IsNullable may not be 'true' for value type {0}. Please consider using Nullable<{0}> instead. + + + XmlNamespaceDeclarations attribute cannot be used in conjunction with any other custom attributes. + + + The method for enum {0} is missing. + + + {0} may not be used on parameters or return values when they are not wrapped. + + + Cannot serialize member '{0}' of type {1}. SoapAttribute cannot be used to encode complex types. + + + Duplicated mapping for {0}. + + + {0} is not assignable from {1}. + + + The type '{0}' cannot be serialized because its parameterless constructor is decorated with declarative security permission attributes. Consider using imperative asserts or demands in the constructor. + + + The type {0} was not expected. Use the XmlInclude attribute to specify types that are not known statically. + + + '{0}' is not a valid BinHex text sequence. + + + XML attributes may not be specified for the type {0}. + + + Cannot assign object of type {0} to an object of type {1}. + + + Member '{0}' cannot be encoded using the XmlText attribute. You may use only the XmlText attribute to encode certain types such as primitives, enumerations, or arrays of strings. + + + Unknown prefix: '{0}'. + + + Invalid wsd:arrayType syntax: '{0}'. + + + Internal Error: Unrecognized constant type {0}. + + + The type {0} is not supported because it implements IDictionary. + + + XmlSerializer attribute {0} is not valid in {1}. Only XmlElement, XmlArray, XmlArrayItem and XmlAnyElement attributes are supported in MessageContract when IsWrapped is false. + + + 'Add' method is required for collection type '{0}'. + + + Type {0} is missing enumeration value '{1}' for element '{2}' from namespace '{3}'. + + + {0} is inaccessible due to its protection level. Only public types can be processed. + + + Internal error: missing generated method for {0}. + + + Invalid Href format: '{0}'. + + + A circular reference was detected while serializing an object of type {0}. + + + Cannot assign null value to an object of type {1}. + + + The specified type was not recognized: name + + + {0} was not expected. + + + The global XML item '{0}' from namespace '{1}' has mismatch default value attributes: '{2}' and '{3}' and cannot be mapped to the same schema item. Use XML attributes to specify another XML name or namespace for one of the items, or make sure that the default values match. + + + XmlAttribute cannot be used with rpc\\literal SOAP, you may use the following attributes: XmlArray, XmlArrayItem, or single XmlElement. + + + Input or output values of an rpc\\literal method cannot have maxOccurs > 1. Provide a wrapper element for '{0}' by using XmlArray or XmlArrayItem instead of XmlElement attribute. + + + {0} cannot be used as: 'xml {1}'. + + + XmlAttribute cannot be used to encode array of {1}, because it is marked with FlagsAttribute. + + + The identifier {0} cannot appear more than once. + + + The XML element '{0}' from namespace '{1}' references a method and a type. Change the method's message name or change the type's root element using the XmlRootAttribute. + + + Cannot use XmlNamespaceDeclarations attribute on member '{0}' of type {1}. This attribute is only valid on members of type {2}. + + + Ambiguous types specified for member '{0}'. Items '{1}' and '{2}' have the same type. Please consider using {3} with {4} instead. + + + RPC Message {1} in operation {0} must have a single MessageBodyMember. + + + If multiple custom attributes specified on a single member only one of them have to have explicit '{0}' property, however if more that one attribute has the explicit '{0}', all values have to match. + + + Cannot serialize object of type {0}. Multidimensional arrays are not supported. + + + {0} is an unsupported type. + + + Cannot serialize member '{0}' of type {1}. XmlAttribute/XmlText cannot be used to encode complex types. + + + Value '{0}' of the choice identifier '{1}' does not match element '{2}' from namespace '{3}'. + + + The encoding style '{0}' is not valid for this call. Valid values are '{1}' for SOAP 1.1 encoding or '{2}' for SOAP 1.2 encoding. + + + Type {0} is missing enumeration value '##any:' corresponding to XmlAnyElementAttribute. + + + Invalid namespace attribute: xmlns:{0} + + + You must implement a default accessor on {0} because it inherits from ICollection. + + + Cannot serialize object of type '{0}' because it has multiple XmlNamespaceDeclarations attributes. + + + Cannot write a node of type XmlAttribute as an element value. Use XmlAnyAttributeAttribute with an array of XmlNode or XmlAttribute to write the node as an attribute. + + + Char is not a valid schema primitive and should be treated as int in DataContract + + + Cannot serialize object of type '{0}' because it has multiple XmlText attributes. Consider using an array of strings with XmlTextAttribute for serialization of a mixed complex type. + + + Array of type {0} is not supported. + + + There was an error processing type '{0}'. Type member '{1}' declared in '{2}' is missing required '{3}' property. If one class in the class hierarchy uses explicit sequencing feature ({3}), then its base class and all derived classes have to do the same. + + + Invalid choice direction. + + + Type '{0}' is not serializable. + + + There was an error generating the XML document. + + + Unexpected attribute type: '{0}'. + + + There was an error reflecting type '{0}'. + + + There was an error reflecting '{0}'. + + + Invalid serialization assembly: Required type {0} cannot be found in the generated assembly '{1}'. + + + Value '{0}' cannot be converted to {1}. + + + Cannot serialize member {0} of type {1} because it is an interface. + + + Types '{0}' and '{1}' both use the XML type name, '{2}', from namespace '{3}'. Use XML attributes to specify a unique XML name and/or namespace for the type. + + + An internal error has occurred: Code in one or more assemblies referenced by the XmlSerializer cannot be called. + + + Unexpected type: '{0}'. + + + Cannot serialize member {0} of type {1}, because it implements IDictionary. + + + XmlText may not be used on multiple parameters or return values. + + + '{0}' is not a valid BinHex text sequence. The sequence must contain an even number of characters. + + + Multiple accessors are not supported with rpc\\literal SOAP, you may use the following attributes: XmlArray, XmlArrayItem, or single XmlElement. + + + Enum values in the XmlChoiceIdentifier '{0}' have to be unique. Value '{1}' already present. + + + Operation is not valid due to the current state of the object. + + + Inconsistent sequencing: if used on one of the class's members, the '{0}' property is required on all particle-like members, please explicitly set '{0}' using XmlElement, XmlAnyElement or XmlArray custom attribute on class member '{1}'. + + + Cannot remove the specified item because it was not found in the specified Collection. + + + Cannot include anonymous type '{0}'. + + + SOAP-ENC:arrayType could not handle '{1}' as the length of the array. + + + Cannot serialize member of type {0}: XmlAnyElementAttribute attribute is used incorrectly. + + + 'Add' method is required for type {0} {1} of {2}. + + + Type of choice identifier '{0}' is inconsistent with type of '{1}'. Please use array of {2}. + + + XmlNamespaceDeclarations may not be used on multiple parameters or return values. + + + Member '{0}' of type {1} cannot be serialized. Members with names ending on 'Specified' suffix have special meaning to the XmlSerializer: they control serialization of optional ValueType members and have to be of type {2}. + + + Cannot assign object of type {0} to an object of type {1}. The error occurred while reading node with id + + + Explicit sequencing may not be used on parameters or return values. Please remove {0} property from custom attributes. + + + Could not find accessor for type {0}. + + + You need to add {0} to the '{1}' member. + + + {0} + + + Internal error. + + + Ambiguous choice identifier. There are several members named '{0}'. + + + Cannot serialize object of type '{0}'. Base type '{1}' has simpleContent and can only be extended by adding XmlAttribute elements. Please consider changing XmlText member of the base class to string array. + + + Invalid name character in '{0}'. + + + {0} cannot be serialized because it does not have a parameterless constructor. + + + '{0}.{1}' already has attributes. + + + Cannot serialize a cycle in a literal object graph with type {0}. + + + Unexpected two any elements for {0}:{1}. + + \ No newline at end of file diff --git a/obj/x86/Debug/MainPage.g.cs b/obj/x86/Debug/MainPage.g.cs new file mode 100644 index 0000000..8213c5f --- /dev/null +++ b/obj/x86/Debug/MainPage.g.cs @@ -0,0 +1,77 @@ +#pragma checksum "C:\Users\maxhe\source\repos\Stensel\Stensel\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "FA6EBD5C7D34A620C7BD4C295505EE7E" +//------------------------------------------------------------------------------ +// +// 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 Stensel +{ + 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"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public void Connect(int connectionId, object target) + { + switch(connectionId) + { + case 2: // MainPage.xaml line 11 + { + this.LayoutRoot = (global::Windows.UI.Xaml.Controls.Grid)(target); + } + break; + case 3: // MainPage.xaml line 16 + { + this.InputChoice = (global::Windows.UI.Xaml.Controls.Grid)(target); + } + break; + case 4: // MainPage.xaml line 22 + { + this.StenoDisplay = (global::Windows.UI.Xaml.Controls.Canvas)(target); + } + break; + case 5: // MainPage.xaml line 25 + { + this.StenoLayout = (global::Windows.UI.Xaml.Controls.Canvas)(target); + } + break; + case 6: // MainPage.xaml line 18 + { + this.midiInPortListBox = (global::Windows.UI.Xaml.Controls.ComboBox)(target); + ((global::Windows.UI.Xaml.Controls.ComboBox)this.midiInPortListBox).SelectionChanged += this.midiInPortListBox_SelectionChanged; + } + break; + case 7: // MainPage.xaml line 19 + { + this.midiOutPortListBox = (global::Windows.UI.Xaml.Controls.ComboBox)(target); + ((global::Windows.UI.Xaml.Controls.ComboBox)this.midiOutPortListBox).SelectionChanged += this.midiOutPortListBox_SelectionChanged; + } + break; + default: + break; + } + this._contentLoaded = true; + } + + /// + /// GetBindingConnector(int connectionId, object target) + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.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/obj/x86/Debug/MainPage.g.i.cs b/obj/x86/Debug/MainPage.g.i.cs new file mode 100644 index 0000000..9c3cebd --- /dev/null +++ b/obj/x86/Debug/MainPage.g.i.cs @@ -0,0 +1,53 @@ +#pragma checksum "C:\Users\maxhe\source\repos\Stensel\Stensel\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "FA6EBD5C7D34A620C7BD4C295505EE7E" +//------------------------------------------------------------------------------ +// +// 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 Stensel +{ + partial class MainPage : global::Windows.UI.Xaml.Controls.Page + { + + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.Grid LayoutRoot; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.Grid InputChoice; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.Canvas StenoDisplay; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.Canvas StenoLayout; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.ComboBox midiInPortListBox; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.ComboBox midiOutPortListBox; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private bool _contentLoaded; + + /// + /// InitializeComponent() + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.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/obj/x86/Debug/MainPage.xaml b/obj/x86/Debug/MainPage.xaml new file mode 100644 index 0000000..6a8aa6d --- /dev/null +++ b/obj/x86/Debug/MainPage.xaml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/x86/Debug/MainPage.xbf b/obj/x86/Debug/MainPage.xbf new file mode 100644 index 0000000..cd70b7a Binary files /dev/null and b/obj/x86/Debug/MainPage.xbf differ diff --git a/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt b/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt new file mode 100644 index 0000000..c1f22fb --- /dev/null +++ b/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt @@ -0,0 +1 @@ +False \ No newline at end of file diff --git a/obj/x86/Debug/ProjectArchitectures.txt b/obj/x86/Debug/ProjectArchitectures.txt new file mode 100644 index 0000000..7bf09e6 --- /dev/null +++ b/obj/x86/Debug/ProjectArchitectures.txt @@ -0,0 +1 @@ +C:\Users\maxhe\source\repos\Stensel\Stensel\Stensel.csproj;x86 diff --git a/obj/x86/Debug/ResourceHandlingTask.state b/obj/x86/Debug/ResourceHandlingTask.state new file mode 100644 index 0000000..3ef6780 Binary files /dev/null and b/obj/x86/Debug/ResourceHandlingTask.state differ diff --git a/obj/x86/Debug/Stensel.csproj.CopyComplete b/obj/x86/Debug/Stensel.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/Stensel.csproj.CoreCompileInputs.cache b/obj/x86/Debug/Stensel.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..61abc83 --- /dev/null +++ b/obj/x86/Debug/Stensel.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +82029824c6d05b5cec4653f85e4a5447dac61164 diff --git a/obj/x86/Debug/Stensel.csproj.FileListAbsolute.txt b/obj/x86/Debug/Stensel.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e5bec73 --- /dev/null +++ b/obj/x86/Debug/Stensel.csproj.FileListAbsolute.txt @@ -0,0 +1,220 @@ +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\App.xbf +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\MainPage.xbf +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Stensel.xr.xml +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Stensel.exe +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Stensel.pdb +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\resources.pri +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\AppxManifest.xml +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Core\AppxManifest.xml +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Core\Stensel.exe +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Stensel.build.appxrecipe +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Microsoft.CSharp.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ComponentModel.DataAnnotations.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Core.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Numerics.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Serialization.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.Web.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Windows.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.Linq.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.Serialization.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Microsoft.VisualBasic.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Collections.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.Tools.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.Tracing.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Globalization.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Globalization.Calendars.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Extensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Resources.ResourceManager.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Handles.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.InteropServices.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Text.Encoding.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Text.Encoding.Extensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Tasks.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Timer.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Microsoft.Win32.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.Debug.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.FileSystem.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.Sockets.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Extensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\clrjit.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\clrcompression.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Private.Uri.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.AppContext.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Buffers.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Collections.Concurrent.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Collections.Immutable.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Collections.NonGeneric.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Collections.Specialized.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ComponentModel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ComponentModel.Annotations.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ComponentModel.EventBasedAsync.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Data.Common.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.Contracts.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.DiagnosticSource.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Diagnostics.StackTrace.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Dynamic.Runtime.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Globalization.Extensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.Compression.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.Compression.ZipFile.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.FileSystem.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.IsolatedStorage.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.IO.UnmanagedMemoryStream.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Linq.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Linq.Expressions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Linq.Parallel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Linq.Queryable.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.Http.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.Http.Rtc.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.NameResolution.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.NetworkInformation.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.Requests.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.WebHeaderCollection.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.WebSockets.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Net.WebSockets.Client.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Numerics.Vectors.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Numerics.Vectors.WindowsRuntime.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ObjectModel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Private.DataContractSerialization.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Private.ServiceModel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Context.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.DispatchProxy.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Emit.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Emit.ILGeneration.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Emit.Lightweight.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.Metadata.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Reflection.TypeExtensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.InteropServices.WindowsRuntime.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Numerics.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Serialization.Json.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Serialization.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.Serialization.Xml.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.WindowsRuntime.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Runtime.WindowsRuntime.UI.Xaml.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Claims.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Cryptography.Algorithms.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Cryptography.Cng.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Cryptography.Encoding.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Cryptography.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Cryptography.X509Certificates.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Security.Principal.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.Duplex.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.Http.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.NetTcp.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.Primitives.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.ServiceModel.Security.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Text.Encoding.CodePages.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Text.RegularExpressions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Overlapped.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Tasks.Dataflow.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Tasks.Extensions.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Threading.Tasks.Parallel.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.ReaderWriter.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.XDocument.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.XmlDocument.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\System.Xml.XmlSerializer.dll +C:\Users\maxhe\source\repos\Stensel\Stensel\bin\x86\Debug\Microsoft.UI.Xaml.Markup.winmd +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\Stensel.csprojAssemblyReference.cache +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\App.g.i.cs +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\App.g.cs +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\MainPage.g.i.cs +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\MainPage.g.cs +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\XamlTypeInfo.g.cs +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\App.xaml +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\MainPage.xaml +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\App.xbf +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\MainPage.xbf +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\XamlSaveStateFile.xml +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\Stensel.csproj.CoreCompileInputs.cache +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\Stensel.csproj.CopyComplete +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\Stensel.exe +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\Stensel.pdb +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\ResourceHandlingTask.state +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Diagnostics.Debug.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Buffers.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Dynamic.Runtime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Globalization.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.UnmanagedMemoryStream.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.ReaderWriter.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlSerializer.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\priconfig.xml +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\priconfig.xml.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\unfiltered.layout.resfiles +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\unfiltered.layout.resfiles.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\filtered.layout.resfiles +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\filtered.layout.resfiles.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\excluded.layout.resfiles +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\excluded.layout.resfiles.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\resources.resfiles +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\resources.resfiles.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\pri.resfiles +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\pri.resfiles.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\qualifiers.txt +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\qualifiers.txt.intermediate +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\MultipleQualifiersPerDimensionFound.txt +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\ProjectArchitectures.txt +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\.winmd_cache\$Microsoft.UI.Xaml.Markup.winmd_636758516200000000.json diff --git a/obj/x86/Debug/Stensel.csprojAssemblyReference.cache b/obj/x86/Debug/Stensel.csprojAssemblyReference.cache new file mode 100644 index 0000000..71075a4 Binary files /dev/null and b/obj/x86/Debug/Stensel.csprojAssemblyReference.cache differ diff --git a/obj/x86/Debug/Stensel.exe b/obj/x86/Debug/Stensel.exe new file mode 100644 index 0000000..9550deb Binary files /dev/null and b/obj/x86/Debug/Stensel.exe differ diff --git a/obj/x86/Debug/Stensel.pdb b/obj/x86/Debug/Stensel.pdb new file mode 100644 index 0000000..22f7044 Binary files /dev/null and b/obj/x86/Debug/Stensel.pdb differ diff --git a/obj/x86/Debug/Stensel.xr.xml b/obj/x86/Debug/Stensel.xr.xml new file mode 100644 index 0000000..0e066a0 --- /dev/null +++ b/obj/x86/Debug/Stensel.xr.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/XamlSaveStateFile.xml b/obj/x86/Debug/XamlSaveStateFile.xml new file mode 100644 index 0000000..156bdcc --- /dev/null +++ b/obj/x86/Debug/XamlSaveStateFile.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/obj/x86/Debug/XamlTypeInfo.g.cs b/obj/x86/Debug/XamlTypeInfo.g.cs new file mode 100644 index 0000000..5fda2fc --- /dev/null +++ b/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 Stensel +{ + public partial class App : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Stensel.Stensel_XamlTypeInfo.XamlMetaDataProvider __appProvider; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + private global::Stensel.Stensel_XamlTypeInfo.XamlMetaDataProvider _AppProvider + { + get + { + if (__appProvider == null) + { + __appProvider = new global::Stensel.Stensel_XamlTypeInfo.XamlMetaDataProvider(); + } + return __appProvider; + } + } + + /// + /// GetXamlType(Type) + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.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"," 10.0.17.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"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::Windows.UI.Xaml.Markup.XmlnsDefinition[] GetXmlnsDefinitions() + { + return _AppProvider.GetXmlnsDefinitions(); + } + } +} + +namespace Stensel.Stensel_XamlTypeInfo +{ + /// + /// Main class for providing metadata for the app or library + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public sealed class XamlMetaDataProvider : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider + { + private global::Stensel.Stensel_XamlTypeInfo.XamlTypeInfoProvider _provider = null; + + private global::Stensel.Stensel_XamlTypeInfo.XamlTypeInfoProvider Provider + { + get + { + if (_provider == null) + { + _provider = new global::Stensel.Stensel_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"," 10.0.17.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/obj/x86/Debug/embed/embed.resfiles b/obj/x86/Debug/embed/embed.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/embed/embed.resfiles.intermediate b/obj/x86/Debug/embed/embed.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/excluded.layout.resfiles b/obj/x86/Debug/excluded.layout.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/excluded.layout.resfiles.intermediate b/obj/x86/Debug/excluded.layout.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/filtered.layout.resfiles b/obj/x86/Debug/filtered.layout.resfiles new file mode 100644 index 0000000..cf691f9 --- /dev/null +++ b/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 +MainPage.xbf +Stensel.xr.xml +Properties\Default.rd.xml diff --git a/obj/x86/Debug/filtered.layout.resfiles.intermediate b/obj/x86/Debug/filtered.layout.resfiles.intermediate new file mode 100644 index 0000000..cf691f9 --- /dev/null +++ b/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 +MainPage.xbf +Stensel.xr.xml +Properties\Default.rd.xml diff --git a/obj/x86/Debug/intermediatexaml/Stensel.exe b/obj/x86/Debug/intermediatexaml/Stensel.exe new file mode 100644 index 0000000..9fe75f4 Binary files /dev/null and b/obj/x86/Debug/intermediatexaml/Stensel.exe differ diff --git a/obj/x86/Debug/intermediatexaml/Stensel.pdb b/obj/x86/Debug/intermediatexaml/Stensel.pdb new file mode 100644 index 0000000..8370ad9 Binary files /dev/null and b/obj/x86/Debug/intermediatexaml/Stensel.pdb differ diff --git a/obj/x86/Debug/pri.resfiles b/obj/x86/Debug/pri.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/pri.resfiles.intermediate b/obj/x86/Debug/pri.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/priconfig.xml b/obj/x86/Debug/priconfig.xml new file mode 100644 index 0000000..2ead5df --- /dev/null +++ b/obj/x86/Debug/priconfig.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x86/Debug/priconfig.xml.intermediate b/obj/x86/Debug/priconfig.xml.intermediate new file mode 100644 index 0000000..2ead5df --- /dev/null +++ b/obj/x86/Debug/priconfig.xml.intermediate @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x86/Debug/qualifiers.txt b/obj/x86/Debug/qualifiers.txt new file mode 100644 index 0000000..55907fd --- /dev/null +++ b/obj/x86/Debug/qualifiers.txt @@ -0,0 +1,3 @@ +AlternateForm=UNPLATED +Scale=200 +TargetSize=24 diff --git a/obj/x86/Debug/qualifiers.txt.intermediate b/obj/x86/Debug/qualifiers.txt.intermediate new file mode 100644 index 0000000..55907fd --- /dev/null +++ b/obj/x86/Debug/qualifiers.txt.intermediate @@ -0,0 +1,3 @@ +AlternateForm=UNPLATED +Scale=200 +TargetSize=24 diff --git a/obj/x86/Debug/resources.resfiles b/obj/x86/Debug/resources.resfiles new file mode 100644 index 0000000..2ebc025 --- /dev/null +++ b/obj/x86/Debug/resources.resfiles @@ -0,0 +1,62 @@ +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Buffers.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Diagnostics.Debug.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Dynamic.Runtime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Globalization.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.UnmanagedMemoryStream.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.ReaderWriter.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlSerializer.SR.resw diff --git a/obj/x86/Debug/resources.resfiles.intermediate b/obj/x86/Debug/resources.resfiles.intermediate new file mode 100644 index 0000000..2ebc025 --- /dev/null +++ b/obj/x86/Debug/resources.resfiles.intermediate @@ -0,0 +1,62 @@ +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Buffers.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Diagnostics.Debug.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Dynamic.Runtime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Globalization.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.IO.UnmanagedMemoryStream.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.ReaderWriter.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlDocument.SR.resw +C:\Users\maxhe\source\repos\Stensel\Stensel\obj\x86\Debug\FxResources.System.Xml.XmlSerializer.SR.resw diff --git a/obj/x86/Debug/unfiltered.layout.resfiles b/obj/x86/Debug/unfiltered.layout.resfiles new file mode 100644 index 0000000..cf691f9 --- /dev/null +++ b/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 +MainPage.xbf +Stensel.xr.xml +Properties\Default.rd.xml diff --git a/obj/x86/Debug/unfiltered.layout.resfiles.intermediate b/obj/x86/Debug/unfiltered.layout.resfiles.intermediate new file mode 100644 index 0000000..cf691f9 --- /dev/null +++ b/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 +MainPage.xbf +Stensel.xr.xml +Properties\Default.rd.xml