commit 5f3a04a93d0c231d0a453b7b8242791e88a576bf Author: Marcel Date: Sun Nov 18 18:49:40 2018 +0100 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..878dbd3 --- /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..c3ff873 --- /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 HospitalServerManager +{ + /// + /// Zapewnia zachowanie specyficzne dla aplikacji, aby uzupełnić domyślną klasę aplikacji. + /// + sealed partial class App : Application + { + /// + /// Inicjuje pojedynczy obiekt aplikacji. Jest to pierwszy wiersz napisanego kodu + /// wykonywanego i jest logicznym odpowiednikiem metod main() lub WinMain(). + /// + public App() + { + this.InitializeComponent(); + this.Suspending += OnSuspending; + } + + /// + /// Wywoływane, gdy aplikacja jest uruchamiana normalnie przez użytkownika końcowego. Inne punkty wejścia + /// będą używane, kiedy aplikacja zostanie uruchomiona w celu otworzenia określonego pliku. + /// + /// Szczegóły dotyczące żądania uruchomienia i procesu. + protected override void OnLaunched(LaunchActivatedEventArgs e) + { + Frame rootFrame = Window.Current.Content as Frame; + + // Nie powtarzaj inicjowania aplikacji, gdy w oknie znajduje się już zawartość, + // upewnij się tylko, że okno jest aktywne + if (rootFrame == null) + { + // Utwórz ramkę, która będzie pełnić funkcję kontekstu nawigacji, i przejdź do pierwszej strony + rootFrame = new Frame(); + + rootFrame.NavigationFailed += OnNavigationFailed; + + if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) + { + //TODO: Załaduj stan z wstrzymanej wcześniej aplikacji + } + + // Umieść ramkę w bieżącym oknie + Window.Current.Content = rootFrame; + } + + if (e.PrelaunchActivated == false) + { + if (rootFrame.Content == null) + { + // Kiedy stos nawigacji nie jest przywrócony, przejdź do pierwszej strony, + // konfigurując nową stronę przez przekazanie wymaganych informacji jako + // parametr + rootFrame.Navigate(typeof(View.MainFrameView), e.Arguments); + } + // Upewnij się, ze bieżące okno jest aktywne + Window.Current.Activate(); + } + } + + /// + /// Wywoływane, gdy nawigacja do konkretnej strony nie powiedzie się + /// + /// Ramka, do której nawigacja nie powiodła się + /// Szczegóły dotyczące niepowodzenia nawigacji + void OnNavigationFailed(object sender, NavigationFailedEventArgs e) + { + throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + } + + /// + /// Wywoływane, gdy wykonanie aplikacji jest wstrzymywane. Stan aplikacji jest zapisywany + /// bez wiedzy o tym, czy aplikacja zostanie zakończona, czy wznowiona z niezmienioną zawartością + /// pamięci. + /// + /// Źródło żądania wstrzymania. + /// Szczegóły żądania wstrzymania. + private void OnSuspending(object sender, SuspendingEventArgs e) + { + var deferral = e.SuspendingOperation.GetDeferral(); + //TODO: Zapisz stan aplikacji i zatrzymaj wszelkie aktywności w tle + 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/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/HospitalServerManager.csproj b/HospitalServerManager.csproj new file mode 100644 index 0000000..9a95f5f --- /dev/null +++ b/HospitalServerManager.csproj @@ -0,0 +1,175 @@ + + + + + Debug + x86 + {26C1F966-632C-4EFE-B214-70E9F0917D10} + AppContainerExe + Properties + HospitalServerManager + HospitalServerManager + pl-PL + UAP + 10.0.17134.0 + 10.0.17134.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + HospitalServerManager_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\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 + + + + + + + + + + + + + + + + + + + MainFrameView.xaml + + + PatientsPage.xaml + + + ColumnListView.xaml + + + + + Designer + + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + + + 6.1.7 + + + + + 14.0 + + + + \ No newline at end of file diff --git a/HospitalServerManager_TemporaryKey.pfx b/HospitalServerManager_TemporaryKey.pfx new file mode 100644 index 0000000..0ec6bed Binary files /dev/null and b/HospitalServerManager_TemporaryKey.pfx differ diff --git a/InterfacesAndEnums/Enums.cs b/InterfacesAndEnums/Enums.cs new file mode 100644 index 0000000..3ee2162 --- /dev/null +++ b/InterfacesAndEnums/Enums.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.InterfacesAndEnums +{ + public enum AcademicDegrees + { + [Description("lek. rez.")] + LekRez, + [Description("lek. med.")] + LekMed, + [Description("lek. spec.")] + LekSpec, + [Description("dr")] + Dr, + [Description("dr hab.")] + DrHab, + [Description("prof.")] + Prof, + } + public enum MedicalSpecializations + { + [Description("Chirurgia ogólna")] + GeneralSurgery, + [Description("Chirurgia klatki piersiowej")] + ThoracicSurgery, + [Description("Chirurgia sercowo - naczyniowa")] + CardiovascuralSurgery, + [Description("Chirurgia układu nerwowego")] + NewvousSurgery, + [Description("Urologia")] + Urology, + [Description("Chirurgia szczękowo - twarzowa")] + MaxillofacialSurgery, + [Description("Chirurgia urazowa")] + AccidentSurgery, + } + public enum JobPositions + { + + [Description("Lekarz ogólny")] + GeneralPracticioner, + [Description("Lekarz prowadzący")] + AttendingPhysician, + [Description("Zastępca kierownika")] + ViceManager, + [Description("Kierownik")] + Manager, + [Description("Ordynator")] + Director, + } + public enum PatientState + { + [Description("KRYTYCZNY")] + Critical, + [Description("STABILNY")] + Stable, + [Description("ZAGROŻONY")] + Endangered, + [Description("NULL")] + None, + } + + + public enum Sex + { + [Description("K")] + K, + [Description("M")] + M, + } +} diff --git a/InterfacesAndEnums/Extensions.cs b/InterfacesAndEnums/Extensions.cs new file mode 100644 index 0000000..763855d --- /dev/null +++ b/InterfacesAndEnums/Extensions.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.InterfacesAndEnums +{ + public static class Extensions + { + public static string GetEnumDescription(this Enum e) + { + // DescriptionAttribute.GetCustomAttributes(e.GetType().GetMember(())) + var enumMember = e.GetType().GetMember(e.ToString()).FirstOrDefault(); + DescriptionAttribute descriptionAttribute = + enumMember == null + ? default(DescriptionAttribute) + : enumMember.GetCustomAttribute(typeof(DescriptionAttribute)) as DescriptionAttribute; + return descriptionAttribute.Description; + } + public static T GetEnumFromDescription(this string description) + { + // Found in: https://stackoverflow.com/questions/4367723/get-enum-from-description-attribute + + var type = typeof(T); + if (!type.IsEnum) + throw new InvalidOperationException(); + foreach (var field in type.GetFields()) + { + DescriptionAttribute attribute = Attribute.GetCustomAttribute(field, + typeof(DescriptionAttribute)) as DescriptionAttribute; + if (attribute != null) + { + if (attribute.Description == description) + return (T)field.GetValue(null); + } + else + { + if (field.Name == description) + return (T)field.GetValue(null); + } + } + throw new ArgumentException("Not found.", "description"); + + } + } +} diff --git a/InterfacesAndEnums/Interfaces.cs b/InterfacesAndEnums/Interfaces.cs new file mode 100644 index 0000000..23d9cae --- /dev/null +++ b/InterfacesAndEnums/Interfaces.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.InterfacesAndEnums +{ + public interface ISqlTableModelable : IPrimaryKeyGetable + { + List GetColumnNames(); + } + public interface IPrimaryKeyGetable + { + string GetPrimaryKey(); + string GetPrimaryKeyName(); + } +} diff --git a/Model/Basic/Admission.cs b/Model/Basic/Admission.cs new file mode 100644 index 0000000..164e7f3 --- /dev/null +++ b/Model/Basic/Admission.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.Model.Basic +{ + class Admission + { + } +} diff --git a/Model/Basic/Diagnosis.cs b/Model/Basic/Diagnosis.cs new file mode 100644 index 0000000..3dc9ac2 --- /dev/null +++ b/Model/Basic/Diagnosis.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.Model.Basic +{ + class Diagnosis + { + } +} diff --git a/Model/Basic/Doctor.cs b/Model/Basic/Doctor.cs new file mode 100644 index 0000000..714fbeb --- /dev/null +++ b/Model/Basic/Doctor.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; + +namespace HospitalServerManager.Model.Basic +{ + class Doctor : SqlTable + { + //public int DoctorId { get; protected set; } + public string Name { get; protected set; } + public string Surname { get; protected set; } + private AcademicDegrees _AcademicDegree { get; set; } + public string AcademicDegree { get => _AcademicDegree.GetEnumDescription(); } + private MedicalSpecializations _MedicalSpecialization { get; set; } + public string MedicalSpecialization { get => _MedicalSpecialization.GetEnumDescription(); } + public DateTime DateOfEmployment { get; protected set; } + private JobPositions _JobPosition { get; set; } + public string JobPosition { get => _JobPosition.GetEnumDescription(); } + + + + protected Doctor() : base() + { + } + public Doctor(int primaryKey, string name, string surname, AcademicDegrees academicDegree, + MedicalSpecializations medicalSpecialization, DateTime dateOfEmployment, JobPositions jobPosition) + : base(primaryKey.ToString(), "Id_Lekarza", new List { }) + { + Name = name; + Surname = surname; + _AcademicDegree = academicDegree; + _MedicalSpecialization = medicalSpecialization; + DateOfEmployment = dateOfEmployment; + _JobPosition = jobPosition; + } + /// + /// List have to be in right order (doctor id, name, surname, academic degree, medical specialization, + /// date of employment, jobposition). + /// + /// + public Doctor(List listOfValues) : base(listOfValues[0], "Id_Lekarza", new List { }) + { + Name = listOfValues[1]; + Surname = listOfValues[2]; + _AcademicDegree = listOfValues[3].GetEnumFromDescription(); + _MedicalSpecialization = listOfValues[4].GetEnumFromDescription(); + DateOfEmployment = DateTime.Parse(listOfValues[5]); + _JobPosition = listOfValues[6].GetEnumFromDescription(); + } + } +} diff --git a/Model/Basic/Patient.cs b/Model/Basic/Patient.cs new file mode 100644 index 0000000..d84bbaa --- /dev/null +++ b/Model/Basic/Patient.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; + +namespace HospitalServerManager.Model.Basic +{ + internal class Patient : SqlTable + { + /*public override string PrimaryKeyNameToSql { get; protected set; } + public override string GetPrimaryKey => PeselNumber;*/ + public string Surname { get; protected set; } + public string Name { get; protected set; } + public DateTime BirthDate { get; protected set; } + public PatientState _PatientState { get; protected set; } + /*public string PatientState + { + get + { + if (_PatientState.GetEnumDescription() == "NULL") + return string.Empty; + else + return _PatientState.GetEnumDescription(); + } + }*/ + public Sex _PatientSex { get; protected set; } + // public string PatientSex { get => _PatientSex.GetEnumDescription(); } + + + + protected Patient() : base() + { + } + public Patient(string primaryKey, string surname, string name, DateTime birthDate, PatientState patientState, + Sex patientSex) : base(primaryKey, "PESEL", new List()) + { + if (primaryKey.Length < 11 || primaryKey.Length > 11) + throw new FormatException("PESEL musi mieć 11 cyfr"); + PrimaryKey = primaryKey; + Surname = surname; + Name = name; + BirthDate = birthDate; + _PatientState = patientState; + _PatientSex = patientSex; + } + /// + /// List have to be in right order (pesel, surname, name, birth date, patient state, patient sex). + /// + /// + public Patient(List listOfValues) : base(listOfValues[0], "PESEL", new List()) + { + // TODO: Dodać zabezpieczenia dla pozostałych wartosci + // TODO: VALIDATOR! Lista kolumn nazw; + if (listOfValues[0].Length < 11 || listOfValues[0].Length > 11) + throw new FormatException("PESEL musi mieć 11 cyfr"); + PrimaryKey = listOfValues[0]; + Surname = listOfValues[1]; + Name = listOfValues[2]; + BirthDate = DateTime.Parse(listOfValues[3]); + _PatientState = listOfValues[4].GetEnumFromDescription(); + _PatientSex = (Sex)Enum.Parse(typeof(Sex), listOfValues[5]); + } + } +} diff --git a/Model/Basic/Room.cs b/Model/Basic/Room.cs new file mode 100644 index 0000000..fa1cd5b --- /dev/null +++ b/Model/Basic/Room.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.Model.Basic +{ + class Room + { + } +} diff --git a/Model/Basic/SqlTable.cs b/Model/Basic/SqlTable.cs new file mode 100644 index 0000000..721ad03 --- /dev/null +++ b/Model/Basic/SqlTable.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; + +namespace HospitalServerManager.Model.Basic +{ + internal abstract class SqlTable : ISqlTableModelable + { + // TODO: Dodac table do klas modelu + public string PrimaryKey { get; protected set; } + protected string PrimaryKeyName { get; set; } + protected List ColumnNames { get; set; } + protected SqlTable() + { + PrimaryKey = "BRAK"; + PrimaryKeyName = "BRAK"; + ColumnNames = new List(); + } + public SqlTable(string primaryKey, string primaryKeyName, List columnNames) + { + PrimaryKey = primaryKey; + PrimaryKeyName = primaryKeyName; + ColumnNames = columnNames; + } + + public string GetPrimaryKey() + { + return PrimaryKey; + } + + public string GetPrimaryKeyName() + { + return PrimaryKeyName; + } + + public List GetColumnNames() + { + return ColumnNames; + } + } +} diff --git a/Model/Basic/Surgery.cs b/Model/Basic/Surgery.cs new file mode 100644 index 0000000..7d3435a --- /dev/null +++ b/Model/Basic/Surgery.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.Model.Basic +{ + class Surgery + { + } +} diff --git a/Model/ModelRoster.cs b/Model/ModelRoster.cs new file mode 100644 index 0000000..1d1704a --- /dev/null +++ b/Model/ModelRoster.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; +using HospitalServerManager.Model.Basic; + +namespace HospitalServerManager.Model +{ + class ModelRoster + { + private List _modelsList = new List(); + public IEnumerable ModelsEnumerable { get => _modelsList; } + //private Controllers.DatabaseReader DatabaseReader = new Controllers.DatabaseReader(); + public ModelRoster() + { + /* Read(); + _modelsList.Clear(); + _modelsList.AddRange(DatabaseReader.LastReadedModels);*/ + } + + public async void Read() + { + /* await DatabaseReader.ReadDataFromDatabase(@"Data Source=MARCEL\SQLEXPRESS;Initial Catalog = DB_s439397; Integrated Security = true;", + "SELECT * FROM Pacjenci", typeof(Patient));*/ + + } + public void AddRange(IEnumerable modelsList) + { + _modelsList.Clear(); + _modelsList.AddRange(modelsList); + } + } +} diff --git a/Model/RangeObservableCollection.cs b/Model/RangeObservableCollection.cs new file mode 100644 index 0000000..85f1ef8 --- /dev/null +++ b/Model/RangeObservableCollection.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Collections.Specialized; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.Model +{ + class RangeObservableCollection : ObservableCollection + { + /// + /// Adds the elements of the specified collection to the end of the ObservableCollection(Of T). + /// + public void AddRange(IEnumerable collection) + { + if (collection == null) throw new ArgumentNullException("collection"); + + foreach (var i in collection) Items.Add(i); + OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); + } + + /// + /// Removes the first occurence of each item in the specified collection from ObservableCollection(Of T). + /// + public void RemoveRange(IEnumerable collection) + { + if (collection == null) throw new ArgumentNullException("collection"); + + foreach (var i in collection) Items.Remove(i); + OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); + } + + /// + /// Clears the current collection and replaces it with the specified item. + /// + public void Replace(T item) + { + ReplaceRange(new T[] { item }); + } + + /// + /// Clears the current collection and replaces it with the specified collection. + /// + public void ReplaceRange(IEnumerable collection) + { + if (collection == null) throw new ArgumentNullException("collection"); + + Items.Clear(); + foreach (var i in collection) Items.Add(i); + OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); + } + + /// + /// Initializes a new instance of the System.Collections.ObjectModel.ObservableCollection(Of T) class. + /// + public RangeObservableCollection() + : base() { } + + /// + /// Initializes a new instance of the System.Collections.ObjectModel.ObservableCollection(Of T) class that contains elements copied from the specified collection. + /// + /// collection: The collection from which the elements are copied. + /// The collection parameter cannot be null. + public RangeObservableCollection(IEnumerable collection) + : base(collection) { } + } +} + diff --git a/Package.appxmanifest b/Package.appxmanifest new file mode 100644 index 0000000..d389951 --- /dev/null +++ b/Package.appxmanifest @@ -0,0 +1,29 @@ + + + + + + HospitalServerManager + MarcelPC + 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..92293b1 --- /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("HospitalServerManager")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HospitalServerManager")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[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..c36f9e7 --- /dev/null +++ b/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/View/MainFrameView.xaml b/View/MainFrameView.xaml new file mode 100644 index 0000000..a38da51 --- /dev/null +++ b/View/MainFrameView.xaml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + diff --git a/View/MainFrameView.xaml.cs b/View/MainFrameView.xaml.cs new file mode 100644 index 0000000..8f5e501 --- /dev/null +++ b/View/MainFrameView.xaml.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +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; + +//Szablon elementu Pusta strona jest udokumentowany na stronie https://go.microsoft.com/fwlink/?LinkId=234238 + +namespace HospitalServerManager.View +{ + /// + /// Pusta strona, która może być używana samodzielnie lub do której można nawigować wewnątrz ramki. + /// + public sealed partial class MainFrameView : Page + { + public MainFrameView() + { + this.InitializeComponent(); + } + private void AppBarButton_Click(object sender, RoutedEventArgs e) + { + mainFrame.Navigate(typeof(PatientsPage)); + //Frame.Navigate(typeof(PatientsPage)); + } + } +} diff --git a/View/PatientsPage.xaml b/View/PatientsPage.xaml new file mode 100644 index 0000000..51fcf5a --- /dev/null +++ b/View/PatientsPage.xaml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/View/PatientsPage.xaml.cs b/View/PatientsPage.xaml.cs new file mode 100644 index 0000000..d4b46a0 --- /dev/null +++ b/View/PatientsPage.xaml.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +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; + +//Szablon elementu Pusta strona jest udokumentowany na stronie https://go.microsoft.com/fwlink/?LinkId=234238 + +namespace HospitalServerManager.View +{ + /// + /// Pusta strona, która może być używana samodzielnie lub do której można nawigować wewnątrz ramki. + /// + public sealed partial class PatientsPage : Page + { + public PatientsPage() + { + this.InitializeComponent(); + + } + } +} diff --git a/View/UserControls/ColumnListView.xaml b/View/UserControls/ColumnListView.xaml new file mode 100644 index 0000000..a41a775 --- /dev/null +++ b/View/UserControls/ColumnListView.xaml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/View/UserControls/ColumnListView.xaml.cs b/View/UserControls/ColumnListView.xaml.cs new file mode 100644 index 0000000..57239a6 --- /dev/null +++ b/View/UserControls/ColumnListView.xaml.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +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; + +// Szablon elementu Kontrolka użytkownika jest udokumentowany na stronie https://go.microsoft.com/fwlink/?LinkId=234236 + +namespace HospitalServerManager.View.UserControls +{ + public sealed partial class ColumnListView : UserControl + { + public ColumnListView() + { + this.InitializeComponent(); + } + } +} diff --git a/ViewModel/Controllers/DatabaseReader.cs b/ViewModel/Controllers/DatabaseReader.cs new file mode 100644 index 0000000..2ba2dc1 --- /dev/null +++ b/ViewModel/Controllers/DatabaseReader.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; + +namespace HospitalServerManager.ViewModel.Controllers +{ + class DatabaseReader + { + private List _ModelsList { get; set; } + + public IReadOnlyList LastReadedModels { get => _ModelsList; } + public DatabaseReader() + { + _ModelsList = new List(); + + } + /// + /// Reads the data from the database and write models in LastReadedModels. The model have to implements ISqlTableModelable. + /// + /// Connection string + /// Command to execute + /// Type of model + /// True if reading ends in right way + public async Task ReadDataFromDatabase(string connectionString, string sqlCommand, Type typeOfModel) + { + // TODO: Validate if interface is implemented; + using (SqlConnection connection = new SqlConnection(connectionString)) + { + try + { + await connection.OpenAsync(); + } + catch (Exception e) + { + throw new Exception("Nie ma możliwości połączyć się z DB."); + + } + if (connection.State == ConnectionState.Open) + { + + using (SqlCommand cmd = connection.CreateCommand()) + { + + cmd.CommandText = sqlCommand; + // TODO: Dodac validator sprawdzajacy komende? + using (SqlDataReader reader = await cmd.ExecuteReaderAsync()) + { + + int fieldCount = reader.FieldCount; + _ModelsList.Clear(); + //List sqlTablesModels = new List(); + while (await reader.ReadAsync()) + { + List valueList = new List(); + for (int i = 0; i < fieldCount; i++) + { + if (String.IsNullOrEmpty(reader[i].ToString())) + valueList.Add("NULL"); + else + valueList.Add(reader[i].ToString()); + } + var model = Activator.CreateInstance(typeOfModel, valueList); + + _ModelsList.Add(model as ISqlTableModelable); + } + return true; + } + } + } + return false; + } + + + } + } +} diff --git a/ViewModel/PatientViewModel.cs b/ViewModel/PatientViewModel.cs new file mode 100644 index 0000000..290db08 --- /dev/null +++ b/ViewModel/PatientViewModel.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HospitalServerManager.ViewModel +{ + class PatientViewModel + { + public string PrimaryKey { get; private set; } + public string Name { get; private set; } + public string Surname { get; private set; } + public DateTime BirthDate { get; private set; } + public string PatientState { get; private set; } + public string PatientSex { get; private set; } + + public PatientViewModel(Model.Basic.Patient patient) + { + + } + } +} diff --git a/ViewModel/RosterViewModel.cs b/ViewModel/RosterViewModel.cs new file mode 100644 index 0000000..e3b1f2f --- /dev/null +++ b/ViewModel/RosterViewModel.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using HospitalServerManager.InterfacesAndEnums; +using HospitalServerManager.Model; + +namespace HospitalServerManager.ViewModel +{ + class RosterViewModel + { + private ModelRoster _Roster { get; set; } + private Controllers.DatabaseReader DbReader { get; set; } + private List ModelsList => _Roster.ModelsEnumerable.ToList(); + public RangeObservableCollection ModelsCollection = new RangeObservableCollection(); + + public RosterViewModel() + { + DbReader = new Controllers.DatabaseReader(); + _Roster = new ModelRoster(); + Read(); + + } + public async void Read() + { + await DbReader.ReadDataFromDatabase(@"Data Source=MARCEL\SQLEXPRESS;Initial Catalog = DB_s439397; Integrated Security = true;", + "SELECT * FROM Pacjenci", typeof(Model.Basic.Patient)); + _Roster.AddRange(DbReader.LastReadedModels); + ModelsCollection.AddRange(ModelsList); + } + } +} diff --git a/bin/x86/Debug/App.xbf b/bin/x86/Debug/App.xbf new file mode 100644 index 0000000..21d2d0f 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..21d2d0f 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..7c7b3fa --- /dev/null +++ b/bin/x86/Debug/AppX/AppxManifest.xml @@ -0,0 +1,50 @@ + + + + + + + HospitalServerManager + MarcelPC + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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/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/HospitalServerManager.exe b/bin/x86/Debug/AppX/HospitalServerManager.exe new file mode 100644 index 0000000..aa73618 Binary files /dev/null and b/bin/x86/Debug/AppX/HospitalServerManager.exe differ diff --git a/bin/x86/Debug/AppX/HospitalServerManager.xr.xml b/bin/x86/Debug/AppX/HospitalServerManager.xr.xml new file mode 100644 index 0000000..ffa90d0 --- /dev/null +++ b/bin/x86/Debug/AppX/HospitalServerManager.xr.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/AppX/Microsoft.CSharp.dll b/bin/x86/Debug/AppX/Microsoft.CSharp.dll new file mode 100644 index 0000000..7dfdf4a Binary files /dev/null and b/bin/x86/Debug/AppX/Microsoft.CSharp.dll 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..0accae8 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..5b80a28 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..c36f9e7 --- /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/System.AppContext.dll b/bin/x86/Debug/AppX/System.AppContext.dll new file mode 100644 index 0000000..2b115b3 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..095ca4f 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..e80c17b 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..89cb940 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..7b97b85 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..0b436ce 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..2ac408a 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..1a8d63f Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.Composition.dll b/bin/x86/Debug/AppX/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..501f454 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.Composition.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..3ef9cac 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..f0be2b1 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.Primitives.dll b/bin/x86/Debug/AppX/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b46df34 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.ComponentModel.TypeConverter.dll b/bin/x86/Debug/AppX/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..0623a71 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.TypeConverter.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..5aeb253 Binary files /dev/null and b/bin/x86/Debug/AppX/System.ComponentModel.dll differ diff --git a/bin/x86/Debug/AppX/System.Configuration.dll b/bin/x86/Debug/AppX/System.Configuration.dll new file mode 100644 index 0000000..f72e662 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Configuration.dll differ diff --git a/bin/x86/Debug/AppX/System.Console.dll b/bin/x86/Debug/AppX/System.Console.dll new file mode 100644 index 0000000..7d923d3 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Console.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..bf95166 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..b311180 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Data.Common.dll differ diff --git a/bin/x86/Debug/AppX/System.Data.SqlClient.dll b/bin/x86/Debug/AppX/System.Data.SqlClient.dll new file mode 100644 index 0000000..91f460f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Data.SqlClient.dll differ diff --git a/bin/x86/Debug/AppX/System.Data.dll b/bin/x86/Debug/AppX/System.Data.dll new file mode 100644 index 0000000..18a3785 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Data.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..26b450c 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..b71d083 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..4bef055 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.FileVersionInfo.dll b/bin/x86/Debug/AppX/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..dec3aa9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.Process.dll b/bin/x86/Debug/AppX/System.Diagnostics.Process.dll new file mode 100644 index 0000000..d1adebe Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Process.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..4c5cab2 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.TextWriterTraceListener.dll b/bin/x86/Debug/AppX/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..74976ad Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.TextWriterTraceListener.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..93991dd Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll differ diff --git a/bin/x86/Debug/AppX/System.Diagnostics.TraceSource.dll b/bin/x86/Debug/AppX/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..80f55b7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.TraceSource.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..4389873 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll differ diff --git a/bin/x86/Debug/AppX/System.Drawing.Primitives.dll b/bin/x86/Debug/AppX/System.Drawing.Primitives.dll new file mode 100644 index 0000000..6effe3d Binary files /dev/null and b/bin/x86/Debug/AppX/System.Drawing.Primitives.dll differ diff --git a/bin/x86/Debug/AppX/System.Drawing.dll b/bin/x86/Debug/AppX/System.Drawing.dll new file mode 100644 index 0000000..e9292f9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Drawing.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..d3605f9 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..82eb3b6 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..d09a249 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..5bd0c3b Binary files /dev/null and b/bin/x86/Debug/AppX/System.Globalization.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.Compression.FileSystem.dll b/bin/x86/Debug/AppX/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..e7a035d Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.Compression.FileSystem.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..3727e95 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..3410b2f 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.DriveInfo.dll b/bin/x86/Debug/AppX/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..9ea726d Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.FileSystem.DriveInfo.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..ac3eb77 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.Watcher.dll b/bin/x86/Debug/AppX/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a51ab51 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.FileSystem.Watcher.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..baa4bb7 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..7e245a4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.MemoryMappedFiles.dll b/bin/x86/Debug/AppX/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..c0b7dc4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.Pipes.dll b/bin/x86/Debug/AppX/System.IO.Pipes.dll new file mode 100644 index 0000000..bdbb86a Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.Pipes.dll differ diff --git a/bin/x86/Debug/AppX/System.IO.Ports.dll b/bin/x86/Debug/AppX/System.IO.Ports.dll new file mode 100644 index 0000000..0b2cab4 Binary files /dev/null and b/bin/x86/Debug/AppX/System.IO.Ports.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..310fba9 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..8cf7362 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..977abf0 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..575ccc3 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..5f7e227 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..00bb7d7 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..da99ff0 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..cbac673 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Http.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.HttpListener.dll b/bin/x86/Debug/AppX/System.Net.HttpListener.dll new file mode 100644 index 0000000..09bd439 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.HttpListener.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Mail.dll b/bin/x86/Debug/AppX/System.Net.Mail.dll new file mode 100644 index 0000000..953c962 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Mail.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..12ffbec 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..b761ead Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Ping.dll b/bin/x86/Debug/AppX/System.Net.Ping.dll new file mode 100644 index 0000000..1483dfc Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Ping.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..6f7bf12 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..cba0672 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Requests.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.Security.dll b/bin/x86/Debug/AppX/System.Net.Security.dll new file mode 100644 index 0000000..81f218a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Security.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.ServicePoint.dll b/bin/x86/Debug/AppX/System.Net.ServicePoint.dll new file mode 100644 index 0000000..0e67daf Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.ServicePoint.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..9c54633 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.Sockets.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.WebClient.dll b/bin/x86/Debug/AppX/System.Net.WebClient.dll new file mode 100644 index 0000000..ceddd6f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebClient.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..1e9ebf0 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x86/Debug/AppX/System.Net.WebProxy.dll b/bin/x86/Debug/AppX/System.Net.WebProxy.dll new file mode 100644 index 0000000..8791aab Binary files /dev/null and b/bin/x86/Debug/AppX/System.Net.WebProxy.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..9a9c82a 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..0007ce7 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..5a69ac0 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..9499811 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..206e86a 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..e0f1b7d 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..e86e339 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..e7d6cde 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..b3bd72c 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..43f153c Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.Uri.dll differ diff --git a/bin/x86/Debug/AppX/System.Private.Xml.Linq.dll b/bin/x86/Debug/AppX/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..b3a0ab1 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.Xml.Linq.dll differ diff --git a/bin/x86/Debug/AppX/System.Private.Xml.dll b/bin/x86/Debug/AppX/System.Private.Xml.dll new file mode 100644 index 0000000..a4d1faf Binary files /dev/null and b/bin/x86/Debug/AppX/System.Private.Xml.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..f2d3142 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..affa544 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..5ed3cfa 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..9efe088 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..d81ebf2 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..53aa44e 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..0b3033f 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..93043b5 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..fc46c5d 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..081bdcb Binary files /dev/null and b/bin/x86/Debug/AppX/System.Reflection.dll differ diff --git a/bin/x86/Debug/AppX/System.Resources.Reader.dll b/bin/x86/Debug/AppX/System.Resources.Reader.dll new file mode 100644 index 0000000..efe2899 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Resources.Reader.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..f1041e1 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll differ diff --git a/bin/x86/Debug/AppX/System.Resources.Writer.dll b/bin/x86/Debug/AppX/System.Resources.Writer.dll new file mode 100644 index 0000000..cbd0dfa Binary files /dev/null and b/bin/x86/Debug/AppX/System.Resources.Writer.dll differ diff --git a/bin/x86/Debug/AppX/System.Runtime.CompilerServices.VisualC.dll b/bin/x86/Debug/AppX/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..709f757 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.CompilerServices.VisualC.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..b0937f4 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..143d2c4 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.RuntimeInformation.dll b/bin/x86/Debug/AppX/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..4b6ff2a Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.InteropServices.RuntimeInformation.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..f6d03c3 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..23d1209 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..bfce2f4 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.Formatters.dll b/bin/x86/Debug/AppX/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..072d5af Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.Serialization.Formatters.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..7a1ebc4 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..93ee54c 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..d04b21d 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..358671d 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..273cd2e 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..7e512e0 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..5d27b52 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Runtime.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.AccessControl.dll b/bin/x86/Debug/AppX/System.Security.AccessControl.dll new file mode 100644 index 0000000..75cad3f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.AccessControl.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..13ff1dd 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..f852b3b 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..0a8f146 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.Csp.dll b/bin/x86/Debug/AppX/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..4c338d7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Cryptography.Csp.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..2e3c3fd 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..621b98c 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..474efc8 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.Windows.dll b/bin/x86/Debug/AppX/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..5bd2689 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Principal.Windows.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..15b1956 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.Principal.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.SecureString.dll b/bin/x86/Debug/AppX/System.Security.SecureString.dll new file mode 100644 index 0000000..410e38f Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.SecureString.dll differ diff --git a/bin/x86/Debug/AppX/System.Security.dll b/bin/x86/Debug/AppX/System.Security.dll new file mode 100644 index 0000000..f214344 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Security.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..75475b7 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..e8ba44c 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..9b41930 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..d5db1d8 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..7284299 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..b4c11cd 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..9c9a71b Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceModel.dll differ diff --git a/bin/x86/Debug/AppX/System.ServiceProcess.dll b/bin/x86/Debug/AppX/System.ServiceProcess.dll new file mode 100644 index 0000000..b14de5d Binary files /dev/null and b/bin/x86/Debug/AppX/System.ServiceProcess.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..1ed965d 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..9a961cf 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..ee7d254 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..ff67210 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..46a0325 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..37ea0aa 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..6b59a7f 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..2ea32d7 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..32768e8 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Tasks.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.Thread.dll b/bin/x86/Debug/AppX/System.Threading.Thread.dll new file mode 100644 index 0000000..a690aa7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.Thread.dll differ diff --git a/bin/x86/Debug/AppX/System.Threading.ThreadPool.dll b/bin/x86/Debug/AppX/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..da02fd7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.ThreadPool.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..5dade5c 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..cf9b7df Binary files /dev/null and b/bin/x86/Debug/AppX/System.Threading.dll differ diff --git a/bin/x86/Debug/AppX/System.Transactions.Local.dll b/bin/x86/Debug/AppX/System.Transactions.Local.dll new file mode 100644 index 0000000..6d5f7d9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Transactions.Local.dll differ diff --git a/bin/x86/Debug/AppX/System.Transactions.dll b/bin/x86/Debug/AppX/System.Transactions.dll new file mode 100644 index 0000000..e005085 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Transactions.dll differ diff --git a/bin/x86/Debug/AppX/System.ValueTuple.dll b/bin/x86/Debug/AppX/System.ValueTuple.dll new file mode 100644 index 0000000..9add59a Binary files /dev/null and b/bin/x86/Debug/AppX/System.ValueTuple.dll differ diff --git a/bin/x86/Debug/AppX/System.Web.HttpUtility.dll b/bin/x86/Debug/AppX/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0e487f9 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Web.HttpUtility.dll differ diff --git a/bin/x86/Debug/AppX/System.Web.dll b/bin/x86/Debug/AppX/System.Web.dll new file mode 100644 index 0000000..91b1818 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Web.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..0de2cd9 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..161112a 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..a967cd0 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..dcdf3c2 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..904a637 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XDocument.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.XPath.XDocument.dll b/bin/x86/Debug/AppX/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..770fa32 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XPath.XDocument.dll differ diff --git a/bin/x86/Debug/AppX/System.Xml.XPath.dll b/bin/x86/Debug/AppX/System.Xml.XPath.dll new file mode 100644 index 0000000..d271e89 Binary files /dev/null and b/bin/x86/Debug/AppX/System.Xml.XPath.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..a008437 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..565eabf 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..cac56f3 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..9e8a3b7 Binary files /dev/null and b/bin/x86/Debug/AppX/System.dll differ diff --git a/bin/x86/Debug/AppX/View/MainFrameView.xbf b/bin/x86/Debug/AppX/View/MainFrameView.xbf new file mode 100644 index 0000000..7e0e75d Binary files /dev/null and b/bin/x86/Debug/AppX/View/MainFrameView.xbf differ diff --git a/bin/x86/Debug/AppX/View/PatientsPage.xbf b/bin/x86/Debug/AppX/View/PatientsPage.xbf new file mode 100644 index 0000000..fac6ec5 Binary files /dev/null and b/bin/x86/Debug/AppX/View/PatientsPage.xbf differ diff --git a/bin/x86/Debug/AppX/View/UserControls/ColumnListView.xbf b/bin/x86/Debug/AppX/View/UserControls/ColumnListView.xbf new file mode 100644 index 0000000..5f56726 Binary files /dev/null and b/bin/x86/Debug/AppX/View/UserControls/ColumnListView.xbf 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..a1d5fec Binary files /dev/null and b/bin/x86/Debug/AppX/WinMetadata/Windows.winmd differ diff --git a/bin/x86/Debug/AppX/WindowsBase.dll b/bin/x86/Debug/AppX/WindowsBase.dll new file mode 100644 index 0000000..62a6329 Binary files /dev/null and b/bin/x86/Debug/AppX/WindowsBase.dll differ diff --git a/bin/x86/Debug/AppX/clrcompression.dll b/bin/x86/Debug/AppX/clrcompression.dll new file mode 100644 index 0000000..101efe7 Binary files /dev/null and b/bin/x86/Debug/AppX/clrcompression.dll differ diff --git a/bin/x86/Debug/AppX/entrypoint/HospitalServerManager.exe b/bin/x86/Debug/AppX/entrypoint/HospitalServerManager.exe new file mode 100644 index 0000000..bd1272a Binary files /dev/null and b/bin/x86/Debug/AppX/entrypoint/HospitalServerManager.exe differ diff --git a/bin/x86/Debug/AppX/mscorlib.dll b/bin/x86/Debug/AppX/mscorlib.dll new file mode 100644 index 0000000..0fb56b1 Binary files /dev/null and b/bin/x86/Debug/AppX/mscorlib.dll differ diff --git a/bin/x86/Debug/AppX/netstandard.dll b/bin/x86/Debug/AppX/netstandard.dll new file mode 100644 index 0000000..3d027fe Binary files /dev/null and b/bin/x86/Debug/AppX/netstandard.dll differ diff --git a/bin/x86/Debug/AppX/resources.pri b/bin/x86/Debug/AppX/resources.pri new file mode 100644 index 0000000..fca531d 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..b3dc744 --- /dev/null +++ b/bin/x86/Debug/AppX/vs.appxrecipe @@ -0,0 +1,826 @@ + + + + MARCEL + MarcelPC + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + a13b5573-74eb-437e-864d-d1069d681f5b + CN=MarcelPC + C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\ + + + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\AppX + A82C0B7730E87FEEFCA02918DD2CB88D850AE5E45843CB68598F2EC25F317EA0 + a13b5573-74eb-437e-864d-d1069d681f5b_1.0.0.0_x86__kmdx4q5g5s4sm + a13b5573-74eb-437e-864d-d1069d681f5b_kmdx4q5g5s4sm!App + a13b5573-74eb-437e-864d-d1069d681f5b + CN=MarcelPC + 1.0.0.0 + True + + + + AppxManifest.xml + true + 2018-11-17T21:12:25.960 + + + + + entrypoint\HospitalServerManager.exe + 2018-11-17T21:12:25.258 + + + clrcompression.dll + 2018-07-20T08:48:02.000 + + + Microsoft.CSharp.dll + 2018-07-20T08:48:00.000 + + + Microsoft.VisualBasic.dll + 2018-07-20T08:48:00.000 + + + Microsoft.Win32.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.AppContext.dll + 2018-07-20T08:48:00.000 + + + System.Buffers.dll + 2018-07-20T08:48:00.000 + + + System.Collections.Concurrent.dll + 2018-07-20T08:48:00.000 + + + System.Collections.Immutable.dll + 2018-07-20T08:48:00.000 + + + System.Collections.NonGeneric.dll + 2018-07-20T08:48:00.000 + + + System.Collections.Specialized.dll + 2018-07-20T08:48:00.000 + + + System.Collections.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.Annotations.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.Composition.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.DataAnnotations.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.EventBasedAsync.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.TypeConverter.dll + 2018-07-20T08:48:00.000 + + + System.ComponentModel.dll + 2018-07-20T08:48:00.000 + + + System.Configuration.dll + 2018-07-20T08:48:00.000 + + + System.Console.dll + 2018-07-20T08:48:00.000 + + + System.Core.dll + 2018-07-20T08:48:00.000 + + + System.Data.Common.dll + 2018-07-20T08:48:00.000 + + + System.Data.SqlClient.dll + 2018-07-20T08:48:00.000 + + + System.Data.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.Contracts.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.Debug.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.DiagnosticSource.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.FileVersionInfo.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.Process.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.StackTrace.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.TextWriterTraceListener.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.Tools.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.TraceSource.dll + 2018-07-20T08:48:00.000 + + + System.Diagnostics.Tracing.dll + 2018-07-20T08:48:00.000 + + + System.Drawing.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.Drawing.dll + 2018-07-20T08:48:00.000 + + + System.Dynamic.Runtime.dll + 2018-07-20T08:48:00.000 + + + System.Globalization.Calendars.dll + 2018-07-20T08:48:00.000 + + + System.Globalization.Extensions.dll + 2018-07-20T08:48:00.000 + + + System.Globalization.dll + 2018-07-20T08:48:00.000 + + + System.IO.Compression.FileSystem.dll + 2018-07-20T08:48:00.000 + + + System.IO.Compression.ZipFile.dll + 2018-07-20T08:48:00.000 + + + System.IO.Compression.dll + 2018-07-20T08:48:00.000 + + + System.IO.FileSystem.DriveInfo.dll + 2018-07-20T08:48:00.000 + + + System.IO.FileSystem.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.IO.FileSystem.Watcher.dll + 2018-07-20T08:48:00.000 + + + System.IO.FileSystem.dll + 2018-07-20T08:48:00.000 + + + System.IO.IsolatedStorage.dll + 2018-07-20T08:48:00.000 + + + System.IO.MemoryMappedFiles.dll + 2018-07-20T08:48:00.000 + + + System.IO.Pipes.dll + 2018-07-20T08:48:00.000 + + + System.IO.Ports.dll + 2018-07-20T08:48:00.000 + + + System.IO.UnmanagedMemoryStream.dll + 2018-07-20T08:48:00.000 + + + System.IO.dll + 2018-07-20T08:48:00.000 + + + System.Linq.Expressions.dll + 2018-07-20T08:48:00.000 + + + System.Linq.Parallel.dll + 2018-07-20T08:48:00.000 + + + System.Linq.Queryable.dll + 2018-07-20T08:48:00.000 + + + System.Linq.dll + 2018-07-20T08:48:00.000 + + + System.Net.Http.Rtc.dll + 2018-07-20T08:48:00.000 + + + System.Net.Http.dll + 2018-07-20T08:48:00.000 + + + System.Net.HttpListener.dll + 2018-07-20T08:48:00.000 + + + System.Net.Mail.dll + 2018-07-20T08:48:00.000 + + + System.Net.NameResolution.dll + 2018-07-20T08:48:00.000 + + + System.Net.NetworkInformation.dll + 2018-07-20T08:48:00.000 + + + System.Net.Ping.dll + 2018-07-20T08:48:00.000 + + + System.Net.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.Net.Requests.dll + 2018-07-20T08:48:00.000 + + + System.Net.Security.dll + 2018-07-20T08:48:00.000 + + + System.Net.ServicePoint.dll + 2018-07-20T08:48:00.000 + + + System.Net.Sockets.dll + 2018-07-20T08:48:00.000 + + + System.Net.WebClient.dll + 2018-07-20T08:48:00.000 + + + System.Net.WebHeaderCollection.dll + 2018-07-20T08:48:00.000 + + + System.Net.WebProxy.dll + 2018-07-20T08:48:00.000 + + + System.Net.WebSockets.Client.dll + 2018-07-20T08:48:00.000 + + + System.Net.WebSockets.dll + 2018-07-20T08:48:00.000 + + + System.Net.dll + 2018-07-20T08:48:00.000 + + + System.Numerics.Vectors.WindowsRuntime.dll + 2018-07-20T08:48:00.000 + + + System.Numerics.Vectors.dll + 2018-07-20T08:48:00.000 + + + System.Numerics.dll + 2018-07-20T08:48:00.000 + + + System.ObjectModel.dll + 2018-07-20T08:48:00.000 + + + System.Private.DataContractSerialization.dll + 2018-07-20T08:48:00.000 + + + System.Private.ServiceModel.dll + 2018-07-20T08:48:02.000 + + + System.Private.Uri.dll + 2018-07-20T08:48:00.000 + + + System.Private.Xml.Linq.dll + 2018-07-20T08:48:00.000 + + + System.Private.Xml.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Context.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.DispatchProxy.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Emit.ILGeneration.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Emit.Lightweight.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Emit.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Extensions.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Metadata.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.TypeExtensions.dll + 2018-07-20T08:48:00.000 + + + System.Reflection.dll + 2018-07-20T08:48:00.000 + + + System.Resources.Reader.dll + 2018-07-20T08:48:00.000 + + + System.Resources.ResourceManager.dll + 2018-07-20T08:48:00.000 + + + System.Resources.Writer.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.CompilerServices.VisualC.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Extensions.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Handles.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.InteropServices.RuntimeInformation.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.InteropServices.WindowsRuntime.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.InteropServices.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Numerics.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Serialization.Formatters.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Serialization.Json.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Serialization.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Serialization.Xml.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.Serialization.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.WindowsRuntime.UI.Xaml.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.WindowsRuntime.dll + 2018-07-20T08:48:00.000 + + + System.Runtime.dll + 2018-07-20T08:48:00.000 + + + System.Security.AccessControl.dll + 2018-07-20T08:48:00.000 + + + System.Security.Claims.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.Algorithms.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.Cng.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.Csp.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.Encoding.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.Primitives.dll + 2018-07-20T08:48:00.000 + + + System.Security.Cryptography.X509Certificates.dll + 2018-07-20T08:48:00.000 + + + System.Security.Principal.Windows.dll + 2018-07-20T08:48:00.000 + + + System.Security.Principal.dll + 2018-07-20T08:48:00.000 + + + System.Security.SecureString.dll + 2018-07-20T08:48:00.000 + + + System.Security.dll + 2018-07-20T08:48:00.000 + + + System.ServiceModel.Duplex.dll + 2018-07-20T08:48:02.000 + + + System.ServiceModel.Http.dll + 2018-07-20T08:48:02.000 + + + System.ServiceModel.NetTcp.dll + 2018-07-20T08:48:02.000 + + + System.ServiceModel.Primitives.dll + 2018-07-20T08:48:02.000 + + + System.ServiceModel.Security.dll + 2018-07-20T08:48:02.000 + + + System.ServiceModel.Web.dll + 2018-07-20T08:48:00.000 + + + System.ServiceModel.dll + 2018-07-20T08:48:02.000 + + + System.ServiceProcess.dll + 2018-07-20T08:48:00.000 + + + System.Text.Encoding.CodePages.dll + 2018-07-20T08:48:00.000 + + + System.Text.Encoding.Extensions.dll + 2018-07-20T08:48:02.000 + + + System.Text.Encoding.dll + 2018-07-20T08:48:02.000 + + + System.Text.RegularExpressions.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Overlapped.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Tasks.Dataflow.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Tasks.Extensions.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Tasks.Parallel.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Tasks.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Thread.dll + 2018-07-20T08:48:02.000 + + + System.Threading.ThreadPool.dll + 2018-07-20T08:48:02.000 + + + System.Threading.Timer.dll + 2018-07-20T08:48:02.000 + + + System.Threading.dll + 2018-07-20T08:48:02.000 + + + System.Transactions.Local.dll + 2018-07-20T08:48:02.000 + + + System.Transactions.dll + 2018-07-20T08:48:02.000 + + + System.ValueTuple.dll + 2018-07-20T08:48:02.000 + + + System.Web.HttpUtility.dll + 2018-07-20T08:48:02.000 + + + System.Web.dll + 2018-07-20T08:48:02.000 + + + System.Windows.dll + 2018-07-20T08:48:02.000 + + + System.Xml.Linq.dll + 2018-07-20T08:48:02.000 + + + System.Xml.ReaderWriter.dll + 2018-07-20T08:48:02.000 + + + System.Xml.Serialization.dll + 2018-07-20T08:48:02.000 + + + System.Xml.XDocument.dll + 2018-07-20T08:48:02.000 + + + System.Xml.XPath.XDocument.dll + 2018-07-20T08:48:02.000 + + + System.Xml.XPath.dll + 2018-07-20T08:48:02.000 + + + System.Xml.XmlDocument.dll + 2018-07-20T08:48:02.000 + + + System.Xml.XmlSerializer.dll + 2018-07-20T08:48:02.000 + + + System.Xml.dll + 2018-07-20T08:48:02.000 + + + System.dll + 2018-07-20T08:48:02.000 + + + WindowsBase.dll + 2018-07-20T08:48:02.000 + + + mscorlib.dll + 2018-07-20T08:48:02.000 + + + netstandard.dll + 2018-07-20T08:48:02.000 + + + Properties\Default.rd.xml + 2018-11-15T19:12:13.368 + + + Assets\LockScreenLogo.scale-200.png + 2018-09-17T14:12:12.240 + + + Assets\SplashScreen.scale-200.png + true + 2018-09-17T14:12:12.240 + + + Assets\Square150x150Logo.scale-200.png + true + 2018-09-17T14:12:12.240 + + + Assets\Square44x44Logo.scale-200.png + true + 2018-09-17T14:12:12.240 + + + Assets\Square44x44Logo.targetsize-24_altform-unplated.png + true + 2018-09-17T14:12:12.240 + + + Assets\StoreLogo.png + true + 2018-09-17T14:12:12.240 + + + Assets\Wide310x150Logo.scale-200.png + true + 2018-09-17T14:12:12.240 + + + HospitalServerManager.xr.xml + 2018-11-17T21:12:24.933 + + + App.xbf + 2018-11-17T21:12:24.955 + + + View\MainFrameView.xbf + 2018-11-17T21:12:24.956 + + + View\PatientsPage.xbf + 2018-11-17T21:12:24.957 + + + View\UserControls\ColumnListView.xbf + 2018-11-17T21:12:24.957 + + + WinMetadata\Windows.winmd + 2018-04-19T20:01:52.000 + + + resources.pri + true + 2018-11-17T20:41:53.710 + + + HospitalServerManager.exe + 2018-11-17T21:12:25.945 + + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + x86 + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + x64 + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + arm + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx + + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/AppxManifest.xml b/bin/x86/Debug/AppxManifest.xml new file mode 100644 index 0000000..99f81c1 --- /dev/null +++ b/bin/x86/Debug/AppxManifest.xml @@ -0,0 +1,49 @@ + + + + + + + HospitalServerManager + MarcelPC + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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..7c7b3fa --- /dev/null +++ b/bin/x86/Debug/Core/AppxManifest.xml @@ -0,0 +1,50 @@ + + + + + + + HospitalServerManager + MarcelPC + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/Core/HospitalServerManager.exe b/bin/x86/Debug/Core/HospitalServerManager.exe new file mode 100644 index 0000000..aa73618 Binary files /dev/null and b/bin/x86/Debug/Core/HospitalServerManager.exe differ diff --git a/bin/x86/Debug/HospitalServerManager.build.appxrecipe b/bin/x86/Debug/HospitalServerManager.build.appxrecipe new file mode 100644 index 0000000..c7002e8 --- /dev/null +++ b/bin/x86/Debug/HospitalServerManager.build.appxrecipe @@ -0,0 +1,629 @@ + + + + MARCEL + MarcelPC + UAP + 10.0 + Windows 10.0 + Debug|x86 + x86 + a13b5573-74eb-437e-864d-d1069d681f5b + CN=MarcelPC + C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\ + + + true + false + C:\Program Files %28x86%29\Windows Kits\10\ + C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\AppX + + + + AppxManifest.xml + true + + + + + entrypoint\HospitalServerManager.exe + + + clrcompression.dll + + + Microsoft.CSharp.dll + + + Microsoft.VisualBasic.dll + + + Microsoft.Win32.Primitives.dll + + + System.AppContext.dll + + + System.Buffers.dll + + + System.Collections.Concurrent.dll + + + System.Collections.Immutable.dll + + + System.Collections.NonGeneric.dll + + + System.Collections.Specialized.dll + + + System.Collections.dll + + + System.ComponentModel.Annotations.dll + + + System.ComponentModel.Composition.dll + + + System.ComponentModel.DataAnnotations.dll + + + System.ComponentModel.EventBasedAsync.dll + + + System.ComponentModel.Primitives.dll + + + System.ComponentModel.TypeConverter.dll + + + System.ComponentModel.dll + + + System.Configuration.dll + + + System.Console.dll + + + System.Core.dll + + + System.Data.Common.dll + + + System.Data.SqlClient.dll + + + System.Data.dll + + + System.Diagnostics.Contracts.dll + + + System.Diagnostics.Debug.dll + + + System.Diagnostics.DiagnosticSource.dll + + + System.Diagnostics.FileVersionInfo.dll + + + System.Diagnostics.Process.dll + + + System.Diagnostics.StackTrace.dll + + + System.Diagnostics.TextWriterTraceListener.dll + + + System.Diagnostics.Tools.dll + + + System.Diagnostics.TraceSource.dll + + + System.Diagnostics.Tracing.dll + + + System.Drawing.Primitives.dll + + + System.Drawing.dll + + + System.Dynamic.Runtime.dll + + + System.Globalization.Calendars.dll + + + System.Globalization.Extensions.dll + + + System.Globalization.dll + + + System.IO.Compression.FileSystem.dll + + + System.IO.Compression.ZipFile.dll + + + System.IO.Compression.dll + + + System.IO.FileSystem.DriveInfo.dll + + + System.IO.FileSystem.Primitives.dll + + + System.IO.FileSystem.Watcher.dll + + + System.IO.FileSystem.dll + + + System.IO.IsolatedStorage.dll + + + System.IO.MemoryMappedFiles.dll + + + System.IO.Pipes.dll + + + System.IO.Ports.dll + + + System.IO.UnmanagedMemoryStream.dll + + + System.IO.dll + + + System.Linq.Expressions.dll + + + System.Linq.Parallel.dll + + + System.Linq.Queryable.dll + + + System.Linq.dll + + + System.Net.Http.Rtc.dll + + + System.Net.Http.dll + + + System.Net.HttpListener.dll + + + System.Net.Mail.dll + + + System.Net.NameResolution.dll + + + System.Net.NetworkInformation.dll + + + System.Net.Ping.dll + + + System.Net.Primitives.dll + + + System.Net.Requests.dll + + + System.Net.Security.dll + + + System.Net.ServicePoint.dll + + + System.Net.Sockets.dll + + + System.Net.WebClient.dll + + + System.Net.WebHeaderCollection.dll + + + System.Net.WebProxy.dll + + + System.Net.WebSockets.Client.dll + + + System.Net.WebSockets.dll + + + System.Net.dll + + + System.Numerics.Vectors.WindowsRuntime.dll + + + System.Numerics.Vectors.dll + + + System.Numerics.dll + + + System.ObjectModel.dll + + + System.Private.DataContractSerialization.dll + + + System.Private.ServiceModel.dll + + + System.Private.Uri.dll + + + System.Private.Xml.Linq.dll + + + System.Private.Xml.dll + + + System.Reflection.Context.dll + + + System.Reflection.DispatchProxy.dll + + + System.Reflection.Emit.ILGeneration.dll + + + System.Reflection.Emit.Lightweight.dll + + + System.Reflection.Emit.dll + + + System.Reflection.Extensions.dll + + + System.Reflection.Metadata.dll + + + System.Reflection.Primitives.dll + + + System.Reflection.TypeExtensions.dll + + + System.Reflection.dll + + + System.Resources.Reader.dll + + + System.Resources.ResourceManager.dll + + + System.Resources.Writer.dll + + + System.Runtime.CompilerServices.VisualC.dll + + + System.Runtime.Extensions.dll + + + System.Runtime.Handles.dll + + + System.Runtime.InteropServices.RuntimeInformation.dll + + + System.Runtime.InteropServices.WindowsRuntime.dll + + + System.Runtime.InteropServices.dll + + + System.Runtime.Numerics.dll + + + System.Runtime.Serialization.Formatters.dll + + + System.Runtime.Serialization.Json.dll + + + System.Runtime.Serialization.Primitives.dll + + + System.Runtime.Serialization.Xml.dll + + + System.Runtime.Serialization.dll + + + System.Runtime.WindowsRuntime.UI.Xaml.dll + + + System.Runtime.WindowsRuntime.dll + + + System.Runtime.dll + + + System.Security.AccessControl.dll + + + System.Security.Claims.dll + + + System.Security.Cryptography.Algorithms.dll + + + System.Security.Cryptography.Cng.dll + + + System.Security.Cryptography.Csp.dll + + + System.Security.Cryptography.Encoding.dll + + + System.Security.Cryptography.Primitives.dll + + + System.Security.Cryptography.X509Certificates.dll + + + System.Security.Principal.Windows.dll + + + System.Security.Principal.dll + + + System.Security.SecureString.dll + + + System.Security.dll + + + System.ServiceModel.Duplex.dll + + + System.ServiceModel.Http.dll + + + System.ServiceModel.NetTcp.dll + + + System.ServiceModel.Primitives.dll + + + System.ServiceModel.Security.dll + + + System.ServiceModel.Web.dll + + + System.ServiceModel.dll + + + System.ServiceProcess.dll + + + System.Text.Encoding.CodePages.dll + + + System.Text.Encoding.Extensions.dll + + + System.Text.Encoding.dll + + + System.Text.RegularExpressions.dll + + + System.Threading.Overlapped.dll + + + System.Threading.Tasks.Dataflow.dll + + + System.Threading.Tasks.Extensions.dll + + + System.Threading.Tasks.Parallel.dll + + + System.Threading.Tasks.dll + + + System.Threading.Thread.dll + + + System.Threading.ThreadPool.dll + + + System.Threading.Timer.dll + + + System.Threading.dll + + + System.Transactions.Local.dll + + + System.Transactions.dll + + + System.ValueTuple.dll + + + System.Web.HttpUtility.dll + + + System.Web.dll + + + System.Windows.dll + + + System.Xml.Linq.dll + + + System.Xml.ReaderWriter.dll + + + System.Xml.Serialization.dll + + + System.Xml.XDocument.dll + + + System.Xml.XPath.XDocument.dll + + + System.Xml.XPath.dll + + + System.Xml.XmlDocument.dll + + + System.Xml.XmlSerializer.dll + + + System.Xml.dll + + + System.dll + + + WindowsBase.dll + + + mscorlib.dll + + + netstandard.dll + + + 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 + + + HospitalServerManager.xr.xml + + + App.xbf + + + View\MainFrameView.xbf + + + View\PatientsPage.xbf + + + View\UserControls\ColumnListView.xbf + + + WinMetadata\Windows.winmd + + + resources.pri + true + + + HospitalServerManager.exe + + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + x86 + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-x86.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + x64 + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-x64.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + Microsoft.NET.CoreRuntime.2.1 + 2.1.26124.5 + arm + Name = Microsoft.NET.CoreRuntime.2.1, MinVersion = 2.1.26124.5, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Users\MarcelPC\.nuget\packages\runtime.win10-arm.microsoft.net.uwpcoreruntimesdk\2.1.2\build\..\tools\Appx\Microsoft.NET.CoreRuntime.2.1.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + ARM + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + x64 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx + + + + Microsoft.VCLibs.140.00.Debug + 14.0.26726.0 + x86 + Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.26726.0, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27 + C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx + + + + diff --git a/bin/x86/Debug/HospitalServerManager.exe b/bin/x86/Debug/HospitalServerManager.exe new file mode 100644 index 0000000..bd1272a Binary files /dev/null and b/bin/x86/Debug/HospitalServerManager.exe differ diff --git a/bin/x86/Debug/HospitalServerManager.pdb b/bin/x86/Debug/HospitalServerManager.pdb new file mode 100644 index 0000000..d0edb61 Binary files /dev/null and b/bin/x86/Debug/HospitalServerManager.pdb differ diff --git a/bin/x86/Debug/HospitalServerManager.xr.xml b/bin/x86/Debug/HospitalServerManager.xr.xml new file mode 100644 index 0000000..ffa90d0 --- /dev/null +++ b/bin/x86/Debug/HospitalServerManager.xr.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/x86/Debug/Microsoft.CSharp.dll b/bin/x86/Debug/Microsoft.CSharp.dll new file mode 100644 index 0000000..7dfdf4a Binary files /dev/null and b/bin/x86/Debug/Microsoft.CSharp.dll differ diff --git a/bin/x86/Debug/Microsoft.VisualBasic.dll b/bin/x86/Debug/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..0accae8 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..5b80a28 Binary files /dev/null and b/bin/x86/Debug/Microsoft.Win32.Primitives.dll differ diff --git a/bin/x86/Debug/System.AppContext.dll b/bin/x86/Debug/System.AppContext.dll new file mode 100644 index 0000000..2b115b3 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..095ca4f 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..e80c17b 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..89cb940 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..7b97b85 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..0b436ce 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..2ac408a 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..1a8d63f Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.Annotations.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.Composition.dll b/bin/x86/Debug/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..501f454 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.Composition.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..3ef9cac 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..f0be2b1 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.Primitives.dll b/bin/x86/Debug/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b46df34 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.Primitives.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.TypeConverter.dll b/bin/x86/Debug/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..0623a71 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/x86/Debug/System.ComponentModel.dll b/bin/x86/Debug/System.ComponentModel.dll new file mode 100644 index 0000000..5aeb253 Binary files /dev/null and b/bin/x86/Debug/System.ComponentModel.dll differ diff --git a/bin/x86/Debug/System.Configuration.dll b/bin/x86/Debug/System.Configuration.dll new file mode 100644 index 0000000..f72e662 Binary files /dev/null and b/bin/x86/Debug/System.Configuration.dll differ diff --git a/bin/x86/Debug/System.Console.dll b/bin/x86/Debug/System.Console.dll new file mode 100644 index 0000000..7d923d3 Binary files /dev/null and b/bin/x86/Debug/System.Console.dll differ diff --git a/bin/x86/Debug/System.Core.dll b/bin/x86/Debug/System.Core.dll new file mode 100644 index 0000000..bf95166 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..b311180 Binary files /dev/null and b/bin/x86/Debug/System.Data.Common.dll differ diff --git a/bin/x86/Debug/System.Data.SqlClient.dll b/bin/x86/Debug/System.Data.SqlClient.dll new file mode 100644 index 0000000..91f460f Binary files /dev/null and b/bin/x86/Debug/System.Data.SqlClient.dll differ diff --git a/bin/x86/Debug/System.Data.dll b/bin/x86/Debug/System.Data.dll new file mode 100644 index 0000000..18a3785 Binary files /dev/null and b/bin/x86/Debug/System.Data.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..26b450c 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..b71d083 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..4bef055 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.FileVersionInfo.dll b/bin/x86/Debug/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..dec3aa9 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.Process.dll b/bin/x86/Debug/System.Diagnostics.Process.dll new file mode 100644 index 0000000..d1adebe Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Process.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..4c5cab2 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.TextWriterTraceListener.dll b/bin/x86/Debug/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..74976ad Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.TextWriterTraceListener.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..93991dd Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Tools.dll differ diff --git a/bin/x86/Debug/System.Diagnostics.TraceSource.dll b/bin/x86/Debug/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..80f55b7 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.TraceSource.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..4389873 Binary files /dev/null and b/bin/x86/Debug/System.Diagnostics.Tracing.dll differ diff --git a/bin/x86/Debug/System.Drawing.Primitives.dll b/bin/x86/Debug/System.Drawing.Primitives.dll new file mode 100644 index 0000000..6effe3d Binary files /dev/null and b/bin/x86/Debug/System.Drawing.Primitives.dll differ diff --git a/bin/x86/Debug/System.Drawing.dll b/bin/x86/Debug/System.Drawing.dll new file mode 100644 index 0000000..e9292f9 Binary files /dev/null and b/bin/x86/Debug/System.Drawing.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..d3605f9 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..82eb3b6 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..d09a249 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..5bd0c3b Binary files /dev/null and b/bin/x86/Debug/System.Globalization.dll differ diff --git a/bin/x86/Debug/System.IO.Compression.FileSystem.dll b/bin/x86/Debug/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..e7a035d Binary files /dev/null and b/bin/x86/Debug/System.IO.Compression.FileSystem.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..3727e95 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..3410b2f Binary files /dev/null and b/bin/x86/Debug/System.IO.Compression.dll differ diff --git a/bin/x86/Debug/System.IO.FileSystem.DriveInfo.dll b/bin/x86/Debug/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..9ea726d Binary files /dev/null and b/bin/x86/Debug/System.IO.FileSystem.DriveInfo.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..ac3eb77 Binary files /dev/null and b/bin/x86/Debug/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/x86/Debug/System.IO.FileSystem.Watcher.dll b/bin/x86/Debug/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..a51ab51 Binary files /dev/null and b/bin/x86/Debug/System.IO.FileSystem.Watcher.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..baa4bb7 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..7e245a4 Binary files /dev/null and b/bin/x86/Debug/System.IO.IsolatedStorage.dll differ diff --git a/bin/x86/Debug/System.IO.MemoryMappedFiles.dll b/bin/x86/Debug/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..c0b7dc4 Binary files /dev/null and b/bin/x86/Debug/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/x86/Debug/System.IO.Pipes.dll b/bin/x86/Debug/System.IO.Pipes.dll new file mode 100644 index 0000000..bdbb86a Binary files /dev/null and b/bin/x86/Debug/System.IO.Pipes.dll differ diff --git a/bin/x86/Debug/System.IO.Ports.dll b/bin/x86/Debug/System.IO.Ports.dll new file mode 100644 index 0000000..0b2cab4 Binary files /dev/null and b/bin/x86/Debug/System.IO.Ports.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..310fba9 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..8cf7362 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..977abf0 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..575ccc3 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..5f7e227 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..00bb7d7 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..da99ff0 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..cbac673 Binary files /dev/null and b/bin/x86/Debug/System.Net.Http.dll differ diff --git a/bin/x86/Debug/System.Net.HttpListener.dll b/bin/x86/Debug/System.Net.HttpListener.dll new file mode 100644 index 0000000..09bd439 Binary files /dev/null and b/bin/x86/Debug/System.Net.HttpListener.dll differ diff --git a/bin/x86/Debug/System.Net.Mail.dll b/bin/x86/Debug/System.Net.Mail.dll new file mode 100644 index 0000000..953c962 Binary files /dev/null and b/bin/x86/Debug/System.Net.Mail.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..12ffbec 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..b761ead Binary files /dev/null and b/bin/x86/Debug/System.Net.NetworkInformation.dll differ diff --git a/bin/x86/Debug/System.Net.Ping.dll b/bin/x86/Debug/System.Net.Ping.dll new file mode 100644 index 0000000..1483dfc Binary files /dev/null and b/bin/x86/Debug/System.Net.Ping.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..6f7bf12 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..cba0672 Binary files /dev/null and b/bin/x86/Debug/System.Net.Requests.dll differ diff --git a/bin/x86/Debug/System.Net.Security.dll b/bin/x86/Debug/System.Net.Security.dll new file mode 100644 index 0000000..81f218a Binary files /dev/null and b/bin/x86/Debug/System.Net.Security.dll differ diff --git a/bin/x86/Debug/System.Net.ServicePoint.dll b/bin/x86/Debug/System.Net.ServicePoint.dll new file mode 100644 index 0000000..0e67daf Binary files /dev/null and b/bin/x86/Debug/System.Net.ServicePoint.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..9c54633 Binary files /dev/null and b/bin/x86/Debug/System.Net.Sockets.dll differ diff --git a/bin/x86/Debug/System.Net.WebClient.dll b/bin/x86/Debug/System.Net.WebClient.dll new file mode 100644 index 0000000..ceddd6f Binary files /dev/null and b/bin/x86/Debug/System.Net.WebClient.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..1e9ebf0 Binary files /dev/null and b/bin/x86/Debug/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x86/Debug/System.Net.WebProxy.dll b/bin/x86/Debug/System.Net.WebProxy.dll new file mode 100644 index 0000000..8791aab Binary files /dev/null and b/bin/x86/Debug/System.Net.WebProxy.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..9a9c82a 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..0007ce7 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..5a69ac0 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..9499811 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..206e86a 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..e0f1b7d 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..e86e339 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..e7d6cde 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..b3bd72c 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..43f153c Binary files /dev/null and b/bin/x86/Debug/System.Private.Uri.dll differ diff --git a/bin/x86/Debug/System.Private.Xml.Linq.dll b/bin/x86/Debug/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..b3a0ab1 Binary files /dev/null and b/bin/x86/Debug/System.Private.Xml.Linq.dll differ diff --git a/bin/x86/Debug/System.Private.Xml.dll b/bin/x86/Debug/System.Private.Xml.dll new file mode 100644 index 0000000..a4d1faf Binary files /dev/null and b/bin/x86/Debug/System.Private.Xml.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..f2d3142 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..affa544 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..5ed3cfa 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..9efe088 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..d81ebf2 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..53aa44e 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..0b3033f 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..93043b5 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..fc46c5d 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..081bdcb Binary files /dev/null and b/bin/x86/Debug/System.Reflection.dll differ diff --git a/bin/x86/Debug/System.Resources.Reader.dll b/bin/x86/Debug/System.Resources.Reader.dll new file mode 100644 index 0000000..efe2899 Binary files /dev/null and b/bin/x86/Debug/System.Resources.Reader.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..f1041e1 Binary files /dev/null and b/bin/x86/Debug/System.Resources.ResourceManager.dll differ diff --git a/bin/x86/Debug/System.Resources.Writer.dll b/bin/x86/Debug/System.Resources.Writer.dll new file mode 100644 index 0000000..cbd0dfa Binary files /dev/null and b/bin/x86/Debug/System.Resources.Writer.dll differ diff --git a/bin/x86/Debug/System.Runtime.CompilerServices.VisualC.dll b/bin/x86/Debug/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..709f757 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.CompilerServices.VisualC.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..b0937f4 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..143d2c4 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Handles.dll differ diff --git a/bin/x86/Debug/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/x86/Debug/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..4b6ff2a Binary files /dev/null and b/bin/x86/Debug/System.Runtime.InteropServices.RuntimeInformation.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..f6d03c3 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..23d1209 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..bfce2f4 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Numerics.dll differ diff --git a/bin/x86/Debug/System.Runtime.Serialization.Formatters.dll b/bin/x86/Debug/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..072d5af Binary files /dev/null and b/bin/x86/Debug/System.Runtime.Serialization.Formatters.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..7a1ebc4 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..93ee54c 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..d04b21d 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..358671d 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..273cd2e 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..7e512e0 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..5d27b52 Binary files /dev/null and b/bin/x86/Debug/System.Runtime.dll differ diff --git a/bin/x86/Debug/System.Security.AccessControl.dll b/bin/x86/Debug/System.Security.AccessControl.dll new file mode 100644 index 0000000..75cad3f Binary files /dev/null and b/bin/x86/Debug/System.Security.AccessControl.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..13ff1dd 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..f852b3b 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..0a8f146 Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Cng.dll differ diff --git a/bin/x86/Debug/System.Security.Cryptography.Csp.dll b/bin/x86/Debug/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..4c338d7 Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.Csp.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..2e3c3fd 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..621b98c 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..474efc8 Binary files /dev/null and b/bin/x86/Debug/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/x86/Debug/System.Security.Principal.Windows.dll b/bin/x86/Debug/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..5bd2689 Binary files /dev/null and b/bin/x86/Debug/System.Security.Principal.Windows.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..15b1956 Binary files /dev/null and b/bin/x86/Debug/System.Security.Principal.dll differ diff --git a/bin/x86/Debug/System.Security.SecureString.dll b/bin/x86/Debug/System.Security.SecureString.dll new file mode 100644 index 0000000..410e38f Binary files /dev/null and b/bin/x86/Debug/System.Security.SecureString.dll differ diff --git a/bin/x86/Debug/System.Security.dll b/bin/x86/Debug/System.Security.dll new file mode 100644 index 0000000..f214344 Binary files /dev/null and b/bin/x86/Debug/System.Security.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..75475b7 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..e8ba44c 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..9b41930 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..d5db1d8 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..7284299 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..b4c11cd 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..9c9a71b Binary files /dev/null and b/bin/x86/Debug/System.ServiceModel.dll differ diff --git a/bin/x86/Debug/System.ServiceProcess.dll b/bin/x86/Debug/System.ServiceProcess.dll new file mode 100644 index 0000000..b14de5d Binary files /dev/null and b/bin/x86/Debug/System.ServiceProcess.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..1ed965d 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..9a961cf 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..ee7d254 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..ff67210 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..46a0325 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..37ea0aa 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..6b59a7f 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..2ea32d7 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..32768e8 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Tasks.dll differ diff --git a/bin/x86/Debug/System.Threading.Thread.dll b/bin/x86/Debug/System.Threading.Thread.dll new file mode 100644 index 0000000..a690aa7 Binary files /dev/null and b/bin/x86/Debug/System.Threading.Thread.dll differ diff --git a/bin/x86/Debug/System.Threading.ThreadPool.dll b/bin/x86/Debug/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..da02fd7 Binary files /dev/null and b/bin/x86/Debug/System.Threading.ThreadPool.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..5dade5c 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..cf9b7df Binary files /dev/null and b/bin/x86/Debug/System.Threading.dll differ diff --git a/bin/x86/Debug/System.Transactions.Local.dll b/bin/x86/Debug/System.Transactions.Local.dll new file mode 100644 index 0000000..6d5f7d9 Binary files /dev/null and b/bin/x86/Debug/System.Transactions.Local.dll differ diff --git a/bin/x86/Debug/System.Transactions.dll b/bin/x86/Debug/System.Transactions.dll new file mode 100644 index 0000000..e005085 Binary files /dev/null and b/bin/x86/Debug/System.Transactions.dll differ diff --git a/bin/x86/Debug/System.ValueTuple.dll b/bin/x86/Debug/System.ValueTuple.dll new file mode 100644 index 0000000..9add59a Binary files /dev/null and b/bin/x86/Debug/System.ValueTuple.dll differ diff --git a/bin/x86/Debug/System.Web.HttpUtility.dll b/bin/x86/Debug/System.Web.HttpUtility.dll new file mode 100644 index 0000000..0e487f9 Binary files /dev/null and b/bin/x86/Debug/System.Web.HttpUtility.dll differ diff --git a/bin/x86/Debug/System.Web.dll b/bin/x86/Debug/System.Web.dll new file mode 100644 index 0000000..91b1818 Binary files /dev/null and b/bin/x86/Debug/System.Web.dll differ diff --git a/bin/x86/Debug/System.Windows.dll b/bin/x86/Debug/System.Windows.dll new file mode 100644 index 0000000..0de2cd9 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..161112a 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..a967cd0 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..dcdf3c2 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..904a637 Binary files /dev/null and b/bin/x86/Debug/System.Xml.XDocument.dll differ diff --git a/bin/x86/Debug/System.Xml.XPath.XDocument.dll b/bin/x86/Debug/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..770fa32 Binary files /dev/null and b/bin/x86/Debug/System.Xml.XPath.XDocument.dll differ diff --git a/bin/x86/Debug/System.Xml.XPath.dll b/bin/x86/Debug/System.Xml.XPath.dll new file mode 100644 index 0000000..d271e89 Binary files /dev/null and b/bin/x86/Debug/System.Xml.XPath.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..a008437 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..565eabf 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..cac56f3 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..9e8a3b7 Binary files /dev/null and b/bin/x86/Debug/System.dll differ diff --git a/bin/x86/Debug/View/MainFrameView.xbf b/bin/x86/Debug/View/MainFrameView.xbf new file mode 100644 index 0000000..7e0e75d Binary files /dev/null and b/bin/x86/Debug/View/MainFrameView.xbf differ diff --git a/bin/x86/Debug/View/PatientsPage.xbf b/bin/x86/Debug/View/PatientsPage.xbf new file mode 100644 index 0000000..fac6ec5 Binary files /dev/null and b/bin/x86/Debug/View/PatientsPage.xbf differ diff --git a/bin/x86/Debug/View/UserControls/ColumnListView.xbf b/bin/x86/Debug/View/UserControls/ColumnListView.xbf new file mode 100644 index 0000000..5f56726 Binary files /dev/null and b/bin/x86/Debug/View/UserControls/ColumnListView.xbf differ diff --git a/bin/x86/Debug/WindowsBase.dll b/bin/x86/Debug/WindowsBase.dll new file mode 100644 index 0000000..62a6329 Binary files /dev/null and b/bin/x86/Debug/WindowsBase.dll differ diff --git a/bin/x86/Debug/clrcompression.dll b/bin/x86/Debug/clrcompression.dll new file mode 100644 index 0000000..101efe7 Binary files /dev/null and b/bin/x86/Debug/clrcompression.dll differ diff --git a/bin/x86/Debug/mscorlib.dll b/bin/x86/Debug/mscorlib.dll new file mode 100644 index 0000000..0fb56b1 Binary files /dev/null and b/bin/x86/Debug/mscorlib.dll differ diff --git a/bin/x86/Debug/netstandard.dll b/bin/x86/Debug/netstandard.dll new file mode 100644 index 0000000..3d027fe Binary files /dev/null and b/bin/x86/Debug/netstandard.dll differ diff --git a/bin/x86/Debug/resources.pri b/bin/x86/Debug/resources.pri new file mode 100644 index 0000000..fca531d 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..31893b7 Binary files /dev/null and b/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/ARM/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache b/obj/ARM/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..652016f --- /dev/null +++ b/obj/ARM/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +94c639065b461ab74db77475f44301def57356b4 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..94ba7d9 --- /dev/null +++ b/obj/ARM/Debug/XamlSaveStateFile.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/obj/HospitalServerManager.csproj.nuget.cache b/obj/HospitalServerManager.csproj.nuget.cache new file mode 100644 index 0000000..f5a4d5c --- /dev/null +++ b/obj/HospitalServerManager.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "lm0EwafWhOsbc+09lprY5Nm2u0REznGbNBMUnT3UtQQXEC6jxYms5jmX8+no+9ER9oGIN4b6dBs0uWbhernxDg==", + "success": true +} \ No newline at end of file diff --git a/obj/HospitalServerManager.csproj.nuget.g.props b/obj/HospitalServerManager.csproj.nuget.g.props new file mode 100644 index 0000000..551c999 --- /dev/null +++ b/obj/HospitalServerManager.csproj.nuget.g.props @@ -0,0 +1,28 @@ + + + + True + NuGet + C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\MarcelPC\.nuget\packages\;C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\ + PackageReference + 4.8.1 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/HospitalServerManager.csproj.nuget.g.targets b/obj/HospitalServerManager.csproj.nuget.g.targets new file mode 100644 index 0000000..c1dd747 --- /dev/null +++ b/obj/HospitalServerManager.csproj.nuget.g.targets @@ -0,0 +1,19 @@ + + + + $(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..3daab8e --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,7079 @@ +{ + "version": 3, + "targets": { + "UAP,Version=v10.0.17134": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-arm": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-arm/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-arm-aot": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-arm-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-arm64-aot": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-x64": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-x64/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-x64-aot": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-x64-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-x86": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-x86/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + } + }, + "UAP,Version=v10.0.17134/win10-x86-aot": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.1.8", + "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.1.8" + }, + "build": { + "build/Microsoft.Net.Native.Compiler.props": {}, + "build/Microsoft.Net.Native.Compiler.targets": {} + } + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.1.8", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.3", + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.1.7" + }, + "compile": { + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + }, + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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": {} + }, + "native": { + "runtimes/win10-x86-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.Compiler/2.1.8": { + "type": "package", + "dependencies": { + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.1.8" + }, + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props": {}, + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets": {} + } + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "type": "package", + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.Net.Native.Compiler/2.1.8": { + "sha512": "7836QmE441s7vynQ4M3clWsbZIn3kzM9OqxZfhPTFTpqntHT5qt/T/2Qcg6gO+xlYqfCqaBq6TN0doGn2Ggc2Q==", + "type": "package", + "path": "microsoft.net.native.compiler/2.1.8", + "files": [ + "build/Microsoft.Net.Native.Compiler.props", + "build/Microsoft.Net.Native.Compiler.targets", + "microsoft.net.native.compiler.2.1.8.nupkg.sha512", + "microsoft.net.native.compiler.nuspec", + "tools/LibraryXML/Callisto.rd.xml", + "tools/LibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", + "tools/LibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", + "tools/LibraryXML/HugeFlow.Common.rd.xml", + "tools/LibraryXML/JulMar.Windows.Interactivity.rd.xml", + "tools/LibraryXML/MarkedUp.rd.xml", + "tools/LibraryXML/Microsoft.ApplicationInsights.rd.xml", + "tools/LibraryXML/Microsoft.PlayerFramework.rd.xml", + "tools/LibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", + "tools/LibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", + "tools/LibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", + "tools/LibraryXML/MonoGame.Framework.rd.xml", + "tools/LibraryXML/MyToolkit.rd.xml", + "tools/LibraryXML/Newtonsoft.Json.rd.xml", + "tools/LibraryXML/SharpDX.DXGI.rd.xml", + "tools/LibraryXML/SharpDX.Direct2D1.rd.xml", + "tools/LibraryXML/SharpDX.rd.xml", + "tools/LibraryXML/System.Reactive.Core.rd.xml", + "tools/LibraryXML/System.Reactive.Linq.rd.xml", + "tools/LibraryXML/System.Reactive.PlatformServices.rd.xml", + "tools/LibraryXML/Telerik.Core.rd.xml", + "tools/LibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", + "tools/LibraryXML/UnityEngine.rd.xml", + "tools/LibraryXML/WinRT.Triggers.rd.xml", + "tools/LibraryXML/WinRTXamlToolkit.rd.xml", + "tools/LibraryXML/protobuf-net.rd.xml", + "tools/Microsoft.NetNative.Settings.targets", + "tools/Microsoft.NetNative.targets", + "tools/SharedLibraryXML/BiggerSharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/BiggerSharedLibrary.rd.xml", + "tools/SharedLibraryXML/BiggerSharedLibrary.template.rd.xml", + "tools/SharedLibraryXML/GenerateRdXml.cmd", + "tools/SharedLibraryXML/SharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/SharedLibrary.rd.xml", + "tools/SharedLibraryXML/SharedLibrary.template.rd.xml", + "tools/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/csc/clrcompression.dll", + "tools/csc/csc.exe", + "tools/csc/mrt150.dll" + ] + }, + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "Lgwh58rl1g15JBcRYlEZjqNrfyOxf/RCZoxiC4x9A3ssXNOUdLrQiaWEyJYfxNQppKL/qE3M2CDg67W38Fz2Yw==", + "type": "package", + "path": "microsoft.net.uwpcoreruntimesdk/2.1.2", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/Microsoft.Net.UWPCoreRuntimeSdk.props", + "microsoft.net.uwpcoreruntimesdk.2.1.2.nupkg.sha512", + "microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/CoreRuntime/Microsoft.Build.Net.CoreRuntimeTask.dll", + "tools/CoreRuntime/Microsoft.Cci.dll", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.settings.targets", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.targets" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + "LICENSE.TXT", + "Microsoft.NETCore.Platforms.2.0.0.nupkg.sha512", + "Microsoft.NETCore.Platforms.nuspec", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "QoL3lJwDRFvUAWXSuIN43s56MD/SPplHdV821aM10hX7yTRQOgrHoy4PaP/SYNmZD8MdevUh2I3tKDC2kk5Xig==", + "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.universalwindowsplatform.6.1.7.nupkg.sha512", + "microsoft.netcore.universalwindowsplatform.nuspec", + "ref/netcore50/_._", + "ref/uap10.0.15138/Microsoft.CSharp.dll", + "ref/uap10.0.15138/Microsoft.CSharp.xml", + "ref/uap10.0.15138/Microsoft.VisualBasic.dll", + "ref/uap10.0.15138/Microsoft.VisualBasic.xml", + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "ref/uap10.0.15138/Microsoft.Win32.Primitives.xml", + "ref/uap10.0.15138/System.AppContext.dll", + "ref/uap10.0.15138/System.AppContext.xml", + "ref/uap10.0.15138/System.Buffers.dll", + "ref/uap10.0.15138/System.Buffers.xml", + "ref/uap10.0.15138/System.Collections.Concurrent.dll", + "ref/uap10.0.15138/System.Collections.Concurrent.xml", + "ref/uap10.0.15138/System.Collections.Immutable.dll", + "ref/uap10.0.15138/System.Collections.Immutable.xml", + "ref/uap10.0.15138/System.Collections.NonGeneric.dll", + "ref/uap10.0.15138/System.Collections.NonGeneric.xml", + "ref/uap10.0.15138/System.Collections.Specialized.dll", + "ref/uap10.0.15138/System.Collections.Specialized.xml", + "ref/uap10.0.15138/System.Collections.dll", + "ref/uap10.0.15138/System.Collections.xml", + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll", + "ref/uap10.0.15138/System.ComponentModel.Annotations.xml", + "ref/uap10.0.15138/System.ComponentModel.Composition.dll", + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.xml", + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll", + "ref/uap10.0.15138/System.ComponentModel.Primitives.xml", + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.xml", + "ref/uap10.0.15138/System.ComponentModel.dll", + "ref/uap10.0.15138/System.ComponentModel.xml", + "ref/uap10.0.15138/System.Configuration.dll", + "ref/uap10.0.15138/System.Console.dll", + "ref/uap10.0.15138/System.Console.xml", + "ref/uap10.0.15138/System.Core.dll", + "ref/uap10.0.15138/System.Data.Common.dll", + "ref/uap10.0.15138/System.Data.Common.xml", + "ref/uap10.0.15138/System.Data.SqlClient.dll", + "ref/uap10.0.15138/System.Data.SqlClient.xml", + "ref/uap10.0.15138/System.Data.dll", + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll", + "ref/uap10.0.15138/System.Diagnostics.Contracts.xml", + "ref/uap10.0.15138/System.Diagnostics.Debug.dll", + "ref/uap10.0.15138/System.Diagnostics.Debug.xml", + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.xml", + "ref/uap10.0.15138/System.Diagnostics.Process.dll", + "ref/uap10.0.15138/System.Diagnostics.Process.xml", + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "ref/uap10.0.15138/System.Diagnostics.StackTrace.xml", + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.xml", + "ref/uap10.0.15138/System.Diagnostics.Tools.dll", + "ref/uap10.0.15138/System.Diagnostics.Tools.xml", + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "ref/uap10.0.15138/System.Diagnostics.TraceSource.xml", + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll", + "ref/uap10.0.15138/System.Diagnostics.Tracing.xml", + "ref/uap10.0.15138/System.Drawing.Primitives.dll", + "ref/uap10.0.15138/System.Drawing.Primitives.xml", + "ref/uap10.0.15138/System.Drawing.dll", + "ref/uap10.0.15138/System.Dynamic.Runtime.dll", + "ref/uap10.0.15138/System.Dynamic.Runtime.xml", + "ref/uap10.0.15138/System.Globalization.Calendars.dll", + "ref/uap10.0.15138/System.Globalization.Calendars.xml", + "ref/uap10.0.15138/System.Globalization.Extensions.dll", + "ref/uap10.0.15138/System.Globalization.Extensions.xml", + "ref/uap10.0.15138/System.Globalization.dll", + "ref/uap10.0.15138/System.Globalization.xml", + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "ref/uap10.0.15138/System.IO.Compression.ZipFile.xml", + "ref/uap10.0.15138/System.IO.Compression.dll", + "ref/uap10.0.15138/System.IO.Compression.xml", + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.xml", + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.xml", + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.xml", + "ref/uap10.0.15138/System.IO.FileSystem.dll", + "ref/uap10.0.15138/System.IO.FileSystem.xml", + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll", + "ref/uap10.0.15138/System.IO.IsolatedStorage.xml", + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.xml", + "ref/uap10.0.15138/System.IO.Pipes.dll", + "ref/uap10.0.15138/System.IO.Pipes.xml", + "ref/uap10.0.15138/System.IO.Ports.dll", + "ref/uap10.0.15138/System.IO.Ports.xml", + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll", + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.xml", + "ref/uap10.0.15138/System.IO.dll", + "ref/uap10.0.15138/System.IO.xml", + "ref/uap10.0.15138/System.Linq.Expressions.dll", + "ref/uap10.0.15138/System.Linq.Expressions.xml", + "ref/uap10.0.15138/System.Linq.Parallel.dll", + "ref/uap10.0.15138/System.Linq.Parallel.xml", + "ref/uap10.0.15138/System.Linq.Queryable.dll", + "ref/uap10.0.15138/System.Linq.Queryable.xml", + "ref/uap10.0.15138/System.Linq.dll", + "ref/uap10.0.15138/System.Linq.xml", + "ref/uap10.0.15138/System.Net.Http.Rtc.dll", + "ref/uap10.0.15138/System.Net.Http.Rtc.xml", + "ref/uap10.0.15138/System.Net.Http.dll", + "ref/uap10.0.15138/System.Net.Http.xml", + "ref/uap10.0.15138/System.Net.HttpListener.dll", + "ref/uap10.0.15138/System.Net.HttpListener.xml", + "ref/uap10.0.15138/System.Net.Mail.dll", + "ref/uap10.0.15138/System.Net.Mail.xml", + "ref/uap10.0.15138/System.Net.NameResolution.dll", + "ref/uap10.0.15138/System.Net.NameResolution.xml", + "ref/uap10.0.15138/System.Net.NetworkInformation.dll", + "ref/uap10.0.15138/System.Net.NetworkInformation.xml", + "ref/uap10.0.15138/System.Net.Ping.dll", + "ref/uap10.0.15138/System.Net.Ping.xml", + "ref/uap10.0.15138/System.Net.Primitives.dll", + "ref/uap10.0.15138/System.Net.Primitives.xml", + "ref/uap10.0.15138/System.Net.Requests.dll", + "ref/uap10.0.15138/System.Net.Requests.xml", + "ref/uap10.0.15138/System.Net.Security.dll", + "ref/uap10.0.15138/System.Net.Security.xml", + "ref/uap10.0.15138/System.Net.ServicePoint.dll", + "ref/uap10.0.15138/System.Net.ServicePoint.xml", + "ref/uap10.0.15138/System.Net.Sockets.dll", + "ref/uap10.0.15138/System.Net.Sockets.xml", + "ref/uap10.0.15138/System.Net.WebClient.dll", + "ref/uap10.0.15138/System.Net.WebClient.xml", + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll", + "ref/uap10.0.15138/System.Net.WebHeaderCollection.xml", + "ref/uap10.0.15138/System.Net.WebProxy.dll", + "ref/uap10.0.15138/System.Net.WebProxy.xml", + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll", + "ref/uap10.0.15138/System.Net.WebSockets.Client.xml", + "ref/uap10.0.15138/System.Net.WebSockets.dll", + "ref/uap10.0.15138/System.Net.WebSockets.xml", + "ref/uap10.0.15138/System.Net.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.dll", + "ref/uap10.0.15138/System.Numerics.Vectors.xml", + "ref/uap10.0.15138/System.Numerics.dll", + "ref/uap10.0.15138/System.ObjectModel.dll", + "ref/uap10.0.15138/System.ObjectModel.xml", + "ref/uap10.0.15138/System.Reflection.Context.dll", + "ref/uap10.0.15138/System.Reflection.Context.xml", + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.15138/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.15138/System.Reflection.Extensions.dll", + "ref/uap10.0.15138/System.Reflection.Extensions.xml", + "ref/uap10.0.15138/System.Reflection.Metadata.dll", + "ref/uap10.0.15138/System.Reflection.Metadata.xml", + "ref/uap10.0.15138/System.Reflection.Primitives.dll", + "ref/uap10.0.15138/System.Reflection.Primitives.xml", + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll", + "ref/uap10.0.15138/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.15138/System.Reflection.dll", + "ref/uap10.0.15138/System.Reflection.xml", + "ref/uap10.0.15138/System.Resources.Reader.dll", + "ref/uap10.0.15138/System.Resources.Reader.xml", + "ref/uap10.0.15138/System.Resources.ResourceManager.dll", + "ref/uap10.0.15138/System.Resources.ResourceManager.xml", + "ref/uap10.0.15138/System.Resources.Writer.dll", + "ref/uap10.0.15138/System.Resources.Writer.xml", + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll", + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.xml", + "ref/uap10.0.15138/System.Runtime.Extensions.dll", + "ref/uap10.0.15138/System.Runtime.Extensions.xml", + "ref/uap10.0.15138/System.Runtime.Handles.dll", + "ref/uap10.0.15138/System.Runtime.Handles.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/uap10.0.15138/System.Runtime.InteropServices.dll", + "ref/uap10.0.15138/System.Runtime.InteropServices.xml", + "ref/uap10.0.15138/System.Runtime.Numerics.dll", + "ref/uap10.0.15138/System.Runtime.Numerics.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Json.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll", + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.xml", + "ref/uap10.0.15138/System.Runtime.Serialization.dll", + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll", + "ref/uap10.0.15138/System.Runtime.dll", + "ref/uap10.0.15138/System.Runtime.xml", + "ref/uap10.0.15138/System.Security.AccessControl.dll", + "ref/uap10.0.15138/System.Security.AccessControl.xml", + "ref/uap10.0.15138/System.Security.Claims.dll", + "ref/uap10.0.15138/System.Security.Claims.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Csp.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.xml", + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll", + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.xml", + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll", + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.xml", + "ref/uap10.0.15138/System.Security.Principal.Windows.dll", + "ref/uap10.0.15138/System.Security.Principal.Windows.xml", + "ref/uap10.0.15138/System.Security.Principal.dll", + "ref/uap10.0.15138/System.Security.Principal.xml", + "ref/uap10.0.15138/System.Security.SecureString.dll", + "ref/uap10.0.15138/System.Security.SecureString.xml", + "ref/uap10.0.15138/System.Security.dll", + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll", + "ref/uap10.0.15138/System.ServiceModel.Http.dll", + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll", + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll", + "ref/uap10.0.15138/System.ServiceModel.Security.dll", + "ref/uap10.0.15138/System.ServiceModel.Web.dll", + "ref/uap10.0.15138/System.ServiceModel.dll", + "ref/uap10.0.15138/System.ServiceProcess.dll", + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll", + "ref/uap10.0.15138/System.Text.Encoding.CodePages.xml", + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll", + "ref/uap10.0.15138/System.Text.Encoding.Extensions.xml", + "ref/uap10.0.15138/System.Text.Encoding.dll", + "ref/uap10.0.15138/System.Text.Encoding.xml", + "ref/uap10.0.15138/System.Text.RegularExpressions.dll", + "ref/uap10.0.15138/System.Text.RegularExpressions.xml", + "ref/uap10.0.15138/System.Threading.Overlapped.dll", + "ref/uap10.0.15138/System.Threading.Overlapped.xml", + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll", + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.xml", + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll", + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.xml", + "ref/uap10.0.15138/System.Threading.Tasks.dll", + "ref/uap10.0.15138/System.Threading.Tasks.xml", + "ref/uap10.0.15138/System.Threading.Thread.dll", + "ref/uap10.0.15138/System.Threading.Thread.xml", + "ref/uap10.0.15138/System.Threading.ThreadPool.dll", + "ref/uap10.0.15138/System.Threading.ThreadPool.xml", + "ref/uap10.0.15138/System.Threading.Timer.dll", + "ref/uap10.0.15138/System.Threading.Timer.xml", + "ref/uap10.0.15138/System.Threading.dll", + "ref/uap10.0.15138/System.Threading.xml", + "ref/uap10.0.15138/System.Transactions.Local.dll", + "ref/uap10.0.15138/System.Transactions.Local.xml", + "ref/uap10.0.15138/System.Transactions.dll", + "ref/uap10.0.15138/System.ValueTuple.dll", + "ref/uap10.0.15138/System.ValueTuple.xml", + "ref/uap10.0.15138/System.Web.HttpUtility.dll", + "ref/uap10.0.15138/System.Web.HttpUtility.xml", + "ref/uap10.0.15138/System.Web.dll", + "ref/uap10.0.15138/System.Windows.dll", + "ref/uap10.0.15138/System.Xml.Linq.dll", + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll", + "ref/uap10.0.15138/System.Xml.ReaderWriter.xml", + "ref/uap10.0.15138/System.Xml.Serialization.dll", + "ref/uap10.0.15138/System.Xml.XDocument.dll", + "ref/uap10.0.15138/System.Xml.XDocument.xml", + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll", + "ref/uap10.0.15138/System.Xml.XPath.XDocument.xml", + "ref/uap10.0.15138/System.Xml.XPath.dll", + "ref/uap10.0.15138/System.Xml.XPath.xml", + "ref/uap10.0.15138/System.Xml.XmlDocument.dll", + "ref/uap10.0.15138/System.Xml.XmlDocument.xml", + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll", + "ref/uap10.0.15138/System.Xml.XmlSerializer.xml", + "ref/uap10.0.15138/System.Xml.dll", + "ref/uap10.0.15138/System.dll", + "ref/uap10.0.15138/WindowsBase.dll", + "ref/uap10.0.15138/mscorlib.dll", + "ref/uap10.0.15138/netstandard.dll", + "runtime.json" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "sKS9GWR1elC5HMxDyYrONWJkBdcfOkRsRCVsnn3Ed1j9SAglZy2xJ0KjW0xz0UZuCkga0s0nUwas1A8Aomo5RA==", + "type": "package", + "path": "runtime.win10-arm-aot.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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.Microsoft.Net.Native.Compiler/2.1.8": { + "sha512": "Vr1fDE+Brc5mqmbWIvKizavQRA0Eh/uIGP0zHQ2/BI4PnS0Gz6FvbuonlI8kYDZWg0tGFK9IIO2dGYCR+ez5zg==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.native.compiler/2.1.8", + "files": [ + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-arm.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-arm.microsoft.net.native.compiler.2.1.8.nupkg.sha512", + "runtime.win10-arm.microsoft.net.native.compiler.nuspec", + "tools/Runtime/arm/CommandProvider.dll", + "tools/Runtime/arm/Microsoft.NET.Native.Runtime.2.1.appx", + "tools/Runtime/arm/SymbolProvider.dll", + "tools/Runtime/arm/mrt100_app.pdb", + "tools/Runtime/arm/mrt100dac_winarm.dll", + "tools/Runtime/arm/mrt100dac_winarm_x86.dll", + "tools/Runtime/arm/mrt100dac_winrtarm.dll", + "tools/Runtime/arm/mrt100dbgshim_winarm.dll", + "tools/Runtime/arm/mrt100dbgshim_winrtarm.dll", + "tools/Runtime/arm/mrt100dbi_winarm.dll", + "tools/Runtime/arm/mrt100dbi_winrtarm.dll", + "tools/Runtime/arm/mrt100dbi_winx86.dll", + "tools/Runtime/arm/mrt100etw.dll", + "tools/Runtime/arm/mrt100sos.dll", + "tools/Runtime/arm/mrt100sos_x86.dll", + "tools/Runtime/arm/msdia120.dll", + "tools/arm/etwevents.man", + "tools/arm/ilc/Lib/Native/Interop.Native.lib", + "tools/arm/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/arm/ilc/Lib/Native/pgort.lib", + "tools/arm/ilc/Lib/Native/vmath.lib", + "tools/arm/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/arm/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Debug.dll", + "tools/arm/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/arm/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/arm/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/arm/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.dll", + "tools/arm/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/arm/ilc/Lib/Private/System.Private.MCG.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/arm/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/arm/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/arm/ilc/Lib/Private/System.Private.Threading.dll", + "tools/arm/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/arm/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/arm/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/arm/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/arm/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/arm/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/arm/ilc/Lib/Runtime/mrt100_app.dll", + "tools/arm/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/arm/ilc/Lib/Runtime/mrt150.dll", + "tools/arm/ilc/Lib/Runtime/mrt150.pdb", + "tools/arm/ilc/clrcompression.dll", + "tools/arm/ilc/cs/CciExtensions.resources.dll", + "tools/arm/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/cs/Ilc.resources.dll", + "tools/arm/ilc/cs/McgEngine.resources.dll", + "tools/arm/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/cs/ReducerEngine.resources.dll", + "tools/arm/ilc/cs/TypeNameUtilities.resources.dll", + "tools/arm/ilc/de/CciExtensions.resources.dll", + "tools/arm/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/de/Ilc.resources.dll", + "tools/arm/ilc/de/McgEngine.resources.dll", + "tools/arm/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/de/ReducerEngine.resources.dll", + "tools/arm/ilc/de/TypeNameUtilities.resources.dll", + "tools/arm/ilc/es/CciExtensions.resources.dll", + "tools/arm/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/es/Ilc.resources.dll", + "tools/arm/ilc/es/McgEngine.resources.dll", + "tools/arm/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/es/ReducerEngine.resources.dll", + "tools/arm/ilc/es/TypeNameUtilities.resources.dll", + "tools/arm/ilc/fr/CciExtensions.resources.dll", + "tools/arm/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/fr/Ilc.resources.dll", + "tools/arm/ilc/fr/McgEngine.resources.dll", + "tools/arm/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/fr/ReducerEngine.resources.dll", + "tools/arm/ilc/fr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ilc.exe", + "tools/arm/ilc/it/CciExtensions.resources.dll", + "tools/arm/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/it/Ilc.resources.dll", + "tools/arm/ilc/it/McgEngine.resources.dll", + "tools/arm/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/it/ReducerEngine.resources.dll", + "tools/arm/ilc/it/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ja/CciExtensions.resources.dll", + "tools/arm/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ja/Ilc.resources.dll", + "tools/arm/ilc/ja/McgEngine.resources.dll", + "tools/arm/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ja/ReducerEngine.resources.dll", + "tools/arm/ilc/ja/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ko/CciExtensions.resources.dll", + "tools/arm/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ko/Ilc.resources.dll", + "tools/arm/ilc/ko/McgEngine.resources.dll", + "tools/arm/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ko/ReducerEngine.resources.dll", + "tools/arm/ilc/ko/TypeNameUtilities.resources.dll", + "tools/arm/ilc/mrt150.dll", + "tools/arm/ilc/pl/CciExtensions.resources.dll", + "tools/arm/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/pl/Ilc.resources.dll", + "tools/arm/ilc/pl/McgEngine.resources.dll", + "tools/arm/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pl/ReducerEngine.resources.dll", + "tools/arm/ilc/pl/TypeNameUtilities.resources.dll", + "tools/arm/ilc/pt-BR/CciExtensions.resources.dll", + "tools/arm/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/pt-BR/Ilc.resources.dll", + "tools/arm/ilc/pt-BR/McgEngine.resources.dll", + "tools/arm/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/arm/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/arm/ilc/rhconfig.ini", + "tools/arm/ilc/ru/CciExtensions.resources.dll", + "tools/arm/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/ru/Ilc.resources.dll", + "tools/arm/ilc/ru/McgEngine.resources.dll", + "tools/arm/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ru/ReducerEngine.resources.dll", + "tools/arm/ilc/ru/TypeNameUtilities.resources.dll", + "tools/arm/ilc/tools/1028/nutcui.dll", + "tools/arm/ilc/tools/1028/rhbindui.dll", + "tools/arm/ilc/tools/1029/nutcui.dll", + "tools/arm/ilc/tools/1029/rhbindui.dll", + "tools/arm/ilc/tools/1031/nutcui.dll", + "tools/arm/ilc/tools/1031/rhbindui.dll", + "tools/arm/ilc/tools/1033/nutcui.dll", + "tools/arm/ilc/tools/1033/rhbindui.dll", + "tools/arm/ilc/tools/1036/nutcui.dll", + "tools/arm/ilc/tools/1036/rhbindui.dll", + "tools/arm/ilc/tools/1040/nutcui.dll", + "tools/arm/ilc/tools/1040/rhbindui.dll", + "tools/arm/ilc/tools/1041/nutcui.dll", + "tools/arm/ilc/tools/1041/rhbindui.dll", + "tools/arm/ilc/tools/1042/nutcui.dll", + "tools/arm/ilc/tools/1042/rhbindui.dll", + "tools/arm/ilc/tools/1045/nutcui.dll", + "tools/arm/ilc/tools/1045/rhbindui.dll", + "tools/arm/ilc/tools/1046/nutcui.dll", + "tools/arm/ilc/tools/1046/rhbindui.dll", + "tools/arm/ilc/tools/1049/nutcui.dll", + "tools/arm/ilc/tools/1049/rhbindui.dll", + "tools/arm/ilc/tools/1055/nutcui.dll", + "tools/arm/ilc/tools/1055/rhbindui.dll", + "tools/arm/ilc/tools/2052/nutcui.dll", + "tools/arm/ilc/tools/2052/rhbindui.dll", + "tools/arm/ilc/tools/3082/nutcui.dll", + "tools/arm/ilc/tools/3082/rhbindui.dll", + "tools/arm/ilc/tools/CciExtensions.dll", + "tools/arm/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/Fr/sg.resources.dll", + "tools/arm/ilc/tools/GatekeeperConfig.xml", + "tools/arm/ilc/tools/ILCTelemetry.exe", + "tools/arm/ilc/tools/ILCTelemetry.exe.config", + "tools/arm/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/arm/ilc/tools/MakeNativeWinMD.exe", + "tools/arm/ilc/tools/MakeNativeWinMD.exe.config", + "tools/arm/ilc/tools/McgCodeDom.dll", + "tools/arm/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/arm/ilc/tools/Microsoft.Cci.dll", + "tools/arm/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/arm/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/arm/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/arm/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/arm/ilc/tools/Newtonsoft.Json.dll", + "tools/arm/ilc/tools/StackTraceExceptions.txt", + "tools/arm/ilc/tools/StackTraceMetadataProvider.dll", + "tools/arm/ilc/tools/System.Collections.Immutable.dll", + "tools/arm/ilc/tools/System.Reflection.Metadata.dll", + "tools/arm/ilc/tools/System.ValueTuple.dll", + "tools/arm/ilc/tools/c2n.dll", + "tools/arm/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/cs/sg.resources.dll", + "tools/arm/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/de/sg.resources.dll", + "tools/arm/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/es/sg.resources.dll", + "tools/arm/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/it/sg.resources.dll", + "tools/arm/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ja/sg.resources.dll", + "tools/arm/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ko/sg.resources.dll", + "tools/arm/ilc/tools/msdia.sxs.manifest", + "tools/arm/ilc/tools/msdia120.dll", + "tools/arm/ilc/tools/msobj140.dll", + "tools/arm/ilc/tools/mspdbcore.dll", + "tools/arm/ilc/tools/msvcdis140.dll", + "tools/arm/ilc/tools/msvcp140.dll", + "tools/arm/ilc/tools/nutc_driver.exe", + "tools/arm/ilc/tools/nutc_driver.exe.config", + "tools/arm/ilc/tools/nutc_interface.dll", + "tools/arm/ilc/tools/pgocvt.exe", + "tools/arm/ilc/tools/pgodb140.dll", + "tools/arm/ilc/tools/pgomgr.exe", + "tools/arm/ilc/tools/pgort140.dll", + "tools/arm/ilc/tools/pgosweep.exe", + "tools/arm/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pl/sg.resources.dll", + "tools/arm/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/pt-BR/sg.resources.dll", + "tools/arm/ilc/tools/rhbind.exe", + "tools/arm/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/ru/sg.resources.dll", + "tools/arm/ilc/tools/sg.exe", + "tools/arm/ilc/tools/sg.exe.config", + "tools/arm/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/tr/sg.resources.dll", + "tools/arm/ilc/tools/ucrtbase.dll", + "tools/arm/ilc/tools/vcruntime140.dll", + "tools/arm/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hans/sg.resources.dll", + "tools/arm/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/arm/ilc/tools/zh-Hant/sg.resources.dll", + "tools/arm/ilc/tools64/1033/nutcui.dll", + "tools/arm/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/arm/ilc/tools64/StackTraceExceptions.txt", + "tools/arm/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/arm/ilc/tools64/c2n.dll", + "tools/arm/ilc/tools64/msdia.sxs.manifest", + "tools/arm/ilc/tools64/msdia120.dll", + "tools/arm/ilc/tools64/msobj140.dll", + "tools/arm/ilc/tools64/mspdbcore.dll", + "tools/arm/ilc/tools64/msvcdis140.dll", + "tools/arm/ilc/tools64/msvcp140.dll", + "tools/arm/ilc/tools64/nutc_driver.exe", + "tools/arm/ilc/tools64/nutc_driver.exe.config", + "tools/arm/ilc/tools64/nutc_interface.dll", + "tools/arm/ilc/tools64/pgocvt.exe", + "tools/arm/ilc/tools64/pgodb140.dll", + "tools/arm/ilc/tools64/pgomgr.exe", + "tools/arm/ilc/tools64/pgort140.dll", + "tools/arm/ilc/tools64/pgosweep.exe", + "tools/arm/ilc/tools64/ucrtbase.dll", + "tools/arm/ilc/tools64/vcruntime140.dll", + "tools/arm/ilc/tr/CciExtensions.resources.dll", + "tools/arm/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/tr/Ilc.resources.dll", + "tools/arm/ilc/tr/McgEngine.resources.dll", + "tools/arm/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/tr/ReducerEngine.resources.dll", + "tools/arm/ilc/tr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/zh-Hans/Ilc.resources.dll", + "tools/arm/ilc/zh-Hans/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/arm/ilc/zh-Hant/Ilc.resources.dll", + "tools/arm/ilc/zh-Hant/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/arm/mrt100etw.dll" + ] + }, + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "sha512": "+GFQKkeiSFLATafE00gey9D//DipituX3RurkzDZL0v2jT3KQv0kWrtIT2xPIL7TLbtUnXDIHty+ULKtaJ+yIA==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.native.sharedlibrary/2.1.8", + "files": [ + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.2.1.8.nupkg.sha512", + "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.1.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "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.Debug.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.1.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.Debug.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "J4XdbbcvE2iUCsup3rwOsZYaohWLIuP1IW/etf0bwQ9vWCqccuHO3yAWiaWZmWn7nn53PEJ9lZTfNNAiIm/bBw==", + "type": "package", + "path": "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/2.1.2", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.2.1.2.nupkg.sha512", + "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "/IpVWKTfetFmRJrtm9hqw1u6lm/i6P3+DxKu5JEmpG7FhLHPKU+MCrJE1ZjeRJwVwCmpGQVIOdbXiNZEbIx1FA==", + "type": "package", + "path": "runtime.win10-arm.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.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.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.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-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "iWfRwTyWtFfy0SEdSHV90Qz3hyhV/psELSKp7BocjDkTbM0nCvF4LDq6vf8D3hZXlA2ng4KM7LRIJN0Gw7aOcg==", + "type": "package", + "path": "runtime.win10-x64-aot.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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.Microsoft.Net.Native.Compiler/2.1.8": { + "sha512": "E3i4dyU1QeWuA4Y6FUaAZuKv0g8hGH84AF+aMZF1OmalZg10iEg7Cz9KW49XpOyFY7T4Gw2852TE00nsakm5xA==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.native.compiler/2.1.8", + "files": [ + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-x64.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-x64.microsoft.net.native.compiler.2.1.8.nupkg.sha512", + "runtime.win10-x64.microsoft.net.native.compiler.nuspec", + "tools/Runtime/x64/CommandProvider.dll", + "tools/Runtime/x64/Microsoft.NET.Native.Runtime.2.1.appx", + "tools/Runtime/x64/SymbolProvider.dll", + "tools/Runtime/x64/mrt100_app.pdb", + "tools/Runtime/x64/mrt100dac_winamd64.dll", + "tools/Runtime/x64/mrt100dbgshim_winamd64.dll", + "tools/Runtime/x64/mrt100dbi_winamd64.dll", + "tools/Runtime/x64/mrt100etw.dll", + "tools/Runtime/x64/mrt100sos.dll", + "tools/Runtime/x64/msdia120.dll", + "tools/x64/etwevents.man", + "tools/x64/ilc/Lib/Native/Interop.Native.lib", + "tools/x64/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/x64/ilc/Lib/Native/pgort.lib", + "tools/x64/ilc/Lib/Native/vmath.lib", + "tools/x64/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/x64/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Debug.dll", + "tools/x64/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/x64/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/x64/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/x64/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.dll", + "tools/x64/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/x64/ilc/Lib/Private/System.Private.MCG.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/x64/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x64/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/x64/ilc/Lib/Private/System.Private.Threading.dll", + "tools/x64/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/x64/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/x64/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/x64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/x64/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x64/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/x64/ilc/Lib/Runtime/mrt100_app.dll", + "tools/x64/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/x64/ilc/Lib/Runtime/mrt150.dll", + "tools/x64/ilc/Lib/Runtime/mrt150.pdb", + "tools/x64/ilc/clrcompression.dll", + "tools/x64/ilc/cs/CciExtensions.resources.dll", + "tools/x64/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/cs/Ilc.resources.dll", + "tools/x64/ilc/cs/McgEngine.resources.dll", + "tools/x64/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/cs/ReducerEngine.resources.dll", + "tools/x64/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x64/ilc/de/CciExtensions.resources.dll", + "tools/x64/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/de/Ilc.resources.dll", + "tools/x64/ilc/de/McgEngine.resources.dll", + "tools/x64/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/de/ReducerEngine.resources.dll", + "tools/x64/ilc/de/TypeNameUtilities.resources.dll", + "tools/x64/ilc/es/CciExtensions.resources.dll", + "tools/x64/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/es/Ilc.resources.dll", + "tools/x64/ilc/es/McgEngine.resources.dll", + "tools/x64/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/es/ReducerEngine.resources.dll", + "tools/x64/ilc/es/TypeNameUtilities.resources.dll", + "tools/x64/ilc/fr/CciExtensions.resources.dll", + "tools/x64/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/fr/Ilc.resources.dll", + "tools/x64/ilc/fr/McgEngine.resources.dll", + "tools/x64/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/fr/ReducerEngine.resources.dll", + "tools/x64/ilc/fr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ilc.exe", + "tools/x64/ilc/it/CciExtensions.resources.dll", + "tools/x64/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/it/Ilc.resources.dll", + "tools/x64/ilc/it/McgEngine.resources.dll", + "tools/x64/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/it/ReducerEngine.resources.dll", + "tools/x64/ilc/it/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ja/CciExtensions.resources.dll", + "tools/x64/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ja/Ilc.resources.dll", + "tools/x64/ilc/ja/McgEngine.resources.dll", + "tools/x64/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ja/ReducerEngine.resources.dll", + "tools/x64/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ko/CciExtensions.resources.dll", + "tools/x64/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ko/Ilc.resources.dll", + "tools/x64/ilc/ko/McgEngine.resources.dll", + "tools/x64/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ko/ReducerEngine.resources.dll", + "tools/x64/ilc/ko/TypeNameUtilities.resources.dll", + "tools/x64/ilc/mrt150.dll", + "tools/x64/ilc/pl/CciExtensions.resources.dll", + "tools/x64/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/pl/Ilc.resources.dll", + "tools/x64/ilc/pl/McgEngine.resources.dll", + "tools/x64/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pl/ReducerEngine.resources.dll", + "tools/x64/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x64/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x64/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/pt-BR/Ilc.resources.dll", + "tools/x64/ilc/pt-BR/McgEngine.resources.dll", + "tools/x64/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x64/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x64/ilc/rhconfig.ini", + "tools/x64/ilc/ru/CciExtensions.resources.dll", + "tools/x64/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/ru/Ilc.resources.dll", + "tools/x64/ilc/ru/McgEngine.resources.dll", + "tools/x64/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ru/ReducerEngine.resources.dll", + "tools/x64/ilc/ru/TypeNameUtilities.resources.dll", + "tools/x64/ilc/tools/1028/nutcui.dll", + "tools/x64/ilc/tools/1028/rhbindui.dll", + "tools/x64/ilc/tools/1029/nutcui.dll", + "tools/x64/ilc/tools/1029/rhbindui.dll", + "tools/x64/ilc/tools/1031/nutcui.dll", + "tools/x64/ilc/tools/1031/rhbindui.dll", + "tools/x64/ilc/tools/1033/nutcui.dll", + "tools/x64/ilc/tools/1033/rhbindui.dll", + "tools/x64/ilc/tools/1036/nutcui.dll", + "tools/x64/ilc/tools/1036/rhbindui.dll", + "tools/x64/ilc/tools/1040/nutcui.dll", + "tools/x64/ilc/tools/1040/rhbindui.dll", + "tools/x64/ilc/tools/1041/nutcui.dll", + "tools/x64/ilc/tools/1041/rhbindui.dll", + "tools/x64/ilc/tools/1042/nutcui.dll", + "tools/x64/ilc/tools/1042/rhbindui.dll", + "tools/x64/ilc/tools/1045/nutcui.dll", + "tools/x64/ilc/tools/1045/rhbindui.dll", + "tools/x64/ilc/tools/1046/nutcui.dll", + "tools/x64/ilc/tools/1046/rhbindui.dll", + "tools/x64/ilc/tools/1049/nutcui.dll", + "tools/x64/ilc/tools/1049/rhbindui.dll", + "tools/x64/ilc/tools/1055/nutcui.dll", + "tools/x64/ilc/tools/1055/rhbindui.dll", + "tools/x64/ilc/tools/2052/nutcui.dll", + "tools/x64/ilc/tools/2052/rhbindui.dll", + "tools/x64/ilc/tools/3082/nutcui.dll", + "tools/x64/ilc/tools/3082/rhbindui.dll", + "tools/x64/ilc/tools/CciExtensions.dll", + "tools/x64/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/Fr/sg.resources.dll", + "tools/x64/ilc/tools/GatekeeperConfig.xml", + "tools/x64/ilc/tools/ILCTelemetry.exe", + "tools/x64/ilc/tools/ILCTelemetry.exe.config", + "tools/x64/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/x64/ilc/tools/MakeNativeWinMD.exe", + "tools/x64/ilc/tools/MakeNativeWinMD.exe.config", + "tools/x64/ilc/tools/McgCodeDom.dll", + "tools/x64/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/x64/ilc/tools/Microsoft.Cci.dll", + "tools/x64/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/x64/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/x64/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/x64/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/x64/ilc/tools/Newtonsoft.Json.dll", + "tools/x64/ilc/tools/StackTraceExceptions.txt", + "tools/x64/ilc/tools/StackTraceMetadataProvider.dll", + "tools/x64/ilc/tools/System.Collections.Immutable.dll", + "tools/x64/ilc/tools/System.Reflection.Metadata.dll", + "tools/x64/ilc/tools/System.ValueTuple.dll", + "tools/x64/ilc/tools/c2n.dll", + "tools/x64/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/cs/sg.resources.dll", + "tools/x64/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/de/sg.resources.dll", + "tools/x64/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/es/sg.resources.dll", + "tools/x64/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/it/sg.resources.dll", + "tools/x64/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ja/sg.resources.dll", + "tools/x64/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ko/sg.resources.dll", + "tools/x64/ilc/tools/msdia.sxs.manifest", + "tools/x64/ilc/tools/msdia120.dll", + "tools/x64/ilc/tools/msobj140.dll", + "tools/x64/ilc/tools/mspdbcore.dll", + "tools/x64/ilc/tools/msvcdis140.dll", + "tools/x64/ilc/tools/msvcp140.dll", + "tools/x64/ilc/tools/nutc_driver.exe", + "tools/x64/ilc/tools/nutc_driver.exe.config", + "tools/x64/ilc/tools/nutc_interface.dll", + "tools/x64/ilc/tools/pgocvt.exe", + "tools/x64/ilc/tools/pgodb140.dll", + "tools/x64/ilc/tools/pgomgr.exe", + "tools/x64/ilc/tools/pgort140.dll", + "tools/x64/ilc/tools/pgosweep.exe", + "tools/x64/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pl/sg.resources.dll", + "tools/x64/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/pt-BR/sg.resources.dll", + "tools/x64/ilc/tools/rhbind.exe", + "tools/x64/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/ru/sg.resources.dll", + "tools/x64/ilc/tools/sg.exe", + "tools/x64/ilc/tools/sg.exe.config", + "tools/x64/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/tr/sg.resources.dll", + "tools/x64/ilc/tools/ucrtbase.dll", + "tools/x64/ilc/tools/vcruntime140.dll", + "tools/x64/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x64/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x64/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x64/ilc/tools64/1033/nutcui.dll", + "tools/x64/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x64/ilc/tools64/StackTraceExceptions.txt", + "tools/x64/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x64/ilc/tools64/c2n.dll", + "tools/x64/ilc/tools64/msdia.sxs.manifest", + "tools/x64/ilc/tools64/msdia120.dll", + "tools/x64/ilc/tools64/msobj140.dll", + "tools/x64/ilc/tools64/mspdbcore.dll", + "tools/x64/ilc/tools64/msvcdis140.dll", + "tools/x64/ilc/tools64/msvcp140.dll", + "tools/x64/ilc/tools64/nutc_driver.exe", + "tools/x64/ilc/tools64/nutc_driver.exe.config", + "tools/x64/ilc/tools64/nutc_interface.dll", + "tools/x64/ilc/tools64/pgocvt.exe", + "tools/x64/ilc/tools64/pgodb140.dll", + "tools/x64/ilc/tools64/pgomgr.exe", + "tools/x64/ilc/tools64/pgort140.dll", + "tools/x64/ilc/tools64/pgosweep.exe", + "tools/x64/ilc/tools64/ucrtbase.dll", + "tools/x64/ilc/tools64/vcruntime140.dll", + "tools/x64/ilc/tr/CciExtensions.resources.dll", + "tools/x64/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/tr/Ilc.resources.dll", + "tools/x64/ilc/tr/McgEngine.resources.dll", + "tools/x64/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/tr/ReducerEngine.resources.dll", + "tools/x64/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/zh-Hans/Ilc.resources.dll", + "tools/x64/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x64/ilc/zh-Hant/Ilc.resources.dll", + "tools/x64/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x64/mrt100etw.dll" + ] + }, + "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "sha512": "B9U0uEaDWqw7niAffdT7K340GEz888ADwiZ+KqxC6kCCINxvkdF5pXgPGKD4maZt6cz/eoteiUVE/n119+6iVg==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.native.sharedlibrary/2.1.8", + "files": [ + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-x64.microsoft.net.native.sharedlibrary.2.1.8.nupkg.sha512", + "runtime.win10-x64.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.1.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "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.Debug.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.1.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.Debug.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "Mj9j4vg9yIdvppce0eC8+EIhLmv3Uv3CNKi2v84Fl5zeSs26w9l2svE2LTixB5OTE/pj2p7cW2lUMHeWWm1tgg==", + "type": "package", + "path": "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/2.1.2", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.2.1.2.nupkg.sha512", + "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "25p/SlG1nfkQIyAp8n7bI5U6DXBt5rUfydeqnIgnRMhbFJBaetbg8VJiJ4bTU82yFTsAcGX8IpkOGFbE/xEZ/g==", + "type": "package", + "path": "runtime.win10-x64.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.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.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.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.1.7": { + "sha512": "siNB9D+pYO5AsgSW/FvHhN91H5OkpIW37G3jq+Ra1ZZvs9YFRkaiwlfkeQSiQrMOWJfm8OCZhKATaRnMboaZHw==", + "type": "package", + "path": "runtime.win10-x86-aot.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.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.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.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.Microsoft.Net.Native.Compiler/2.1.8": { + "sha512": "jU4nh95M1a+4AsPJcKcK1ddrVIJ1yi8kGKvaC0L4N/aTZokh2IeFD0qr0I8aGjivzgqKw6AM+JyoOT5dlXp7sw==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.native.compiler/2.1.8", + "files": [ + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.props", + "build/runtime.win10-x86.Microsoft.Net.Native.Compiler.targets", + "runtime.win10-x86.microsoft.net.native.compiler.2.1.8.nupkg.sha512", + "runtime.win10-x86.microsoft.net.native.compiler.nuspec", + "tools/Runtime/x86/CommandProvider.dll", + "tools/Runtime/x86/Microsoft.NET.Native.Runtime.2.1.appx", + "tools/Runtime/x86/SymbolProvider.dll", + "tools/Runtime/x86/mrt100_app.pdb", + "tools/Runtime/x86/mrt100dac_winx86.dll", + "tools/Runtime/x86/mrt100dbgshim_winx86.dll", + "tools/Runtime/x86/mrt100dbi_winx86.dll", + "tools/Runtime/x86/mrt100etw.dll", + "tools/Runtime/x86/mrt100sos.dll", + "tools/Runtime/x86/msdia120.dll", + "tools/x86/etwevents.man", + "tools/x86/ilc/Lib/Native/Interop.Native.lib", + "tools/x86/ilc/Lib/Native/TypeLoader.Native.lib", + "tools/x86/ilc/Lib/Native/pgort.lib", + "tools/x86/ilc/Lib/Native/vmath.lib", + "tools/x86/ilc/Lib/Private/System.Private.CompilerServices.ICastable.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.Augments.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.DeveloperExperience.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.DynamicDelegate.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.InteropServices.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.Threading.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.WinRTInterop.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.dll", + "tools/x86/ilc/Lib/Private/System.Private.CoreLib.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Debug.dll", + "tools/x86/ilc/Lib/Private/System.Private.Debug.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.dll", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.AppX.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.Console.dll", + "tools/x86/ilc/Lib/Private/System.Private.DeveloperExperience.Console.pdb", + "tools/x86/ilc/Lib/Private/System.Private.DispatchProxy.dll", + "tools/x86/ilc/Lib/Private/System.Private.ILToolchain.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.Extensions.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.dll", + "tools/x86/ilc/Lib/Private/System.Private.Interop.pdb", + "tools/x86/ilc/Lib/Private/System.Private.MCG.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Core.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Core.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Execution.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Execution.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Metadata.dll", + "tools/x86/ilc/Lib/Private/System.Private.Reflection.Metadata.pdb", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceGenerator.dll", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceGenerator.pdb", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x86/ilc/Lib/Private/System.Private.StackTraceMetadata.pdb", + "tools/x86/ilc/Lib/Private/System.Private.Threading.dll", + "tools/x86/ilc/Lib/Private/System.Private.Threading.pdb", + "tools/x86/ilc/Lib/Private/System.Private.TypeLoader.dll", + "tools/x86/ilc/Lib/Private/System.Private.TypeLoader.pdb", + "tools/x86/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.dll", + "tools/x86/ilc/Lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Interop.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x86/ilc/Lib/PrivateWin32/System.Private.TypeLoader.pdb", + "tools/x86/ilc/Lib/Runtime/mrt100_app.dll", + "tools/x86/ilc/Lib/Runtime/mrt100_app.pdb", + "tools/x86/ilc/Lib/Runtime/mrt150.dll", + "tools/x86/ilc/Lib/Runtime/mrt150.pdb", + "tools/x86/ilc/clrcompression.dll", + "tools/x86/ilc/cs/CciExtensions.resources.dll", + "tools/x86/ilc/cs/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/cs/Ilc.resources.dll", + "tools/x86/ilc/cs/McgEngine.resources.dll", + "tools/x86/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/cs/ReducerEngine.resources.dll", + "tools/x86/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x86/ilc/de/CciExtensions.resources.dll", + "tools/x86/ilc/de/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/de/Ilc.resources.dll", + "tools/x86/ilc/de/McgEngine.resources.dll", + "tools/x86/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/de/ReducerEngine.resources.dll", + "tools/x86/ilc/de/TypeNameUtilities.resources.dll", + "tools/x86/ilc/es/CciExtensions.resources.dll", + "tools/x86/ilc/es/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/es/Ilc.resources.dll", + "tools/x86/ilc/es/McgEngine.resources.dll", + "tools/x86/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/es/ReducerEngine.resources.dll", + "tools/x86/ilc/es/TypeNameUtilities.resources.dll", + "tools/x86/ilc/fr/CciExtensions.resources.dll", + "tools/x86/ilc/fr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/fr/Ilc.resources.dll", + "tools/x86/ilc/fr/McgEngine.resources.dll", + "tools/x86/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/fr/ReducerEngine.resources.dll", + "tools/x86/ilc/fr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ilc.exe", + "tools/x86/ilc/it/CciExtensions.resources.dll", + "tools/x86/ilc/it/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/it/Ilc.resources.dll", + "tools/x86/ilc/it/McgEngine.resources.dll", + "tools/x86/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/it/ReducerEngine.resources.dll", + "tools/x86/ilc/it/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ja/CciExtensions.resources.dll", + "tools/x86/ilc/ja/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ja/Ilc.resources.dll", + "tools/x86/ilc/ja/McgEngine.resources.dll", + "tools/x86/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ja/ReducerEngine.resources.dll", + "tools/x86/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ko/CciExtensions.resources.dll", + "tools/x86/ilc/ko/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ko/Ilc.resources.dll", + "tools/x86/ilc/ko/McgEngine.resources.dll", + "tools/x86/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ko/ReducerEngine.resources.dll", + "tools/x86/ilc/ko/TypeNameUtilities.resources.dll", + "tools/x86/ilc/mrt150.dll", + "tools/x86/ilc/pl/CciExtensions.resources.dll", + "tools/x86/ilc/pl/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/pl/Ilc.resources.dll", + "tools/x86/ilc/pl/McgEngine.resources.dll", + "tools/x86/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pl/ReducerEngine.resources.dll", + "tools/x86/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x86/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x86/ilc/pt-BR/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/pt-BR/Ilc.resources.dll", + "tools/x86/ilc/pt-BR/McgEngine.resources.dll", + "tools/x86/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x86/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x86/ilc/rhconfig.ini", + "tools/x86/ilc/ru/CciExtensions.resources.dll", + "tools/x86/ilc/ru/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/ru/Ilc.resources.dll", + "tools/x86/ilc/ru/McgEngine.resources.dll", + "tools/x86/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ru/ReducerEngine.resources.dll", + "tools/x86/ilc/ru/TypeNameUtilities.resources.dll", + "tools/x86/ilc/tools/1028/nutcui.dll", + "tools/x86/ilc/tools/1028/rhbindui.dll", + "tools/x86/ilc/tools/1029/nutcui.dll", + "tools/x86/ilc/tools/1029/rhbindui.dll", + "tools/x86/ilc/tools/1031/nutcui.dll", + "tools/x86/ilc/tools/1031/rhbindui.dll", + "tools/x86/ilc/tools/1033/nutcui.dll", + "tools/x86/ilc/tools/1033/rhbindui.dll", + "tools/x86/ilc/tools/1036/nutcui.dll", + "tools/x86/ilc/tools/1036/rhbindui.dll", + "tools/x86/ilc/tools/1040/nutcui.dll", + "tools/x86/ilc/tools/1040/rhbindui.dll", + "tools/x86/ilc/tools/1041/nutcui.dll", + "tools/x86/ilc/tools/1041/rhbindui.dll", + "tools/x86/ilc/tools/1042/nutcui.dll", + "tools/x86/ilc/tools/1042/rhbindui.dll", + "tools/x86/ilc/tools/1045/nutcui.dll", + "tools/x86/ilc/tools/1045/rhbindui.dll", + "tools/x86/ilc/tools/1046/nutcui.dll", + "tools/x86/ilc/tools/1046/rhbindui.dll", + "tools/x86/ilc/tools/1049/nutcui.dll", + "tools/x86/ilc/tools/1049/rhbindui.dll", + "tools/x86/ilc/tools/1055/nutcui.dll", + "tools/x86/ilc/tools/1055/rhbindui.dll", + "tools/x86/ilc/tools/2052/nutcui.dll", + "tools/x86/ilc/tools/2052/rhbindui.dll", + "tools/x86/ilc/tools/3082/nutcui.dll", + "tools/x86/ilc/tools/3082/rhbindui.dll", + "tools/x86/ilc/tools/CciExtensions.dll", + "tools/x86/ilc/tools/Fr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/Fr/sg.resources.dll", + "tools/x86/ilc/tools/GatekeeperConfig.xml", + "tools/x86/ilc/tools/ILCTelemetry.exe", + "tools/x86/ilc/tools/ILCTelemetry.exe.config", + "tools/x86/ilc/tools/ILCompiler.MetadataWriter.dll", + "tools/x86/ilc/tools/MakeNativeWinMD.exe", + "tools/x86/ilc/tools/MakeNativeWinMD.exe.config", + "tools/x86/ilc/tools/McgCodeDom.dll", + "tools/x86/ilc/tools/Microsoft.Build.ILTasks.dll", + "tools/x86/ilc/tools/Microsoft.Cci.dll", + "tools/x86/ilc/tools/Microsoft.DiaSymReader.Converter.dll", + "tools/x86/ilc/tools/Microsoft.DiaSymReader.dll", + "tools/x86/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", + "tools/x86/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", + "tools/x86/ilc/tools/Newtonsoft.Json.dll", + "tools/x86/ilc/tools/StackTraceExceptions.txt", + "tools/x86/ilc/tools/StackTraceMetadataProvider.dll", + "tools/x86/ilc/tools/System.Collections.Immutable.dll", + "tools/x86/ilc/tools/System.Reflection.Metadata.dll", + "tools/x86/ilc/tools/System.ValueTuple.dll", + "tools/x86/ilc/tools/c2n.dll", + "tools/x86/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/cs/sg.resources.dll", + "tools/x86/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/de/sg.resources.dll", + "tools/x86/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/es/sg.resources.dll", + "tools/x86/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/it/sg.resources.dll", + "tools/x86/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ja/sg.resources.dll", + "tools/x86/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ko/sg.resources.dll", + "tools/x86/ilc/tools/msdia.sxs.manifest", + "tools/x86/ilc/tools/msdia120.dll", + "tools/x86/ilc/tools/msobj140.dll", + "tools/x86/ilc/tools/mspdbcore.dll", + "tools/x86/ilc/tools/msvcdis140.dll", + "tools/x86/ilc/tools/msvcp140.dll", + "tools/x86/ilc/tools/nutc_driver.exe", + "tools/x86/ilc/tools/nutc_driver.exe.config", + "tools/x86/ilc/tools/nutc_interface.dll", + "tools/x86/ilc/tools/pgocvt.exe", + "tools/x86/ilc/tools/pgodb140.dll", + "tools/x86/ilc/tools/pgomgr.exe", + "tools/x86/ilc/tools/pgort140.dll", + "tools/x86/ilc/tools/pgosweep.exe", + "tools/x86/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pl/sg.resources.dll", + "tools/x86/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/pt-BR/sg.resources.dll", + "tools/x86/ilc/tools/rhbind.exe", + "tools/x86/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/ru/sg.resources.dll", + "tools/x86/ilc/tools/sg.exe", + "tools/x86/ilc/tools/sg.exe.config", + "tools/x86/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/tr/sg.resources.dll", + "tools/x86/ilc/tools/ucrtbase.dll", + "tools/x86/ilc/tools/vcruntime140.dll", + "tools/x86/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hans/sg.resources.dll", + "tools/x86/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", + "tools/x86/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x86/ilc/tools64/1033/nutcui.dll", + "tools/x86/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x86/ilc/tools64/StackTraceExceptions.txt", + "tools/x86/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x86/ilc/tools64/c2n.dll", + "tools/x86/ilc/tools64/msdia.sxs.manifest", + "tools/x86/ilc/tools64/msdia120.dll", + "tools/x86/ilc/tools64/msobj140.dll", + "tools/x86/ilc/tools64/mspdbcore.dll", + "tools/x86/ilc/tools64/msvcdis140.dll", + "tools/x86/ilc/tools64/msvcp140.dll", + "tools/x86/ilc/tools64/nutc_driver.exe", + "tools/x86/ilc/tools64/nutc_driver.exe.config", + "tools/x86/ilc/tools64/nutc_interface.dll", + "tools/x86/ilc/tools64/pgocvt.exe", + "tools/x86/ilc/tools64/pgodb140.dll", + "tools/x86/ilc/tools64/pgomgr.exe", + "tools/x86/ilc/tools64/pgort140.dll", + "tools/x86/ilc/tools64/pgosweep.exe", + "tools/x86/ilc/tools64/ucrtbase.dll", + "tools/x86/ilc/tools64/vcruntime140.dll", + "tools/x86/ilc/tr/CciExtensions.resources.dll", + "tools/x86/ilc/tr/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/tr/Ilc.resources.dll", + "tools/x86/ilc/tr/McgEngine.resources.dll", + "tools/x86/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/tr/ReducerEngine.resources.dll", + "tools/x86/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/zh-Hans/Ilc.resources.dll", + "tools/x86/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", + "tools/x86/ilc/zh-Hant/Ilc.resources.dll", + "tools/x86/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hant/TypeNameUtilities.resources.dll", + "tools/x86/mrt100etw.dll" + ] + }, + "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary/2.1.8": { + "sha512": "79ZCjEsNc1Fe9B+CmzDOSIPBF9CYFaK1qphCbgGHryIdDvMtRpEnkm8pWxR8q/2MTO5JuT0vBW42LVsW5VYVfg==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.native.sharedlibrary/2.1.8", + "files": [ + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props", + "build/runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.targets", + "runtime.win10-x86.microsoft.net.native.sharedlibrary.2.1.8.nupkg.sha512", + "runtime.win10-x86.microsoft.net.native.sharedlibrary.nuspec", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.1.appx", + "tools/SharedLibrary/chk/Native/SharedLibrary.dll", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", + "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.Debug.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/chk/Toc/System.Linq.toc", + "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/chk/Toc/System.Threading.toc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Debug.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", + "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Reflection.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.Runtime.Extensions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Threading.iltocpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Debug.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Reflection.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.Runtime.Extensions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Threading.ilpdb", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", + "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.1.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.Debug.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", + "tools/SharedLibrary/ret/Toc/System.Linq.toc", + "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", + "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", + "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", + "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", + "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", + "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc", + "tools/SharedLibrary/ret/Toc/System.Threading.toc" + ] + }, + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "MeYqB6D7vA9eRb2fDjN9LWTLAY+m5Ocg4SBoEtG1oLPXgfuJcUNUb+etdsid/V3j7jgr4ito60Wr8U03mmJGuA==", + "type": "package", + "path": "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/2.1.2", + "files": [ + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.2.1.2.nupkg.sha512", + "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" + ] + }, + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.1.7": { + "sha512": "ub7zmqQTMhlaYf4o27/8LLMmhoHq3f5x5CMFur5eDvILRqcd53r3rTQMkp1KU6wmk0VAHW9P0490UBgo9d3r4A==", + "type": "package", + "path": "runtime.win10-x86.microsoft.netcore.universalwindowsplatform/6.1.7", + "files": [ + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform.6.1.7.nupkg.sha512", + "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.CSharp.dll", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.VisualBasic.dll", + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.AppContext.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Buffers.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Concurrent.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Immutable.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.NonGeneric.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Specialized.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Annotations.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Composition.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Configuration.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Console.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Core.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.Common.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.SqlClient.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Contracts.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Debug.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Process.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tools.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tracing.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Dynamic.Runtime.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Calendars.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Extensions.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.IsolatedStorage.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll", + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.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.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.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" + ] + } + }, + "projectFileDependencyGroups": { + "UAP,Version=v10.0.17134": [ + "Microsoft.NETCore.UniversalWindowsPlatform >= 6.1.7" + ] + }, + "packageFolders": { + "C:\\Users\\MarcelPC\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\MarcelPC\\Desktop\\Na studia\\Informatyka\\C#\\Ksiazka\\HospitalServerManager\\HospitalServerManager\\HospitalServerManager.csproj", + "projectName": "HospitalServerManager", + "projectPath": "C:\\Users\\MarcelPC\\Desktop\\Na studia\\Informatyka\\C#\\Ksiazka\\HospitalServerManager\\HospitalServerManager\\HospitalServerManager.csproj", + "packagesPath": "C:\\Users\\MarcelPC\\.nuget\\packages\\", + "outputPath": "C:\\Users\\MarcelPC\\Desktop\\Na studia\\Informatyka\\C#\\Ksiazka\\HospitalServerManager\\HospitalServerManager\\obj\\", + "projectStyle": "PackageReference", + "skipContentFileWrite": true, + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\" + ], + "configFilePaths": [ + "C:\\Users\\MarcelPC\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "uap10.0.17134" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "uap10.0.17134": { + "projectReferences": {} + } + } + }, + "frameworks": { + "uap10.0.17134": { + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": { + "target": "Package", + "version": "[6.1.7, )" + } + }, + "imports": [ + "net461" + ], + "assetTargetFallback": true, + "warn": true + } + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-arm64-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/x86/Debug/App.g.cs b/obj/x86/Debug/App.g.cs new file mode 100644 index 0000000..e49cb70 --- /dev/null +++ b/obj/x86/Debug/App.g.cs @@ -0,0 +1,17 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6E38FB29F9D5CA8F36FB6C3E6488659E" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager +{ + 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..d8c930a --- /dev/null +++ b/obj/x86/Debug/App.g.i.cs @@ -0,0 +1,59 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6E38FB29F9D5CA8F36FB6C3E6488659E" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager +{ +#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..cc5c0b9 --- /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..21d2d0f 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..73e5d86 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..0e3f3f9 --- /dev/null +++ b/obj/x86/Debug/FxResources.Microsoft.CSharp.SR.resw @@ -0,0 +1,462 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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) + + + 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 + + + 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) + + + Cannot bind call with no calling object + + + Binary operators must be invoked with two arguments + + + '{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 + + + 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 + + + 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 + + + '{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 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}' + + + 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' + + + An object reference is required for the non-static field, method, or property '{0}' + + + The first argument to dynamically-bound static call must be a Type + + + 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 + + + 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}' + + + 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}' + + + '{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..223513c --- /dev/null +++ b/obj/x86/Debug/FxResources.Microsoft.VisualBasic.SR.resw @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + 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. + + + Omitted argument cannot match a ParamArray parameter. + + + Overload resolution failed because no Public '{0}' can be called with these arguments:{1} + + + 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. + + + Field '{0}' of type '{1}' is 'ReadOnly'. + + + Cannot convert argument '{0}' of type '{1}' to type '{2}'. + + + 'SyncLock' operand cannot be of type '{0}' because '{0}' is not a reference type. + + + 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} + + + 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. + + + 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} + + + Operator '{0}' is not defined for type '{1}'. + + + ByRef parameter '{0}' narrows from '{1}' to '{2}' when assigning back to the matching argument. + + + Argument '{0}' is Nothing. + + + Public member '{0}' on type '{1}' not found. + + + 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. + + + 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}\" + + + Late-bound assignment to a field of value type '{0}' is not valid when '{1}' is the result of a late-bound expression. + + + Argument matching parameter '{0}' narrows from '{1}' to '{2}'. + + + 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}' + + + 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.Collections.Concurrent.SR.resw b/obj/x86/Debug/FxResources.System.Collections.Concurrent.SR.resw new file mode 100644 index 0000000..da39c92 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.Concurrent.SR.resw @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + 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. + + + 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. + + + Enumeration has either not started or has already finished. + + + 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 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..57e9535 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.NonGeneric.SR.resw @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + This operation is not supported on SortedList nested types because they require modifying the original SortedList. + + + Key cannot be null. + + + Collection was modified; enumeration operation may not execute. + + + 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. + + + 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. + + + Only single dimensional arrays are supported for the requested action. + + + Dictionary cannot be null. + + + Non-negative number required. + + + 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}' + + + 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..531ca22 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.SR.resw @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. Key: {0} + + + 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. + + + The keys for this dictionary are missing. + + + 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. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + The serialized Count information doesn't match the number of items. + + + capacity was less than the current size. + + + Only single dimensional arrays are supported for the requested action. + + + Mutating a value collection derived from a dictionary is not allowed. + + + Must be less than or equal to the size of the collection. + + + The LinkedList is empty. + + + The input array length must not exceed Int32.MaxValue / {0}. Otherwise BitArray.Length would exceed Int32.MaxValue. + + + Non-negative number required. + + + The LinkedList node does not belong to current LinkedList. + + + HashSet capacity is too big. + + + OnDeserialization method was called while the object was not being deserialized. + + + 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. + + + The values for this dictionary are missing. + + + Must be less than or equal to upperValue. + + + Stack empty. + + + Queue empty. + + + 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..a8f704b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Collections.Specialized.SR.resw @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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}. + + + An item with the same key has already been added. Key: {0} + + + Collection was modified after the enumerator was instantiated. + + + At least one object must implement IComparable. + + + Collection is read-only. + + + Multi dimension array is not supported on this operation. + + + Index is less than zero. + + + There was an error deserializing the OrderedDictionary. The ArrayList does not contain DictionaryEntries. + + + The OrderedDictionary is read-only and cannot be modified. + + + OnDeserialization method was called while the object was not being deserialized. + + + 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..cf53439 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.Annotations.SR.resw @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 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 whitespace. + + + 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 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 field of type {0} must be a string, array or ICollection type. + + + 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}'. + + + 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. + + + 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 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 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..47a2dba --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.EventBasedAsync.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 + + + 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. + + + An exception occurred during the operation, making the result invalid. Check InnerException for exception details. + + + 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.ComponentModel.Primitives.SR.resw b/obj/x86/Debug/FxResources.System.ComponentModel.Primitives.SR.resw new file mode 100644 index 0000000..c058da6 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.Primitives.SR.resw @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Design + + + Layout + + + Asynchronous + + + Drag Drop + + + Window Style + + + Position + + + Key + + + DDE + + + Misc + + + Text + + + Font + + + Data + + + List + + + Scale + + + Focus + + + Mouse + + + Appearance + + + Behavior + + + Configurations + + + Format + + + The value of argument '{0}' ({1}) is invalid for Enum type '{2}'. + + + Action + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.ComponentModel.TypeConverter.SR.resw b/obj/x86/Debug/FxResources.System.ComponentModel.TypeConverter.SR.resw new file mode 100644 index 0000000..8d35c72 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ComponentModel.TypeConverter.SR.resw @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Null is not a valid value for {0}. + + + {0} is not a valid value for {1}. + + + Accessor methods for the {0} property are missing. + + + Invalid type for the {0} event. + + + The primary and secondary objects are already associated with each other. + + + Parameter must be static. + + + The {0} culture cannot be converted to a CultureInfo object on this computer. + + + The value '{0}' is not a valid value for the enum '{1}'. + + + (New...) + + + Couldn't find type {0} + + + '{0}' is not a valid value for 'Interval'. 'Interval' must be greater than {1}. + + + The Mask value cannot be null or empty. + + + Parameter must be readable. + + + Duplicate component name '{0}'. Component names must be unique and case-insensitive. + + + A valid license cannot be granted for the type {0}. Contact the manufacturer of the component for more information. + + + Length mismatch. + + + Parameter cannot be static. + + + Invalid event handler for the {0} event. + + + {0} on {1} + + + The number of elements in the Type and Object arrays must match. + + + (Collection) + + + IDictionary parameter contains at least one entry that is not valid. Ensure all values are consistent with the object's properties. + + + The service {0} already exists in the service container. + + + The object {0} is being remoted by a proxy that does not support interface discovery. This type of remoted object is not supported. + + + The number of milliseconds between timer events. + + + The object used to marshal the event handler calls issued when an interval has elapsed. + + + Invalid value '{1}' for parameter '{0}'. + + + (none) + + + Indicates whether the timer is enabled to fire events at a defined interval. + + + Expected types in the collection to be of type {0}. + + + The CurrentContext property of the LicenseManager is currently locked and cannot be changed. + + + The CurrentContext property of the LicenseManager is already locked by another user. + + + {0} Array + + + Indicates whether the timer will be restarted when it is enabled. + + + An array of tab type names or tab types must be specified + + + tabClasses must have the same number of items as tabScopes + + + The checkout was canceled by the user. + + + Once a ListSortDescriptionCollection has been created it can't be modified. + + + Invalid member name + + + An instance of type '{1}' was being created, and a valid license could not be granted for the type '{0}'. Please, contact the manufacturer of the component for more information. + + + The specified mask contains invalid characters. + + + The CurrentContext property of the LicenseManager can only be unlocked with the same contextUser. + + + (Collection) + + + Relationships between {0}.{1} and {2}.{3} are not supported. + + + Text "{0}" cannot be parsed. The expected text format is "{1}". + + + Color '{0}' is not valid. + + + (Default) + + + {0} cannot convert from {1}. + + + '{1}' is not a valid value for '{0}'. + + + The specified type is not a nullable type. + + + Invalid type for the {0} property + + + The specified character value is not allowed for this property. + + + The PasswordChar and PromptChar values cannot be the same. + + + The service instance must derive from or implement {0}. + + + Property accessor '{0}' on object '{1}' threw the following exception:'{2}' + + + '{0}' is unable to convert '{1}' to '{2}'. + + + Accessor methods for the {0} event are missing. + + + The type description provider {0} has returned null from {1} which is illegal. + + + Cannot create an association when the primary and secondary objects are the same. + + + (none) + + + (null) + + + (Text) + + + Scope must be PropertyTabScope.Document or PropertyTabScope.Component + + + Failed to create ToolboxItem of type: {0} + + + Occurs when the Interval has elapsed. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Console.SR.resw b/obj/x86/Debug/FxResources.System.Console.SR.resw new file mode 100644 index 0000000..96c138f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Console.SR.resw @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + Stream does not support writing. + + + Cannot read keys when either application does not have a console or when console input has been redirected. Try Console.Read. + + + The terminfo database is invalid. + + + The process cannot access the file because it is being used by another process. + + + Index and count must refer to a location within the string. + + + Could not find a part of the path '{0}'. + + + Stream does not support seeking. + + + The frequency must be between {0} and {1}. + + + The ConsoleColor enum value was not defined on that enum. Please use a defined color from the enum. + + + 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. + + + There is no console. + + + The printf operation failed. + + + Console key values must be between 0 and 255 inclusive. + + + 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 console title is too long. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Access to the path '{0}' is denied. + + + The home directory of the current user could not be determined. + + + The new console window size would force the console buffer size to be too large. + + + Could not find a part of the path. + + + The value must be greater than or equal to zero and less than the console's buffer size in that dimension. + + + The cursor size is invalid. It must be a percentage between 1 and 100. + + + 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. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + String contains invalid Unicode code points. + + + The value must be less than the console's current maximum window size of {0} in that dimension. Note that this value depends on screen resolution and the console font. + + + Stream does not support reading. + + + The window position must be set such that the current window size fits within the console's buffer, and the numbers must not be negative. + + + Cannot access a closed file. + + + 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}'. + + + Cannot see if a key has been pressed when either application does not have a console or when console input has been redirected from a file. Try Console.In.Peek. + + + Index and count must refer to a location within the buffer. + + + Buffer cannot be null. + + + Positive number required. + + + Could not find file '{0}'. + + + The console buffer size must not be less than the current size and position of the console window, nor greater than or equal to short.MaxValue. + + \ 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..e20fe02 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Data.Common.SR.resw @@ -0,0 +1,1482 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Column requires a valid DataType. + + + Cannot serialize the DataTable. DataTable name is not set. + + + Cannot delete this row because constraints are enforced on relation {0}, and deleting this row will strand child rows. + + + Cannot call BeginEdit() inside the RowChanging event. + + + Undefined data type: '{0}'. + + + Invalid attempt to call {0} when the stream is non-seekable. + + + Invalid constraint. + + + The relation is not parented to the table to which this DataView points. + + + Table {0} does not belong to this DataSet. + + + Type '{0}' does not contain static Null property or field. + + + '{0}' argument contains null value. + + + Cannot remove a column that doesn't belong to this table. + + + Cannot create DataTableReader. Arguments contain null value. + + + Cannot create entity references on DataDocument. + + + Nested table '{0}' with empty namespace cannot have multiple parent tables in different namespaces. + + + A time zone was specified. SqlDateTime does not support time zones. + + + SourceColumn is required to be a non-empty string. + + + When batching, the command's UpdatedRowSource property value of UpdateRowSource.FirstReturnedRecord or UpdateRowSource.Both is invalid. + + + Schema of current DataTable '{0}' in DataTableReader has changed, DataTableReader is invalid. + + + ParentColumns and ChildColumns should be the same length. + + + Cannot perform '{0}' operation on {1} and {2}. + + + Cannot load XmlDataDocument if it already contains data. Please use a new XmlDataDocument. + + + Cannot call Delete inside an OnRowDeleting event. Throw an exception to cancel this delete. + + + ForeignKeyConstraint {0} requires the child key values ({1}) to exist in the parent table. + + + 'hours' argument is out of range. Value must be between -14 and +14. + + + DataTable does not support schema inference from Xml. + + + DataSet doesn't support 'union' or 'list' as simpleType. + + + Invalid keyword, contain one or more of 'no characters', 'control characters', 'leading or trailing whitespace' or 'leading semicolons'. + + + RowUpdatedEvent: Errors occurred; no additional is information available. + + + Cannot change DataType of a column once it has data. + + + Cannot change Unique property for the expression column. + + + Type mismatch in function argument: {0}(), argument {1}, expected one of the Integer types. + + + Cannot insert external objects to this list. + + + FillSchema: expected a non-empty string for the SourceTable name. + + + Invalid attempt to call {0} when the stream is closed. + + + Syntax error: The IN keyword must be followed by a non-empty list of expressions separated by commas, and also must be enclosed in parentheses. + + + Format of the initialization string does not conform to specification starting at index {0}. + + + Child table key is missing in relation '{0}'. + + + Cannot remove a table that has existing relations. Remove relations first. + + + This relation already belongs to another DataSet. + + + The DataAdapter.SelectCommand.Connection property needs to be initialized; + + + DataTable '{0}' does not match to any DataTable in source. + + + The buffer is insufficient. Read or write operation failed. + + + The {0}.{1} is required to be unique, '{2}' already exists in the collection. + + + Data type not defined. + + + {0} "{1}". + + + Cannot remove a constraint that doesn't belong to this table. + + + '{0}' argument cannot be null. + + + There is no Proposed data to access. + + + Cannot change the DataSet name once the DataSet is mapped to a loaded XML document. + + + The {0} is already contained by another {1}. + + + Invalid number of arguments: function {0}(). + + + Collection itself is not modifiable. + + + Cannot set column '{0}'. The value violates the MaxLength limit of this column. + + + Cannot remove this column, because it is part of an expression: {0} = {1}. + + + Invalid type name '{0}'. + + + The expression contains invalid date constant '{0}'. + + + Invalid column name [{0}]. + + + Buffer offset '{1}' plus the bytes available '{0}' is greater than the length of the passed in buffer. + + + This constraint cannot be enabled as not all values have corresponding parent values. + + + ParentKey and ChildKey are identical. + + + The input wasn't in a correct format. + + + Invalid foliation. + + + Column is marked read only. + + + Invalid array size. + + + Cannot add a SimpleContent column to a table containing element columns or nested relations. + + + Column '{0}' already belongs to another DataTable. + + + Cannot have more than one SimpleContent columns in a DataTable. + + + Column '{0}' already belongs to this DataTable. + + + The DefaultValue for column {0} is of type {1}, but the column is of type {2}. + + + ColumnName is required when it is part of a DataTable. + + + Invalid index {0} for this {1} with Count={2}. + + + Cannot change the column namespace once the associated DataSet is mapped to a loaded XML document. + + + The schema namespace is invalid. Please use this one instead: {0}. + + + Cannot find column {0}. + + + Cannot add primary key constraint since primary key is already set for the table. + + + Relation {0} cannot be merged, because keys have mismatch columns. + + + Syntax error in Lookup expression: Expecting keyword 'Parent' followed by a single column argument with possible relation qualifier: Parent[(<relation_name>)].<column_name>. + + + DataReader.GetFieldType({0}) returned null. + + + The column mapping from SourceColumn '{0}' failed because the DataColumn '{1}' is a computed column. + + + Constraint '{0}' does not belong to this DataTable. + + + This relation already belongs to this DataSet. + + + SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. + + + SQL Type has already been loaded with data. + + + Target DataSet missing definition for {0}. + + + SQL Type has not been loaded with data. + + + Invalid Relation definition: different length keys. + + + Invalid XPath selection inside field node. Cannot find: {0}. + + + Cannot change a proposed value in the RowChanging event. + + + There is no Current data to access. + + + Index {0} is either negative or above rows count. + + + Dynamic SQL generation for the DeleteCommand is not supported against a SelectCommand that does not return any key column information. + + + The expression contains an invalid string constant: {0}. + + + The connection's current state: {0}. + + + MaxLength applies to string data type only. You cannot set Column '{0}' property MaxLength to be non-negative number. + + + SchemaSerializationMode property can be set only if it is overridden by derived DataSet. + + + Value '{1}' is invalid for attribute '{0}'. + + + Cannot perform this operation on a row not in the table. + + + <target>.PrimaryKey and <source>.PrimaryKey have different Length. + + + This is a null range. + + + Cannot write from an offset that is larger than current length. It would leave uninitialized data in the buffer. + + + Min ({0}) must be less than or equal to max ({1}) in a Range object. + + + Invalid source buffer (size of {0}) offset: {1} + + + Type mismatch in expression '{0}'. + + + The StatementType {0} is not expected here. + + + Cannot write to non-zero offset, because current value is Null. + + + This row already belongs to another table. + + + Cannot call CancelEdit() inside an OnRowChanging event. Throw an exception to cancel this update. + + + Cannot change DataSet property once it is set. + + + The connection's current state is fetching. + + + Cannot find constraint {0}. + + + Property not accessible because '{0}'. + + + There is no row at position {0}. + + + Prefix '{0}' is not valid, because it contains special characters. + + + Cannot create a Key when the same column is listed more than once: '{0}' + + + Divide by zero error encountered. + + + Cannot find relation {0}. + + + Cannot create a relation between tables in different DataSets. + + + Column '{0}' exceeds the MaxLength limit. + + + Table doesn't have a primary key. + + + Cannot find table {0}. + + + Missing the DataColumn '{0}' for the SourceColumn '{2}'. + + + Missing the DataColumn '{0}' in the DataTable '{1}' for the SourceColumn '{2}'. + + + Inconvertible type mismatch between SourceColumn '{0}' of {1} and the DataColumn '{2}' of {3}. + + + Error in Like operator: the string pattern '{0}' is invalid. + + + RowUpdatingEvent: Errors occurred; no additional is information available. + + + Constraint matches constraint named {0} already in collection. + + + Cannot create a Key from Columns that belong to different tables. + + + Syntax error: Missing operand before '{0}' operator. + + + DataTable must be set prior to using DataView. + + + Current DataRow is either in Deleted or Detached state. + + + Cannot set Expression property due to circular reference in the expression. + + + Parent table key is missing in relation '{0}'. + + + Cannot set AutoIncrement property for a column with DefaultValue set. + + + The row doesn't belong to the same DataSet as this relation. + + + Arithmetic Overflow. + + + Cannot delete on a DataSource where AllowDelete is false. + + + 'minutes' argument is out of range. Value must be between -59 and +59. + + + Invalid flag value. + + + Cannot add a DataRelation or Constraint that has different Locale or CaseSensitive settings between its parent and child tables. + + + Data is Null. This method or property cannot be called on Null values. + + + Invalid usage of aggregate function {0}() and Type: {1}. + + + Cannot find column [{0}]. + + + Cannot set Column '{0}' property MaxLength to '{1}'. There is at least one string in the table longer than the new limit. + + + Type mismatch in function argument: {0}(), argument {1}, expected {2}. + + + This type of node cannot be cloned: {0}. + + + Expression is too complex. + + + {0} is neither a DataColumn nor a DataRelation for table {1}. + + + Parent Columns and Child Columns don't have type-matching columns. + + + {0} "{1}", the current limit of "{2}" is insufficient. + + + Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information. + + + Cannot change DateTimeMode from '{0}' to '{1}' once the table has data. + + + DataTableReader Cannot be created. There is no DataTable in DataSet. + + + Cannot change AutoIncrement of a DataColumn with type '{0}' once it has data. + + + ParentColumns and ChildColumns must not be zero length. + + + Column '{0}' does not belong to underlying table '{1}'. + + + Expecting {0} value(s) for the key being indexed, but received {1} value(s). + + + RowStateFilter cannot show ModifiedOriginals and ModifiedCurrents at the same time. + + + Column '{0}' contains non-unique values. + + + This relation and child row don't belong to same DataSet. + + + Target table {0} missing definition for column {1}. + + + Cannot change Table property once it is set. + + + The connection's current state is closed. + + + Cannot remove a row that's already been removed. + + + Cannot have 0 columns. + + + The given name '{0}' matches at least two names in the collection object with different namespaces. + + + Expecting argument of type {1}, but received type {0}. + + + Cannot change the Column '{0}' property Namespace. The Column is SimpleContent. + + + Update requires the InsertCommand to have a connection object. The Connection property of the InsertCommand has not been initialized. + + + Circular reference in self-nested table '{0}'. + + + Invalid destination buffer (size of {0}) offset: {1} + + + Conversion from SqlDecimal to Decimal overflows. + + + Column must belong to a table. + + + Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not contain a row version column. + + + Missing SourceColumn mapping for '{0}'. + + + <target>.{0} and <source>.{0} have conflicting properties: DataType property mismatch. + + + Cannot add a nested relation or an element column to a table containing a SimpleContent column. + + + Invalid attempt to {0} when stream is closed. + + + Cannot remove unique constraint since it's the primary key of a table. + + + Specified SeekOrigin value is invalid. + + + DataTable already has a simple content column. + + + DataSet cannot expand entities. Use XmlValidatingReader and set the EntityHandling property accordingly. + + + Update requires the DeleteCommand to have a connection object. The Connection property of the DeleteCommand has not been initialized. + + + Cannot load diffGram. The 'sql' node is missing. + + + Cannot add, remove, or change Nested relations from the DataSet once the DataSet is mapped to a loaded XML document. + + + The {0} only accepts non-null {1} type objects, not {2} objects. + + + DataColumn with type '{0}' is a complexType. Can not serialize value of a complex type as Attribute + + + Cannot set expression because column cannot be made ReadOnly. + + + The DataSet parameter is invalid. It cannot be null. + + + This row is empty. + + + Update requires a valid DeleteCommand when passed DataRow collection with deleted rows. + + + Cannot call EndEdit() inside an OnRowChanging event. + + + The connection's current state is executing. + + + Current DataTable '{0}' is empty. There is no DataRow in DataTable. + + + Hierarchical chapter columns must map to an AutoIncrement DataColumn. + + + PrimaryKey columns do not belong to this table. + + + Cannot enforce constraints on constraint {0}. + + + Version not found. + + + Cannot find ElementType name='{0}'. + + + Data length '{0}' is less than 0. + + + Two strings to be concatenated have different collation. + + + Dynamic SQL generation is not supported against a SelectCommand that does not return any base table information. + + + Relation {0} does not belong to this DataSet. + + + Cannot create a DataRelation if Parent or Child Columns are not in a DataSet. + + + Cannot change the ColumnMapping property once the associated DataSet is mapped to a loaded XML document. + + + Cannot have different remoting format property value for DataSet and DataTable. + + + Parent table name is missing in relation '{0}'. + + + DataView is not open. + + + Operator '{0}' is ambiguous on operands of type '{1}' and '{2}'. Cannot mix signed and unsigned types. Please use explicit Convert() function. + + + The value of attribute '{0}' should be '{1}' or '{2}'. + + + Cannot change the name of the DataSet to an empty string. + + + The expression contains undefined function call {0}(). + + + DataTable already belongs to another DataSet. + + + Type of value has a mismatch with column type + + + A relation already exists for these child columns. + + + Couldn't store <{0}> in {1} Column. Expected type is {2}. + + + A DataTable named '{0}' with the same Namespace '{1}' already belongs to this DataSet. + + + Cannot add constraint to DataTable '{0}' which is a child table in two nested relations. + + + SqlType error. + + + Invalid numeric precision/scale. + + + A child row has multiple parents. + + + The given DataRow is not in the current DataRowCollection. + + + {0} isn't a valid Sort string entry. + + + The row insert position {0} is invalid. + + + The feature not implemented. {0}. + + + Cannot change ReadOnly property for the expression column. + + + Cannot create a constraint based on Expression column {0}. + + + Cannot change the name of a constraint to empty string when it is in the ConstraintCollection. + + + Column '{0}' does not allow DBNull.Value. + + + This relation should connect two tables in this DataSet to be added to this DataSet. + + + Cannot change the table namespace once the associated DataSet is mapped to a loaded XML document. + + + Values are missing in the rowOrder sequence for table '{0}'. + + + Kind property of provided DateTime argument, does not match 'hours' and 'minutes' arguments. + + + The RowStates parameter must be set to a valid combination of values from the DataViewRowState enumeration. + + + Cannot clear this list. + + + DataTableReader is invalid for current DataTable '{0}'. + + + Expecting non-empty string for '{0}' parameter. + + + Update requires a valid InsertCommand when passed DataRow collection with new rows. + + + Dynamic SQL generation for the DeleteCommand is not supported against a SelectCommand that does not contain a row version column. + + + Cannot interpret token '{0}' at position {1}. + + + Update requires the {0}Command to have an open connection object. {1} + + + Cannot create an expression on a column that has AutoIncrement or Unique. + + + Operation not supported in the RowChanging event. + + + The expression contains unsupported operator '{0}'. + + + DataTable internal index is corrupted: '{0}'. + + + Cannot set Column '{0}' to be null. Please use DBNull instead. + + + Attempted to remove an {0} that is not contained by this {1}. + + + SourceTable is required to be a non-empty string + + + Update requires the UpdateCommand to have a connection object. The Connection property of the UpdateCommand has not been initialized. + + + Version must be Original, Current, or Proposed. + + + Auto SQL generation during Update requires a valid SelectCommand. + + + Column '{0}' is constrained to be unique. Value '{1}' is already present. + + + Dynamic SQL generation is not supported against multiple base tables. + + + Column name '{0}' is defined for different mapping types. + + + The connection's current state is open. + + + Unbound reference in the aggregate expression '{0}'. + + + Unbound reference in the expression '{0}'. + + + Column '{0}' has null values in it. + + + Update requires a valid UpdateCommand when passed DataRow collection with modified rows. + + + The DateTimeMode can be set only on DataColumns of type DateTime. + + + Update requires the {0}Command to have an open connection object. {1} + + + The given name '{0}' matches at least two names in the collection object with different cases, but does not match either of them with the same case. + + + Invalid SqlDateTime. + + + Syntax error: The items following the IN keyword must be separated by commas and be enclosed in parentheses. + + + TableName is required when it is part of a DataSet. + + + Cannot set Column '{0}' property MappingType to SimpleContent. The Column DataType is {1}. + + + Column '{0}' does not belong to table {1}. + + + Update unable to find TableMapping['{0}'] or DataTable '{0}'. + + + There is no Original data to access. + + + Cannot add a relation to this table's ChildRelation collection where this table isn't the parent table. + + + Cannot create a collection on a null table. + + + The name '{0}' is invalid. A DataTable cannot have the same name of the DataSet. + + + DataSet cannot instantiate an abstract ComplexType for the node {0}. + + + Update requires the updating command to have an open connection object. {1} + + + Value is either too large or too small for Type '{0}'. + + + Unable to proceed with deserialization. Data does not implement IXMLSerializable, therefore polymorphism is not supported. + + + Cannot remove this column, because it is a part of the constraint {0} on the table {1}. + + + This constraint cannot be added since ForeignKey doesn't belong to table {0}. + + + A Constraint named '{0}' already belongs to this DataTable. + + + The table this collection displays relations for has been removed from its DataSet. + + + Cannot remove objects not in the list. + + + Need a row or a table to Invoke DataFilter. + + + Cannot remove unique constraint '{0}'. Remove foreign key constraint '{1}' first. + + + A column named '{0}' already belongs to this DataTable: cannot set a nested table name to the same name. + + + Cannot add a column named '{0}': a nested table with the same name already belongs to this DataTable. + + + Internal .Net Framework Data Provider error {0}. + + + DataSet does not support System.Nullable<>. + + + MinimumCapacity must be non-negative. + + + Two strings to be compared have different collation. + + + This row already belongs to this table. + + + Missing SourceTable mapping: '{0}' + + + Syntax error in the expression. + + + The expression contains invalid name: '{0}'. + + + The table ({0}) cannot be the child table to itself in nested relations. + + + The MaxRecords value of {0} is invalid; the value must be >= 0. + + + AutoIncrementStep must be a non-zero value. + + + The StartRecord value of {0} is invalid; the value must be >= 0. + + + DataSet must be set prior to using DataViewManager. + + + Cannot convert from {0} to {1}. + + + A column named '{0}' already belongs to this DataTable. + + + Null not allowed. + + + Syntax error in aggregate argument: Expecting a single column argument with possible 'Child' qualifier. + + + Data Exception. + + + IsDataSet attribute is missing in input Schema. + + + Input array is longer than the number of columns in this table. + + + Duplicated declaration '{0}'. + + + Mismatch columns in the PrimaryKey : <target>.{0} versus <source>.{1}. + + + Cannot remove this row because it has child rows, and constraints on relation {0} are enforced. + + + The connection's current state is connecting. + + + Cannot set {0}. + + + Numeric arithmetic causes truncation. + + + Cannot add external objects to this list. + + + The value contains embedded nulls (\\u0000). + + + {0}() argument is out of range. + + + Cannot call AddNew on a DataView where AllowNew is false. + + + Child table name is missing in relation '{0}'. + + + Cannot add a relation to this table's ParentRelation collection where this table isn't the child table. + + + Cannot set Column '{0}' property DataType to {1}. The Column is SimpleContent. + + + {0} "{1}", incorrect usage of quotes. + + + Ordinal '{0}' exceeds the maximum number. + + + DataTable already belongs to this DataSet. + + + Cannot find the parent relation '{0}'. + + + Cannot add or remove columns from the table once the DataSet is mapped to a loaded XML document. + + + GetChildRows requires a row whose Table is {0}, but the specified row's Table is {1}. + + + Cannot create DataTableReader. Argument is Empty. + + + The rowOrder value={0} has been found twice for table named '{1}'. + + + Missing TableMapping when TableMapping.DataSetTable='{0}'. + + + Expected {0}, but actual token at the position {2} is {1}. + + + Please set DataSet.EnforceConstraints == false before trying to edit XmlDataDocument using XML operations. + + + Cannot set AutoIncrement property for a computed column. + + + Expecting non-empty array for '{0}' parameter. + + + Invalid attempt to access a closed XmlReader. + + + Cannot set an object into this list. + + + Invalid attempt to call {0} when the stream non-writable. + + + GetElementById() is not supported on DataDocument. + + + Cannot set Expression property on column {0}, because it is a part of a constraint. + + + Column '{0}' is read only. + + + Cannot convert object of type '{0}' to object of type '{1}'. + + + Cannot evaluate non-constant expression without current row. + + + Simple type '{0}' has already be declared with different '{1}'. + + + The QuotePrefix and QuoteSuffix properties cannot be changed once an Insert, Update, or Delete command has been generated. + + + Cannot convert '{0}' to type '{1}'. + + + Dynamic SQL generation not supported against table names '{0}' that contain the QuotePrefix or QuoteSuffix character '{1}'. + + + Cannot change the table name once the associated DataSet is mapped to a loaded XML document. + + + Update requires the {0}Command to have an open connection object. {1} + + + Collection was modified; enumeration operation might not execute. + + + Provided range for time one exceeds total of 14 hours. + + + The name '{0}' is invalid. A DataSet cannot have the same name of the DataTable. + + + Fill: expected a non-empty string for the SourceTable name. + + + Cannot change CaseSensitive or Locale property. This change would lead to at least one DataRelation or Constraint to have different Locale or CaseSensitive settings between its related tables. + + + Target DataSet missing {0} {1}. + + + The table [{0}] involved in more than one relation. You must explicitly mention a relation name in the expression '{1}'. + + + This row has been removed from a table and does not have any data. BeginEdit() will allow creation of new data in this row. + + + Conversion overflows. + + + Nested table '{0}' which inherits its namespace cannot have multiple parent tables in different namespaces. + + + The DefaultValue for the column is of type {0} and cannot be converted to {1}. + + + A Relation named '{0}' already belongs to this DataSet. + + + Cannot change the column name once the associated DataSet is mapped to a loaded XML document. + + + The DefaultValue for column {0} is of type {1} and cannot be converted to {2}. + + + The expression is missing the closing parenthesis. + + + Cannot remove this column, because it's part of the primary key. + + + This DataTable can only be remoted as part of DataSet. One or more Expression Columns has reference to other DataTable(s). + + + SetParentRow requires a child row whose Table is {0}, but the specified row's Table is {1}. + + + An {0} with {1} '{2}' is not contained by this {3}. + + + Cannot set a DefaultValue on an AutoIncrement column. + + + The DataAdapter.SelectCommand property needs to be initialized. + + + Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. + + + The same table '{0}' cannot be the child table in two nested relations. + + + Constraint Exception. + + + Unrecognized row state bit pattern. + + + Type '{0}' does not implement IComparable interface. Comparison cannot be done. + + + Invalid value for key '{0}'. + + + DataSet doesn't allow the circular reference in the ComplexType named '{0}'. + + + Cannot remove table {0}, because it referenced in ForeignKeyConstraint {1}. Remove the constraint first. + + + Cannot set Column '{0}' property MaxLength. The Column is SimpleContent. + + + Clear function on DateSet and DataTable is not supported on XmlDataDocument. + + + Cannot proceed with serializing DataTable '{0}'. It contains a DataRow which has multiple parent rows on the same Foreign Key. + + + Cannot edit on a DataSource where AllowEdit is false. + + + Invalid storage type: {0}. + + + Find finds a row based on a Sort order, and no Sort order is specified. + + + Cannot clear table {0} because ForeignKeyConstraint {1} enforces constraints and there are child rows in {2}. + + + Cannot set the 'Nested' property to false for this relation. + + + Syntax error: Invalid usage of 'Is' operator. Correct syntax: <expression> Is [Not] Null. + + + Null + + + Cannot have a relationship between tables in different DataSets. + + + Cannot determine the DataSet Element. IsDataSet attribute exist more than once. + + + Cannot delete this row since it's already deleted. + + + ReadOnly Data is Modified. + + + Invalid attempt to call {0} when the stream non-readable. + + + Message + + + 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. + + + These columns don't point to this table. + + + The table ({0}) cannot be the child table to itself in a nested relation: the DataSet name conflicts with the table name. + + + DataSet will not serialize types that implement IDynamicMetaObjectProvider but do not also implement IXmlSerializable. + + + A DataColumn of type '{0}' does not support expression. + + + Concurrency violation: the batched command affected {0} of the expected {1} records. + + + Cannot make this change because constraints are enforced on relation {0}, and changing this value will strand child rows. + + + Cannot remove this column, because it is part of the parent key for relationship {0}. + + + The DataSet Xml persistency does not support the value '{0}' as Char value, please use Byte storage instead. + + + Invalid 'Key' node inside constraint named: {0}. + + + Update: expected a non-empty SourceTable name. + + + This relation doesn't belong to this relation collection. + + + There is no buffer. Read or write operation failed. + + + Cannot serialize the DataTable. A DataTable being used in one or more DataColumn expressions is not a descendant of current DataTable. + + + Missing '{0}' part in '{1}' constraint named '{2}'. + + + Cannot load diffGram. Table '{0}' is missing in the destination dataset. + + + These columns don't currently have unique values. + + + Column '{0}' does not allow nulls. + + + The SelectCommand property has not been initialized before calling '{0}'. + + + A DataTable named '{0}' already belongs to this DataSet. + + + Deleted row information cannot be accessed through the row. + + + Missing primary key. + + + Only constant expressions are allowed in the expression list for the IN operator. + + + DB concurrency violation. + + + Concurrency violation: the DeleteCommand affected {0} of the expected {1} records. + + + The row doesn't belong to the same DataSet as this relation. + + + Cannot bind to DataTable with no name. + + + Invalid {0} syntax: missing required '{1}' attribute. + + + Type '{0}' does not implement IXmlSerializable interface therefore can not proceed with serialization. + + + Missing the '{0}' DataTable for the '{1}' SourceTable. + + + The {0} enumeration value, {1}, is invalid. + + + Cannot remove unique constraint since it's the primary key of table {0}. + + + Cannot add or remove tables from the DataSet once the DataSet is mapped to a loaded XML document. + + + Syntax error: Missing operand after '{0}' operator. + + + Cannot change Table property on a DefaultView or a DataView coming from a DataViewManager. + + + Filter expression '{0}' does not evaluate to a Boolean term. + + + The constraint name {0} is already used in the schema. + + + The {0} enumeration value, {1}, is not supported by the {2} method. + + + Row not found in table. + + + '{0}' argument is out of range. + + + Update requires a connection object. The Connection property has not been initialized. + + + Update requires the command clone to have a connection object. The Connection property of the command clone has not been initialized. + + + Deleted rows inaccessible. + + + SetAdded and SetModified can only be called on DataRows with Unchanged DataRowState. + + + Cannot evaluate. Expression '{0}' is not an aggregate. + + + Only specify one item in the dataTables array when using non-zero values for startRecords or maxRecords. + + + Invalid XPath selection inside selector node: {0}. + + + Cannot change DataSet on a DataViewManager that's already the default view for a DataSet. + + + Type '{0}' does not implement IRevertibleChangeTracking; therefore can not proceed with RejectChanges(). + + + GetParentRow requires a row whose Table is {0}, but the specified row's Table is {1}. + + + DataRow[{0}] is from a different DataTable than DataRow[0]. + + + Cannot convert value '{0}' to Type: {1}. + + + The expression has too many closing parentheses. + + + Duplicate name not allowed. + + + RelationName is required when it is part of a DataSet. + + + Concurrency violation: the UpdateCommand affected {0} of the expected {1} records. + + + Keyword not supported: '{0}'. + + + Update requires the command clone to be valid. + + + Cannot have more than {0} columns. + + + The {0} only accepts non-null {1} type objects. + + + Invalid attempt to call {0} when reader is closed. + + + DataSet can be associated with at most one XmlDataDocument. Cannot associate the DataSet with the current XmlDataDocument because the DataSet is already associated with another XmlDataDocument. + + + An error occurred with the multiple target converter while writing an Xml Schema. A null or empty string was returned. + + + An error occurred with the multiple target converter while writing an Xml Schema. See the inner exception for details. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Data.SqlClient.SR.resw b/obj/x86/Debug/FxResources.System.Data.SqlClient.SR.resw new file mode 100644 index 0000000..79385bd --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Data.SqlClient.SR.resw @@ -0,0 +1,1242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + GSSAPI operation failed with status: {0} (Minor status: {1}). + + + Unrecognized System.Transactions.IsolationLevel enumeration value: {0}. + + + Cannot access Kerberos ticket. Ensure Kerberos has been initialized with 'kinit'. + + + The given value of type {0} from the data source cannot be converted to type {1} of the specified target column. + + + Invalid attempt to call {0} when the stream is non-seekable. + + + The connection was not closed. {0} + + + {0}.Prepare method requires parameters of type '{1}' have an explicitly set Precision and Scale. + + + Value cannot be converted to SqlVariant. + + + {0} DeriveParameters only supports CommandType.StoredProcedure, not CommandType.{1}. + + + Unable to get the address of the distributed transaction coordinator for the server, from the server. Is DTC enabled on the server? + + + Specified parameter name '{0}' is not valid. + + + Use of key '{0}' requires the key '{1}' to be present. + + + {0} requires the command to have a transaction when the connection assigned to the command is in a pending local transaction. The Transaction property of the command has not been initialized. + + + A time zone was specified. SqlDateTime does not support time zones. + + + Operation aborted due to an exception (see InnerException for details). + + + The collection '{0}' is missing from the metadata XML. + + + A transport-level error has occurred when sending the request to the server. + + + There is already an open DataReader associated with this Command which must be closed first. + + + The connection is broken and recovery is not possible. The connection is marked by the server as unrecoverable. No attempt was made to restore the connection. + + + No mapping exists from DbType {0} to a known {1}. + + + Invalid attempt to read from column ordinal '{0}'. With CommandBehavior.SequentialAccess, you may only read from column ordinal '{1}' or greater. + + + Operation cancelled by user. + + + Received an unsupported token '{0}' while reading data from the server. + + + Invalid SQLUserInstance.dll found at the location specified in the registry. Verify that the Local Database Runtime feature of SQL Server Express is properly installed. + + + The sort order and ordinal must either both be specified, or neither should be specified (SortOrder.Unspecified and -1). The values given were: order = {0}, ordinal = {1}. + + + Protocol error: A received message contains a valid signature but it was not encrypted as required by the effective Protection Level. + + + A restriction exists for which there is no matching row in the restrictions collection. + + + Invalid attempt to call {0} when the stream is closed. + + + Precision '{0}' required to send all values in column '{1}' exceeds the maximum supported precision '{2}'. The values must all fit in a single precision. + + + Format of the initialization string does not conform to specification starting at index {0}. + + + Invalid routing information received. + + + Must not specify SqlBulkCopyOption.UseInternalTransaction and pass an external Transaction at the same time. + + + Target name should be non-empty if default credentials are passed. + + + {0} '{1}'. + + + Next reconnection attempt will exceed query timeout. Reconnection was terminated. + + + The length of the parameter '{0}' exceeds the limit of 128 characters. + + + Type {0} is not supported on this platform. + + + Cannot connect to SQL Server Browser. Ensure SQL Server Browser has been started. + + + The Stream does not support seeking. + + + .database.usgovcloudapi.net + + + The {0} is already contained by another {1}. + + + Invalid parameter Size value '{0}'. The value must be greater than or equal to 0. + + + No support for channel binding on operating systems other than Windows. + + + The currently loaded System.Transactions.dll does not support Global Transactions. + + + Buffer offset '{1}' plus the bytes available '{0}' is greater than the length of the passed in buffer. + + + The input wasn't in a correct format. + + + The keyword '{0}' is not supported on this platform. + + + More restrictions were provided than the requested schema ('{0}') supports. + + + Invalid array size. + + + Database cannot be null, the empty string, or string of only whitespace. + + + SSE Instance re-direction is not supported for non-local user instances. + + + Metadata for field '{0}' of record '{1}' did not match the original record's metadata. + + + The transaction is either not associated with the current connection or has been completed. + + + Invalid index {0} for this {1} with Count={2}. + + + Cannot obtain Local Database Runtime error message + + + Can not start another operation while there is an asynchronous operation pending. + + + Cannot enlist in the transaction because a local transaction is in progress on the connection. Finish local transaction and retry. + + + The server did not preserve the exact client TDS version requested during a recovery attempt, connection recovery is not possible. + + + SqlDbType.SmallDateTime overflow. Value '{0}' is out of range. Must be between 1/1/1900 12:00:00 AM and 6/6/2079 11:59:59 PM. + + + Invalid min or max pool size values, min pool size cannot be greater than the max pool size. + + + SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. + + + SQL Type has already been loaded with data. + + + Subclass did not override a required method. + + + SQL Type has not been loaded with data. + + + The metadata XML is invalid. The {0} collection must contain a {1} column and it must be a string column. + + + Invalid ConnectRetryCount value (should be 0-255). + + + {1}[{0}]: the Size property has an invalid size of 0. + + + The connection's current state: {0}. + + + The collection name '{0}' matches at least two collections with the same name but with different case, but does not match any of them exactly. + + + Timeout specified is invalid. Timeout cannot be < 0. + + + Unexpected routing information received. + + + One of the required DataSourceInformation tables columns is missing. + + + The keyword 'Network Library' is not supported on this platform, prefix the 'Data Source' with the protocol desired instead ('tcp:' for a TCP connection, or 'np:' for a Named Pipe connection). + + + Invalid column ordinals in schema table. ColumnOrdinals, if present, must not have duplicates or gaps. + + + Parameter value '{0}' is out of range. + + + Invalid source buffer (size of {0}) offset: {1} + + + Scale value '{0}' is either less than 0 or greater than the maximum allowed scale of 7. + + + Connection currently has transaction enlisted. Finish current transaction and retry. + + + The connection's current state is fetching. + + + The sort ordinal {0} was not specified. + + + Cannot initialize SSPI package. + + + .database.chinacloudapi.cn + + + The given ColumnName '{0}' does not match up with any column in data source. + + + Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. + + + SqlParameter.TypeName is an invalid multipart name + + + Divide by zero error encountered. + + + Operation aborted. + + + SqlDependency does not support calling Start() with different connection strings having the same server, user, and database in the same app domain. + + + System.Data.SqlClient is not supported on this platform. + + + SqlDbType.SmallMoney overflow. Value '{0}' is out of range. Must be between -214,748.3648 and 214,748.3647. + + + There are not enough fields in the Structured type. Structured types must have at least one field. + + + The connection has been disabled. + + + Invalid parameter Offset value '{0}'. The value must be greater than or equal to 0. + + + This {0} has completed; it is no longer usable. + + + Connecting to a mirrored SQL Server instance using the MultiSubnetFailover connection option is not supported. + + + ClientConnectionId before routing:{0} + + + The ConnectionString property has not been initialized. + + + Arithmetic Overflow. + + + Invalid flag value. + + + Data is Null. This method or property cannot be called on Null values. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + Mappings must be either all name or all ordinal based. + + + {0} '{1}', the current limit of '{2}' is insufficient. + + + Invalid Packet Size. + + + Invalid transaction or invalid name for a point at which to save within the transaction. + + + Processing of results from SQL Server failed because of an invalid multipart name + + + The duration spent while attempting to connect to this server was - [Pre-Login] initialization={0}; + + + The DataSourceInformation table must contain exactly one row. + + + The connection's current state is closed. + + + Failed to obtain column collation information for the destination table. If the table is not in the current database the name must be qualified using the database name (e.g. [mydb]..[mytable](e.g. [mydb]..[mytable]); this also applies to temporary-tables (e.g. #mytable would be specified as tempdb..#mytable). + + + Expecting argument of type {1}, but received type {0}. + + + SqlDependency.Start has been called for the server the command is executing against more than once, but there is no matching server/user/database Start() call for current command. + + + SqlDependency.OnChange does not support multiple event registrations for the same delegate. + + + Server provided routing information, but timeout already expired. + + + Invalid destination buffer (size of {0}) offset: {1} + + + Internal DbConnection Error: {0} + + + Conversion from SqlDecimal to Decimal overflows. + + + No SqlDependency exists for the key. + + + Connection Timeout Expired. The timeout period elapsed while attempting to create and initialize a socket to the server. This could be either because the server was unreachable or unable to respond back in time. + + + Invalid attempt to {0} when stream is closed. + + + No mapping exists from object type {0} to a known managed provider native type. + + + A connection was successfully established with the server, but then an error occurred during the pre-login handshake. + + + An error occurred while reading. + + + Specified SeekOrigin value is invalid. + + + NTLM authentication is not possible with default credentials on this platform. + + + Invalid value for argument '{0}'. The value must be greater than or equal to 0. + + + DBNull value for parameter '{0}' is not supported. Table-valued parameters cannot be DBNull. + + + This SqlCommand object is already associated with another SqlDependency object. + + + The {0} only accepts non-null {1} type objects, not {2} objects. + + + Connection Timeout Expired. The timeout period elapsed at the start of the login phase. This could be because of insufficient time provided for connection timeout. + + + Invalid value for this metadata. + + + The metadata XML is invalid. The {1} column of the {0} collection must contain a non-empty string. + + + The connection's current state is executing. + + + Cannot access destination table '{0}'. + + + Precision value '{0}' is either less than 0 or greater than the maximum allowed precision of 38. + + + This failure occurred while attempting to connect to the routing destination. The duration spent while attempting to connect to the original server was - [Pre-Login] initialization={0}; handshake={1}; [Login] initialization={2}; authentication={3}; [Post-Login] complete={4}; + + + Data length '{0}' is less than 0. + + + Two strings to be concatenated have different collation. + + + Invalid attempt to read when no data is present. + + + The SQL Server instance returned an invalid or unsupported protocol version during login negotiation. + + + The duration spent while attempting to connect to this server was - [Pre-Login] initialization={0}; handshake={1}; [Login] initialization={2}; + + + The schema table contains no columns. + + + HTTP Provider + + + Named Pipes Provider + + + Session Provider + + + Sign Provider + + + Shared Memory Provider + + + SMux Provider + + + SSL Provider + + + TCP Provider + + + + + + SQL Network Interfaces + + + TypeName specified for parameter '{0}'. TypeName must only be set for Structured parameters. + + + The stored procedure '{0}' doesn't exist. + + + Unsupported SQL Server version. The .Net Framework SqlClient Data Provider can only be used with SQL Server versions 7.0 and later. + + + Unable to build schema collection '{0}'; + + + The command execution cannot proceed due to a pending asynchronous operation already in progress. + + + When using SqlDependency without providing an options value, SqlDependency.Start() must be called for each server that is being executed against. + + + Invalid numeric precision/scale. + + + Connection Timeout Expired. The timeout period elapsed while attempting to authenticate the login. This could be because the server failed to authenticate the user or the server was unable to respond back in time. + + + Data returned is larger than 2Gb in size. Use SequentialAccess command behavior in order to get all of the data. + + + The value's length for key '{0}' exceeds it's limit of '{1}'. + + + SqlBulkCopy.WriteToServer failed because the SqlBulkCopy.DestinationTableName is an invalid multipart name + + + The client was unable to establish a connection because of an error during connection initialization process before login. Possible causes include the following: the client tried to connect to an unsupported version of SQL Server; the server was too busy to accept new connections; or there was a resource limitation (insufficient memory or maximum allowed connections) on the server. + + + Failed to convert parameter value from a {0} to a {1}. + + + Connection has been closed by peer + + + Physical connection is not usable + + + Timeout error + + + No server name supplied + + + TerminateListener() has been called + + + Win9x not supported + + + Function not supported + + + Shared-Memory heap error + + + Cannot find an ip/ipv6 type address to connect + + + Cannot open a Shared Memory connection to SQL Server 2000 + + + Shared memory connectivity to SQL Server 2000 is either disabled or not available on this machine + + + Packet size too large for SSL Encrypt/Decrypt operations + + + SSRP error + + + Invalid attempt bind to shared memory segment + + + Encryption(ssl/tls) handshake failed + + + The Shared Memory dll used to connect to SQL Server 2000 was not found + + + The SQL Server 2000 Shared Memory client dll appears to be invalid/corrupted + + + Could not connect to the Shared Memory pipe + + + An internal exception was caught + + + Unable to locate the registry entry for SQLUserInstance.dll file path. Verify that the Local Database Runtime feature of SQL Server Express is properly installed. + + + Registry value contains an invalid SQLUserInstance.dll file path. Verify that the Local Database Runtime feature of SQL Server Express is properly installed. + + + Unable to load the SQLUserInstance.dll from the location specified in the registry. Verify that the Local Database Runtime feature of SQL Server Express is properly installed. + + + Invalid SQLUserInstance.dll found at the location specified in the registry. Verify that the Local Database Runtime feature of SQL Server Express is properly installed. + + + Local Database Runtime error occurred. + + + An instance name was not specified while connecting to a Local Database Runtime. Specify an instance name in the format (localdb)\instance_name. + + + Unable to locate a Local Database Runtime installation. Verify that SQL Server Express is properly installed and that the Local Database Runtime feature is enabled. + + + Invalid Local Database Runtime registry configuration found. Verify that SQL Server Express is properly installed. + + + Shared Memory is not supported for clustered server connectivity + + + Server doesn't support requested protocol + + + Cannot open a new thread in server process + + + Couldn't load library + + + Encryption is enforced but there is no valid certificate + + + Connection has been closed + + + Error getting enabled protocols list from registry + + + Error Locating Server/Instance Specified + + + Connection string is not valid + + + Cannot post event to completion port + + + Connecting to a SQL Server instance using the MultiSubnetFailover connection option is only supported when using the TCP protocol. + + + Connecting to a named SQL Server instance using the MultiSubnetFailover connection option is not supported. + + + Could not compose Service Principal Name (SPN) for Windows Integrated Authentication. Possible causes are server(s) incorrectly specified to connection API calls, Domain Name System (DNS) lookup failure or memory shortage + + + Connecting with the MultiSubnetFailover connection option to a SQL Server instance configured with more than 64 IP addresses is not supported. + + + Cannot open a Shared Memory connection to a remote SQL server + + + Could not open a connection to SQL Server + + + An error occurred while obtaining the dedicated administrator connection (DAC) port. Make sure that SQL Browser is running, or check the error log for the port number + + + Could not establish dedicated administrator connection (DAC) on default port. Make sure that DAC is enabled + + + Connection Timeout Expired. The timeout period elapsed while attempting to consume the pre-login handshake acknowledgement. This could be because the pre-login handshake failed or the server was unable to respond back in time. + + + Internal Error + + + Requested protection level is not supported with the GSSAPI implementation currently installed. + + + The requested collection ({0}) is not defined. + + + DateType column for field '{0}' in schema table is null. DataType must be non-null. + + + Unexpected existing transaction. + + + User Instance and Failover are not compatible options. Please choose only one of the two in the connection string. + + + Attempt to invoke bulk copy on an object that has a pending operation. + + + The {0} type parameter '{1}' must have a valid type name. + + + The server is attempting to use a feature that is not supported on this platform. + + + Attempted to remove an {0} that is not contained by this {1}. + + + String or binary data would be truncated. + + + The DestinationTableName property must be set before calling this method. + + + There are multiple collections named '{0}'. + + + Invalid attempt to GetBytes on column '{0}'. The GetBytes function can only be used on columns of type Text, NText, or Image. + + + A transport-level error has occurred while sending information to the server. + + + {0}: Connection property has not been initialized. + + + ClientConnectionId:{0} + + + The connection's current state is open. + + + The instance of SQL Server you attempted to connect to does not support encryption. + + + Function must not be called during event. + + + Invalid 3 part name format for TypeName. + + + The size of column '{0}' is not supported. The size is {1}. + + + A transport-level error has occurred when receiving results from the server. + + + Routing Destination:{0} + + + The server did not acknowledge a recovery attempt, connection recovery is not possible. + + + Invalid SqlDateTime. + + + Column '{0}' does not allow DBNull.Value. + + + Invalid operation. The connection is closed. + + + The given ColumnMapping does not match up with any column in the source or destination. + + + A transport-level error has occurred during SSPI handshake. + + + LocalDB is not supported on this platform. + + + Batching updates is not supported on the context connection. + + + Internal .Net Framework Data Provider error {0}. + + + Two strings to be compared have different collation. + + + Only single dimensional arrays are supported for the requested action. + + + Connection open and login was successful, but then an error occurred while enlisting the connection into the current distributed transaction. + + + SqlDbType.Time overflow. Value '{0}' is out of range. Must be between 00:00:00.0000000 and 23:59:59.9999999. + + + Invalid SSPI packet size. + + + {0} returned {1}. + + + .database.windows.net + + + The dbType {0} is invalid for this constructor. + + + A user instance was requested in the connection string but the server specified does not support this option. + + + The only acceptable value for the property '{0}' is '{1}'. + + + Timeout Value '{0}' is less than 0. + + + The connection's current state is connecting. + + + Non-negative number required. + + + Timeout attempting to open the connection. The time period elapsed prior to attempting to open the connection has been exceeded. This may have occurred because of too many simultaneous non-pooled connection attempts. + + + Numeric arithmetic causes truncation. + + + A severe error occurred on the current command. The results, if any, should be discarded. + + + Local Database Runtime: Cannot load SQLUserInstance.dll. + + + Connecting to a mirrored SQL Server instance using the ApplicationIntent ReadOnly connection option is not supported. + + + The connection cannot be used because there is an ongoing operation that must be finished. + + + {0} '{1}', incorrect usage of quotes. + + + Parameter '{0}' exceeds the size limit for the sql_variant datatype. + + + Memory allocation for internal connection failed. + + + Open result count exceeded. + + + Invalid attempt to GetStream on column '{0}'. The GetStream function can only be used on columns of type Binary, Image, Udt or VarBinary. + + + The connection is broken and recovery is not possible. The client driver attempted to recover the connection one or more times and all attempts failed. Increase the value of ConnectRetryCount to increase the number of recovery attempts. + + + {0}: CommandText property has not been initialized + + + Connection Timeout Expired. The timeout period elapsed while making a pre-login handshake request. This could be because the server was unable to respond back in time. + + + Specified length '{0}' is out of range. + + + The instance of SQL Server you attempted to connect to requires encryption but this machine does not support it. + + + The server did not preserve SSL encryption during a recovery attempt, connection recovery is not possible. + + + The transaction associated with the current connection has completed but has not been disposed. The transaction must be disposed before the connection can be used to execute SQL statements. + + + Invalid attempt to access a closed XmlReader. + + + Invalid attempt to GetChars on column '{0}'. The GetChars function can only be used on columns of type Text, NText, Xml, VarChar or NVarChar. + + + {0} does not support parallel transactions. + + + Invalid attempt to call {0} when the stream non-writable. + + + Connection open and login was successful, but then an error occurred while enabling MARS for this connection. + + + Cannot convert object of type '{0}' to object of type '{1}'. + + + .database.cloudapi.de + + + The specified value is not valid in the '{0}' enumeration. + + + The locale id '{0}' of the source column '{1}' and the locale id '{2}' of the destination column '{3}' do not match. + + + Conversion overflows. + + + Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. + + + Server {0}, database {1} is not configured for database mirroring. + + + An {0} with {1} '{2}' is not contained by this {3}. + + + requested collection ({0}) is not supported by this version of the provider. + + + Invalid value for key '{0}'. + + + SqlCommand.DeriveParameters failed because the SqlCommand.CommandText property value is an invalid multipart name + + + There are no records in the SqlDataRecord enumeration. To send a table-valued parameter with no rows, use a null reference for the value instead. + + + This method is not implemented by this class. + + + GSSAPI operation failed with error - {0} ({1}). + + + Connection Timeout Expired. The timeout period elapsed at the start of the pre-login phase. This could be because of insufficient time provided for connection timeout. + + + Internal connection fatal error. + + + Insufficient buffer space. Required: {0} Actual: {1}. + + + The requested security package is not supported. + + + The sort ordinal {0} on field {1} exceeds the total number of fields. + + + The type of column '{0}' is not supported. The type is '{1}' + + + Invalid internal packet size: + + + The duration spent while attempting to connect to this server was - [Pre-Login] initialization={0}; handshake={1}; + + + {0} requires an open and available Connection. {1} + + + The Collation specified by SQL Server is not supported. + + + The version of SQL Server in use does not support datatype '{0}'. + + + The parameter data type of {0} is invalid. + + + Null + + + {0}.Prepare method requires all variable length parameters to have an explicitly set non-zero Size. + + + {0}.Prepare method requires all parameters to have an explicitly set type. + + + Invalid attempt to GetTextReader on column '{0}'. The GetTextReader function can only be used on columns of type Char, NChar, NText, NVarChar, Text or VarChar. + + + The duration spent while attempting to connect to this server was - [Pre-Login] initialization={0}; handshake={1}; [Login] initialization={2}; authentication={3}; + + + Invalid attempt to call {0} when the stream non-readable. + + + Message + + + Unable to build the '{0}' collection because execution of the SQL query failed. See the inner exception for details. + + + 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. + + + Invalid command sent to ExecuteXmlReader. The command must return an Xml result. + + + Failed to generate SSPI context. + + + The sort ordinal {0} was specified twice. + + + Instance failure. + + + When using SqlDependency without providing an options value, SqlDependency.Start() must be called prior to execution of a command added to the SqlDependency instance. + + + Invalid ConnectRetryInterval value (should be 1-60). + + + Failed to establish a MARS session in preparation to send the request to the server. + + + Cannot remove the specified item because it was not found in the specified Collection. + + + ParameterDirection '{0}' specified for parameter '{1}' is not supported. Table-valued parameters only support ParameterDirection.Input. + + + Not allowed to change the '{0}' property. {1} + + + The Stream does not support writing. + + + Invalid CommandTimeout value {0}; the value must be >= 0. + + + Associating port with I/O completion mechanism failed + + + Protocol not supported + + + I/O Error detected in read/write operation + + + Asynchronous operations not supported + + + Connection was terminated + + + Invalid parameter(s) found + + + Invalid connection found when setting up new session protocol + + + Unsupported protocol specified + + + Server implementation is not supported. + + + The {0} enumeration value, {1}, is not supported by the .Net Framework SqlClient Data Provider. + + + The connection is broken and recovery is not possible. The connection is marked by the client driver as unrecoverable. No attempt was made to restore the connection. + + + Mismatched end method call for asyncResult. Expected call to {0} but {1} was called instead. + + + Specified QuotePrefix and QuoteSuffix values do not match. + + + The mapped collection is in use and cannot be accessed at this time; + + + The method '{0}' cannot be called more than once for the same execution. + + + Invalid 'Packet Size'. The value must be an integer >= 512 and <= 32768. + + + The {0} enumeration value, {1}, is invalid. + + + The Stream does not support reading. + + + {0} failed with error {1}. + + + The acceptable values for the property '{0}' are '{1}' or '{2}'. + + + '{0}' is not a supported handle type. + + + One or more of the required columns of the restrictions collection is missing. + + + The {0} enumeration value, {1}, is not supported by the {2} method. + + + The duration spent while attempting to connect to this server was - [Pre-Login] initialization={0}; handshake={1}; [Login] initialization={2}; authentication={3}; [Post-Login] complete={4}; + + + Invalid {2} attempt at dataIndex '{0}'. With CommandBehavior.SequentialAccess, you may only read from dataIndex '{1}' or greater. + + + A connection was successfully established with the server, but then an error occurred when obtaining the security/SSPI context information for integrated security login. + + + Two or more redirections have occurred. Only one redirection per login is allowed. + + + Global Transactions are not enabled for this Azure SQL Database. Please contact Azure SQL Database support for assistance. + + + Error Number:{0},State:{1},Class:{2} + + + A transport-level error has occurred during connection clean-up. + + + The connection does not support MultipleActiveResultSets. + + + A connection was successfully established with the server, but then an error occurred during the login process. + + + {0} cannot be changed while async operation is in progress. + + + Failure while attempting to promote transaction. + + + The SQL Server Service Broker for the current database is not enabled, and as a result query notifications are not supported. Please enable the Service Broker for this database if you wish to use notifications. + + + The name is too long. + + + This failure occurred while attempting to connect to the {0} server. + + + The metadata XML is invalid. + + + Number of fields in record '{0}' does not match the number in the original record. + + + Invalid attempt to GetXmlReader on column '{0}'. The GetXmlReader function can only be used on columns of type Xml. + + + A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. + + + Keyword not supported: '{0}'. + + + Scale value '{0}' is either less than 0 or greater than the maximum allowed scale of 38. + + + The {0} only accepts non-null {1} type objects. + + + Connection Timeout Expired. The timeout period elapsed during the post-login phase. The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed out while attempting to create multiple active connections. + + + Invalid attempt to call {0} when reader is closed. + + + The requested operation cannot be completed because the connection has been broken. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Diagnostics.FileVersionInfo.SR.resw b/obj/x86/Debug/FxResources.System.Diagnostics.FileVersionInfo.SR.resw new file mode 100644 index 0000000..0437a4e --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Diagnostics.FileVersionInfo.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 + + + Could not find file '{0}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Diagnostics.Process.SR.resw b/obj/x86/Debug/FxResources.System.Diagnostics.Process.SR.resw new file mode 100644 index 0000000..7a57b9b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Diagnostics.Process.SR.resw @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Feature is not supported for remote machines. + + + No async read operation is in progress on the stream. + + + Couldn't get process information from performance counter. + + + Getting or setting the working set limits on other processes is not supported on this platform. + + + Processor affinity for processes or threads is not supported on this platform. + + + The Process object must have the UseShellExecute property set to false in order to redirect IO streams. + + + Process with an Id of {0} is not running. + + + No process is associated with this object. + + + StandardOutputEncoding is only supported when standard output is redirected. + + + Cannot process request because the process has exited. + + + Cannot start process because a file name has not been provided. + + + Starting a process with a different identity is not supported on this platform. + + + Maximum working set size is invalid. It must be greater than or equal to the minimum working set size. + + + Process was not started by this object, so requested information cannot be determined. + + + Process has exited, so the requested information is not available. + + + Retrieving information about local processes is not supported on this platform. + + + WaitReason is only available if the ThreadState is Wait. + + + Index and count must refer to a location within the string. + + + The Process object must have the UseShellExecute property set to false in order to start a process as a user. + + + Process performance counter is disabled, so the requested operation cannot be performed. + + + Setting the minimum working set is not supported on this platform. + + + The request cannot be processed because the thread ({0}) has exited. + + + StandardIn has not been redirected. + + + Unable to retrieve the specified information about the process or thread. It may have exited or may be privileged. + + + WaitForInputIdle failed. This could be because the process does not have a graphical interface. + + + Minimum working set size is invalid. It must be less than or equal to the maximum working set size. + + + Couldn't connect to remote machine. + + + Invalid value '{1}' for parameter '{0}'. + + + The Process object must have the UseShellExecute property set to false in order to use environment variables. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + Getting or setting the thread priority is not supported on this platform. + + + UseShellExecute is not supported on this platform. + + + Process is already associated with a real process, so the requested operation cannot be performed. + + + Unable to enumerate the process modules. + + + The specified executable is not a valid application for this OS platform. + + + Process was not started by this object, so requested information cannot be determined. + + + StandardOut has not been redirected or the process hasn't started yet. + + + StandardError has not been redirected. + + + Process must exit before requested information can be determined. + + + Non-negative number required. + + + Too many bytes. The resulting number of chars is larger than what can be returned as an int. + + + Feature requires a process identifier. + + + Cannot retrieve process identifier from the process handle. + + + Cannot load Counter Name data because an invalid index '{0}' was read from the registry. + + + Cannot process request because the process ({0}) has exited. + + + Too many characters. The resulting number of bytes is larger than what can be returned as an int. + + + String contains invalid Unicode code points. + + + 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}'. + + + A 32 bit processes cannot access modules of a 64 bit process. + + + Could not get all running Process IDs. + + + Feature is not supported for threads on remote computers. + + + ProcessStartInfo.Password and ProcessStartInfo.PasswordInClearText cannot both be set. Use only one of them. + + + Cannot load Category Help data because an invalid index '{0}' was read from the registry. + + + Index and count must refer to a location within the buffer. + + + An async read operation has already been started on the stream. + + + Cannot mix synchronous and asynchronous operation on process stream. + + + Cannot load Performance Counter data because an unexpected registry key value type was read from '{0}'. + + + Process IDs cannot be negative. + + + Failed to set or retrieve rusage information. See the error code for OS-specific error information. + + + StandardErrorEncoding is only supported when standard error is redirected. + + + Access to processes on remote machines is not supported on this platform. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Diagnostics.TextWriterTraceListener.SR.resw b/obj/x86/Debug/FxResources.System.Diagnostics.TextWriterTraceListener.SR.resw new file mode 100644 index 0000000..a4cf96b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Diagnostics.TextWriterTraceListener.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 + + + '{0}' can not be empty string. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Diagnostics.TraceSource.SR.resw b/obj/x86/Debug/FxResources.System.Diagnostics.TraceSource.SR.resw new file mode 100644 index 0000000..2cab477 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Diagnostics.TraceSource.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 + + + The IndentSize property must be non-negative. + + + ---- Assert Short Message ---- + + + Attempted to set {0} to a value that is too low. Setting level to TraceLevel.Off + + + ---- DEBUG ASSERTION FAILED ---- + + + Fail: + + + Argument {0} cannot be null or zero-length. + + + ---- Assert Long Message ---- + + + Only TraceListeners can be added to a TraceListenerCollection. + + + Attempted to set {0} to a value that is too high. Setting level to TraceLevel.Verbose + + + The Level must be set to a value in the enumeration TraceLevel. + + + An exception occurred while writing to the log file {0}: {1}. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Drawing.Primitives.SR.resw b/obj/x86/Debug/FxResources.System.Drawing.Primitives.SR.resw new file mode 100644 index 0000000..edf1fef --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Drawing.Primitives.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 + + + Value of '{1}' is not valid for '{0}'. '{0}' should be greater than or equal to {2} and less than or equal to {3}. + + \ 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..84f9dad --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.Compression.SR.resw @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 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. + + + 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 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 archive entry was compressed using {0} and is not supported. + + + 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. + + + 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. + + + 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.DriveInfo.SR.resw b/obj/x86/Debug/FxResources.System.IO.FileSystem.DriveInfo.SR.resw new file mode 100644 index 0000000..4e83c10 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.FileSystem.DriveInfo.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 + + + Volume labels can only be set for writable local volumes. + + + Drive name must not be empty. + + + Illegal characters in drive name '{0}'. + + + 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. + + + 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. + + + Could not find a part of the path. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Illegal characters in path. + + + Could not find the drive. The drive might not be ready or might not be mapped. + + + Could not find the drive '{0}'. The drive might not be ready or might not be mapped. + + + Could not find file '{0}'. + + + Drive name must be a root directory ('C:\\') or a drive letter ('C'). + + \ 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..3700750 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.FileSystem.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 + + + 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. + + + 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. + + + 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. + + + 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. + + + Cannot access a closed Stream. + + + 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. + + + 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. + + + File encryption is not supported on this platform. + + + 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.FileSystem.Watcher.SR.resw b/obj/x86/Debug/FxResources.System.IO.FileSystem.Watcher.SR.resw new file mode 100644 index 0000000..3b6f5d3 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.FileSystem.Watcher.SR.resw @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 directory name {0} is invalid. + + + The configured user limit ({0}) on the number of inotify instances has been reached. + + + The process cannot access the file because it is being used by another process. + + + Could not find a part of the path '{0}'. + + + The configured user limit on the number of inotify watches has been reached. + + + 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. + + + 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. + + + Could not find a part of the path. + + + The configured user limit on the number of inotify instances has been reached. + + + The specified buffer size is too large. FileSystemWatcher cannot allocate {0} bytes for the internal buffer. + + + The file '{0}' already exists. + + + Illegal characters in path. + + + Error reading the {0} directory. + + + Could not find file '{0}'. + + + Failed to start the EventStream + + + The configured user limit ({0}) on the number of inotify watches has been reached. + + + Too many changes at once in directory:{0}. + + + The value of argument '{0}' ({1}) is invalid for Enum type '{2}'. + + + The system limit on the number of inotify instances has been reached. + + \ 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..a029de1 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.IsolatedStorage.SR.resw @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 scope, expected User, User|Roaming or Machine. + + + Invalid scope. + + + Invalid mode, see System.IO.FileMode. + + + Operation not permitted on IsolatedStorageFileStream. + + + The process cannot access the file because it is being used by another process. + + + An error occurred while accessing IsolatedStorage. + + + The Site scope is currently not supported. + + + Application cannot be determined on an Assembly or Domain store. + + + Code Access Security is not supported on this platform. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + Unable to delete, directory not empty or does not exist. + + + Access to the path '{0}' is denied. + + + Unable to delete; directory or files in the directory could be in use. + + + Store must be open for this operation. + + + {0} is not defined for this store. An operation was performed that requires access to {0}. Stores obtained using enumeration APIs do not have a well-defined {0}, since partial evidence is used to open the store. + + + Unable to delete file. + + + 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}'. + + + Operation not permitted. + + + Current size cannot be determined for this store. + + + Assembly cannot be determined for an Application store. + + + Unable to create directory. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.MemoryMappedFiles.SR.resw b/obj/x86/Debug/FxResources.System.IO.MemoryMappedFiles.SR.resw new file mode 100644 index 0000000..8e81b05 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.MemoryMappedFiles.SR.resw @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Cannot create file mapping. + + + A positive capacity must be specified for a Memory Mapped File backed by an empty file. + + + A positive number is required. + + + Map name cannot be an empty string. + + + Stream does not support writing. + + + MemoryMappedFileAccess.Write is not permitted when creating new memory mapped files. Use MemoryMappedFileAccess.ReadWrite instead. + + + Cannot access a closed accessor. + + + 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. + + + MemoryMappedViewStreams are fixed length. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + The capacity may not be smaller than the file size. + + + The size must be greater than or equal to 0. If 0 is specified, the view extends from the specified offset to the end of the file mapping. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + The capacity cannot be greater than the size of the system's logical address space. + + + Map name cannot be null. + + + FileMode.Truncate is not permitted when creating new memory mapped files. + + + Access to the path '{0}' is denied. + + + Could not find a part of the path. + + + FileMode.Append is not permitted when creating new memory mapped files. Instead, use MemoryMappedFileView to ensure write-only access within a specified region. + + + fileStream cannot be null. + + + Non negative number is required. + + + The file '{0}' already exists. + + + Cannot create \"{0}\" because a file or directory with the same name already exists. + + + Stream does not support reading. + + + The capacity must be greater than or equal to 0. 0 represents the size of the file being mapped. + + + Cannot access a closed Stream. + + + Named maps are not supported. + + + Not enough memory to map view. + + + Could not find file '{0}'. + + + When specifying MemoryMappedFileAccess.Read access, the capacity must not be larger than the file size. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.Pipes.SR.resw b/obj/x86/Debug/FxResources.System.IO.Pipes.SR.resw new file mode 100644 index 0000000..1cd45b9 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.Pipes.SR.resw @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Pipe is not opened in asynchronous mode. + + + Cannot access a closed pipe. + + + Stream does not support writing. + + + Already in a disconnected state. + + + Anonymous pipes can only be in one direction. + + + Unable to read beyond the end of the stream. + + + The process cannot access the file because it is being used by another process. + + + Could not find a part of the path '{0}'. + + + The operating system returned error '{0}' indicating that the operation is not supported. + + + Stream does not support seeking. + + + Unable to find the specified file. + + + Anonymous pipes do not support PipeTransmissionMode.Message ReadMode. + + + Specified file length was too large for the file system. + + + HandleInheritability.None or HandleInheritability.Inheritable required. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + Invalid handle. + + + Pipe is in a disconnected state. + + + The path '{0}' is of an invalid length for use with domain sockets on this platform. The length must be between 1 and {1} characters, inclusive. + + + serverName cannot be null. Use \".\" for current machine. + + + IO operation was aborted unexpectedly. + + + 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. + + + Pipe hasn't been connected yet. + + + Already in a connected state. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + For named pipes, the pipe direction can be PipeDirection.In, PipeDirection.Out or PipeDirection.InOut. For anonymous pipes, the pipe direction can be PipeDirection.In or PipeDirection.Out. + + + Access to the path '{0}' is denied. + + + For named pipes, transmission mode can be TransmissionMode.Byte or PipeTransmissionMode.Message. For anonymous pipes, transmission mode can be TransmissionMode.Byte. + + + Could not find a part of the path. + + + TokenImpersonationLevel.None, TokenImpersonationLevel.Anonymous, TokenImpersonationLevel.Identification, TokenImpersonationLevel.Impersonation or TokenImpersonationLevel.Delegation required. + + + Access to remote named pipes is not supported on this platform. + + + Non negative number is required. + + + Cannot access a closed Stream. + + + The file '{0}' already exists. + + + Cannot create \"{0}\" because a file or directory with the same name already exists. + + + Pipe is broken. + + + Stream does not support reading. + + + Invalid pipe handle. + + + Message transmission mode is not supported on this platform. + + + The pipeName \"anonymous\" is reserved. + + + options contains an invalid flag. + + + ReadMode is not of PipeTransmissionMode.Message. + + + maxNumberOfServerInstances must either be a value between 1 and 254, or NamedPipeServerStream.MaxAllowedServerInstances (to obtain the maximum number allowed by system resources). + + + serverName cannot be an empty string. Use \\\".\\\" for current machine. + + + The name of a pipe on this platform must only include characters valid in file names. + + + Timeout must be non-negative or equal to -1 (Timeout.Infinite) + + + Buffer cannot be null. + + + Positive number required. + + + pipeName cannot be an empty string. + + + Could not find file '{0}'. + + + Pipe handle has not been set. Did your PipeStream implementation call InitializeHandle? + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.IO.Ports.SR.resw b/obj/x86/Debug/FxResources.System.IO.Ports.SR.resw new file mode 100644 index 0000000..854297a --- /dev/null +++ b/obj/x86/Debug/FxResources.System.IO.Ports.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 + + + 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. + + + The BaseStream is only available when the port is open. + + + System.IO.Ports is currently only supported on Windows. + + + '{0}' cannot be set while the port is open. + + + Unable to read beyond the end of the stream. + + + The process cannot access the port because it is being used by another process. + + + The port is already open. + + + The specified port does not exist. + + + Stream does not support seeking. + + + The specified port name is too long. The port name must be less than 260 characters. + + + The given port name does not start with COM/com or does not resolve to a valid serial port. + + + Enum value was out of legal range. + + + The write timed out. + + + EndRead can only be called once for each asynchronous operation. + + + The I/O operation has been aborted because of either a thread exit or an application request. + + + 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 port is denied. + + + The process cannot access the port '{0}' because it is being used by another process. + + + Argument {0} cannot be null or zero-length. + + + Access to the port '{0}' is denied. + + + RtsEnable cannot be accessed if Handshake is set to RequestToSend or RequestToSendXOnXOff. + + + The maximum baud rate for the device is {0}. + + + IAsyncResult object did not come from the corresponding async method on this type. + + + Can not access a closed Stream. + + + Argument must be between {0} and {1}. + + + EndWrite can only be called once for each asynchronous operation. + + + Enumeration of serial port names is not supported on the current platform. + + + The timeout must be either a positive number or -1. + + + The timeout must be greater than or equal to -1. + + + Positive number required. + + + The PortName cannot be empty. + + + Non-negative number required. + + + The given port name is invalid. It may be a valid port, but not a serial port. + + + The port is closed. + + + The port is in the break state and cannot be written to. + + + SerialPort does not support encoding '{0}'. The supported encodings include ASCIIEncoding, UTF8Encoding, UnicodeEncoding, UTF32Encoding, and most single or double byte code pages. For a complete list please see the documentation. + + + The port '{0}' does not exist. + + \ 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..62e9d26 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.Expressions.SR.resw @@ -0,0 +1,627 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 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. + + + Unhandled Binding Type: {0} + + + Type '{0}' is not IEnumerable + + + Unexpected VarArgs call to method '{0}' + + + 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 + + + Type parameter is {0}. Expected a delegate. + + + Non-empty collection required + + + Argument must be array + + + An element with the same key '{0}' already exists in the ExpandoObject. + + + Type must not be a pointer type + + + The binary operator {0} is not defined for the types '{1}' and '{2}'. + + + 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. + + + Accessor indexes cannot be passed ByRef. + + + Rewritten expression calls operator method '{0}', but the original node had no operator method. If this is intentional, override '{1}' and change it to allow this rewrite. + + + node cannot reduce to itself or null + + + An incorrect number of type arguments were specified for the declaration of a Func type. + + + Lambda type parameter must be derived from System.MulticastDelegate + + + The expression type '{0}' is not supported + + + Argument must be an instance member + + + Reference equality is not defined for the types '{0}' and '{1}'. + + + Argument type cannot be System.Void. + + + The specified key '{0}' does not exist in the ExpandoObject. + + + 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 type cannot be void + + + More than one key matching '{0}' was found in the ExpandoObject. + + + 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}' + + + 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. + + + Property type must match the value type of setter + + + 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}' + + + Argument must be either a FieldInfo or PropertyInfo + + + 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}' + + + Can only unbox from an object or interface type to a value type. + + + Argument must be either a FieldInfo, PropertyInfo or MethodInfo + + + 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. + + + 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}' + + + Bind cannot return null. + + + The member '{0}' is not declared on type '{1}' being created + + + Property type must match the value type of getter + + + First argument of delegate must be CallSite + + + 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}. + + + Can't compile a NewExpression with a constructor declared on an abstract class + + + Variable '{0}' uses unsupported type '{1}'. Reference types are not supported for variables. + + + No or Invalid rule produced + + + 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 + + + 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. + + + 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. + + + 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. + + + 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. + + + Collection is read-only. + + + Incorrect number of parameters supplied for lambda declaration + + + '{0}' is not a member of any type + + + 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}. + + + Argument must be single-dimensional, zero-based array type + + + Parameter '{0}' of element initializer method '{1}' must not be a pass by reference parameter + + + Type must be System.Void for this label argument + + + 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 IDynamicMetaObjectProvider {0} created an invalid DynamicMetaObject instance. + + + An expression of type '{0}' cannot be used to initialize an array of type '{1}' + + + Found duplicate parameter '{0}'. Each ParameterExpression in the list must be a unique object. + + + 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. + + + Property cannot have a void type. + + + Unhandled unary: {0} + + + Argument count must be greater than number of named arguments. + + + 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. + + + Type must be derived from System.Delegate + + + 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 + + + The result type '{0}' of the binder '{1}' is not compatible with the result type '{2}' expected by the call site. + + + User-defined operator method '{0}' must be static. + + + 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. + + + The constructor should not be static + + + Member '{0}' not field or property + + + Static property requires null instance, non-static property requires non-null instance. + + + Dynamic expressions are not supported by CompileToMethod. Instead, create an expression tree that uses System.Runtime.CompilerServices.CallSite. + + + 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. + + + 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' + + + Invalid argument value + + + An incorrect number of type arguments 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 + + + 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..03690db --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.Parallel.SR.resw @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + 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. + + + 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. + + + 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 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..4fd7f71 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Linq.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 + + + 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 + + \ 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..6b79c82 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Http.SR.resw @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 content length of the request content can't be determined. Either set TransferEncodingChunked to true, load content into buffer, or set MaxRequestContentBufferSize. + + + 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}. + + + The handler does not support client authentication certificates with this combination of libcurl ({0}) and its SSL backend ("{1}"). + + + 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. + + + Stream does not support writing. + + + 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. + + + Using this feature requires Windows 10 Version 1607. + + + The handler does not support custom handling of certificates with this combination of libcurl ({0}) and its SSL backend ("{1}"). + + + Could not find a part of the path '{0}'. + + + 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. + + + 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. + + + Client certificate was not found in the personal (\"MY\") certificate store. In UWP, client certificates are only supported if they have been added to that certificate store. + + + 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 read operation failed, see inner exception. + + + 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. + + + The HTTP response headers length exceeded the set limit of {0} bytes. + + + The handler does not support changing revocation settings with this combination of libcurl ({0}) and its SSL backend ("{1}"). + + + 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. + + + When using WindowsProxyUsePolicy.UseCustomProxy, the Proxy property must not be null. + + + Buffering more than {0} bytes is not supported. + + + Can not access a closed Stream. + + + 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. + + + Stream does not support reading. + + + 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. + + + The specified value is not a valid 'Host' header string. + + + The value cannot be null or empty. + + + Positive number required. + + + The mail header is malformed. + + + Could not find file '{0}'. + + + The given header was not found. + + + The format of the HTTP method is invalid. + + + 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.HttpListener.SR.resw b/obj/x86/Debug/FxResources.System.Net.HttpListener.SR.resw new file mode 100644 index 0000000..5c91950 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.HttpListener.SR.resw @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Can't convert Uri path '{0}' using encoding '{1}'. + + + The {0} operation was called on an incoming request with WebSocket version '{1}', expected '{2}'. + + + No service name check because the authentication was from a client on the local machine. + + + 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. + + + The stream does not support reading. + + + No explicit service name check because Kerberos authentication already validates the service name. + + + The target array is too small. + + + Bytes to be written to the stream exceed the Content-Length bytes size specified. + + + The WebSocket protocol '{0}' is invalid because it contains the invalid character '{1}'. + + + Protocol error: A received message contains a valid signature but it was not encrypted as required by the effective Protection Level. + + + Removing default service name '{0}' from prefix '{1}'. + + + Service name check failed because the client did not provide a service name and the server was configured for PolicyEnforcement.Always. + + + An error occurred when sending the WebSocket HTTP upgrade response during the {0} operation. The HRESULT returned is '{1}' + + + The Content-Length value must be greater than or equal to zero. + + + Service name check succeeded. + + + Adding default service name '{0}' from prefix '{1}'. + + + Can't convert string '{0}' into UTF-8 bytes: {1} + + + No default service name removed for prefix '{0}'. + + + 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. + + + Offset exceeds the length of buffer. + + + Received a request with an unsupported authentication scheme, Authorization:{0} SupportedSchemes:{1}. + + + The WebSocket is in an invalid state ('{0}') for this operation. Valid states are: '{1}' + + + The status code must be exactly three digits. + + + The request is not supported. + + + Please call the {0} method before calling this method. + + + Can't detach Url group from request queue. Status code: {0}. + + + Received a request with an unmatched or no authentication scheme. AuthenticationSchemes:{0}, Authorization:{1}. + + + No default service name added for prefix '{0}'. + + + The close status description '{0}' is too long. The UTF8-representation of the status description must not be longer than {1} bytes. + + + This property is not implemented by this class. + + + No channel binding check for the trusted proxy scenario. + + + The close status description '{0}' is invalid. When using close status code '{1}' the description must be null. + + + Custom channel bindings are not supported. + + + The Security Service Providers don't support extended protection. Please install the latest Security Service Providers update. + + + No channel binding check because extended protection is disabled. + + + Specified value has invalid Control characters. + + + {0} can only be called once for each asynchronous operation. + + + Only Uri prefixes starting with 'http://' or 'https://' are supported. + + + Can't close Url group. Status code: {0}. + + + Only HTTP/1.0 and HTTP/1.1 version requests are currently supported. + + + 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. + + + Cannot close stream until all bytes are written. + + + The byte array must have a length of at least '{0}' bytes. + + + 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. + + + Chunked encoding upload is not supported on the HTTP/1.0 protocol. + + + The value of the '{0}' parameter ({1}) must be less than or equal to {2}. + + + 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}'. + + + Client certificate not found. + + + {0} returned {1}. + + + Can't convert bytes '{0}' into UTF-16 characters: {1} + + + The argument must be a value greater than {0}. + + + Failed to listen on prefix '{0}' because it conflicts with an existing registration on the machine. + + + The in-progress method {0} must be completed first. + + + Cookie already exists. + + + Sending 500 response, AuthenticationSchemeSelectorDelegate threw an exception: {0}. + + + The WebSocket protocol is not supported on this platform. + + + Querying the {0} Channel Binding is not supported. + + + The specified value is not valid in the '{0}' enumeration. + + + Invalid port in prefix. + + + Invalid path. + + + This stream does not support seek operations. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + Dumping acceptable service names: + + + This operation cannot be performed after the response has been submitted. + + + Authentication errors. + + + No service name check because the client did not provide a service name and the server was configured for PolicyEnforcement.WhenSupported. + + + Only Uri prefixes with a valid hostname are supported. + + + No service name check because extended protection is disabled. + + + This method is not implemented by this class. + + + 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}'. + + + I/O operation aborted: '{0}'. + + + No acceptable service names were configured! + + + 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. + + + Cannot re-call {0} while a previous call is still in progress. + + + 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. + + + Listener closed. + + + The close status code '{0}' is reserved for system use only and cannot be specified when calling this method. + + + Only Uri prefixes ending in '/' are allowed. + + + Service name check failed. + + + {0} failed with error {1}. + + + '{0}' is not a supported handle type. + + + Can't convert percent encoded value '{0}'. + + + Client provided service name '{0}'. + + + Channel binding check enabled. + + + The stream does not support writing. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Mail.SR.resw b/obj/x86/Debug/FxResources.System.Net.Mail.SR.resw new file mode 100644 index 0000000..e8242c0 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Mail.SR.resw @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + GSSAPI operation failed with status: {0} (Minor status: {1}). + + + Client does not have permission to submit mail to this server. + + + Error in processing. + + + Service not available, closing transmission channel. + + + The connection was closed + + + Protocol error: A received message contains a valid signature but it was not encrypted as required by the effective Protection Level. + + + Target name should be non empty if default credentials are passed. + + + Help message. + + + The collection is read-only. + + + No support for channel binding on operating systems other than Windows. + + + Only absolute directories are allowed for pickup directory. + + + An invalid character was found in header name. + + + Seeking is not supported on this stream. + + + An invalid character was found in the mail header: '{0}'. + + + The address has an invalid host name: {0}. + + + Unable to send to a recipient. + + + Invalid hex digit '{0}'. + + + Mailbox unavailable. + + + SSL must not be enabled for pickup-directory delivery methods. + + + This operation cannot be performed while a message is being sent. + + + Completed. + + + User not local; will forward to specified path. + + + The date is in an invalid format. + + + The specified media type is invalid. + + + The specified port is invalid. The port must be greater than 0. + + + NTLM authentication is not possible with default credentials on this platform. + + + One of the streams has already been used and can't be reset to the origin. + + + Command not implemented. + + + The specified string is not in the form required for an e-mail address. + + + {0} can only be called once for each asynchronous operation. + + + The SMTP server requires a secure connection or the client was not authenticated. + + + Unable to read data from the transport connection: {0}. + + + The server returned an invalid response to the EHLO command. + + + The server returned an invalid response in the authentication handshake. + + + The MIME transfer encoding '{0}' is not supported. + + + Requested protection level is not supported with the gssapi implementation currently installed. + + + An invalid character was found in the Base-64 stream. + + + Mailbox name not allowed. + + + Syntax error, command unrecognized. + + + Unable to send to all recipients. + + + Mailbox unavailable. + + + Data stream is still open. + + + An asynchronous call is already in progress. It must be completed or canceled before you can call this method. + + + Failure sending mail. + + + Insufficient system storage. + + + Command parameter not implemented. + + + The specified content type is invalid. + + + {0} returned {1}. + + + A recipient must be specified. + + + The specified content disposition is invalid. + + + Reading is not supported on this stream. + + + Bad sequence of commands. + + + Service closing transmission channel. + + + The server response was: {0} + + + Writing is not supported on this stream. + + + Start mail input; end with <CRLF>.<CRLF>. + + + A from address must be specified. + + + Service ready. + + + User not local; please try a different path. + + + Smtp server returned an invalid response. + + + The specified value is not valid in the '{0}' enumeration. + + + The SMTP host was not found. + + + Transaction failed. + + + Authentication failed. + + + The client or server is only configured for E-mail addresses with ASCII local-parts: {0}. + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + The ContentID cannot contain a '<' or '>' character. + + + Syntax error in parameters or arguments. + + + This method is not implemented by this class. + + + GSSAPI operation failed with error - {0} ({1}). + + + Exceeded storage allocation. + + + Insufficient buffer space. Required: {0} Actual: {1}. + + + The requested security package is not supported. + + + The requested security protocol is not supported. + + + Already connected. + + + This operation cannot be performed on a completed asynchronous result object. + + + This property cannot be set to an empty string. + + + Server implementation is not supported + + + The mail header is malformed. + + + IIS delivery is not supported. + + + {0} failed with error {1}. + + + '{0}' is not a supported handle type. + + + Server does not support secure connections. + + + The SMTP host was not specified. + + + This operation cannot be performed while in content. + + + The operation has timed out. + + + The specified string is not in the form required for a subject. + + + System status, or system help reply. + + + The server committed a protocol violation. + + + The parameter '{0}' cannot be an empty string. + + \ 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..2380eb9 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.NameResolution.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 + + + 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. + + \ 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..e4f79bc --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.NetworkInformation.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 + + + 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. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Ping.SR.resw b/obj/x86/Debug/FxResources.System.Net.Ping.SR.resw new file mode 100644 index 0000000..3095bd5 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Ping.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 + + + IPv4 address 0.0.0.0 and IPv6 address ::0 are unspecified addresses that cannot be used as a target address. + + + The system's ping utility could not be found. + + + The AddressFamily {0} is not valid for the {1} end point, use {2} instead. + + + IPv4 is not installed. + + + IPv6 is not installed. + + + Ping functionality is not currently supported in UWP. + + + An exception occurred during a Ping request. + + + An asynchronous call is already in progress. It must be completed or canceled before you can call this method. + + + The buffer length must not exceed 65500 bytes. + + + The supplied {0} is an invalid size for the {1} end point. + + \ 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..9539a9c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Primitives.SR.resw @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 value size of the cookie is '{0}'. This exceeds the configured maximum size, which is '{1}'. + + + '{0}' has to be greater than '{1}' and less than '{2}'. + + + The specified value must be greater than 0. + + + Collection was modified after the enumerator was instantiated. + + + An error occurred when adding a cookie to the container. + + + Default credentials cannot be supplied for the {0} authentication scheme. + + + The AddressFamily {0} is not valid for the {1} end point, use {2} instead. + + + This property is not implemented by this class. + + + The '{0}'='{1}' part of the cookie is invalid. + + + An invalid IP address was specified. + + + The collection is read-only. + + + Cookie format error. + + + The supplied {0} is an invalid size for the {1} end point. + + + This method is not implemented by this class. + + + The specified value is not valid. + + + An error occurred when parsing the Cookie header for Uri '{0}'. + + + Enumerator is positioned before the first element or after the last element of the collection. + + + The parameter '{0}' cannot be an empty string. + + \ 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..ab01199 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Requests.SR.resw @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Keep-Alive and Close may not be set using this property. + + + This property cannot be set after writing has started. + + + This method is not supported. + + + The RenameTo filename cannot be null or empty. + + + The Content-Length value must be greater than or equal to zero. + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value > 0. + + + Can't open data connection + + + Service not available, closing control connection. + + + Connection closed; transfer aborted + + + The specified value must be greater than 0. + + + This operation is not supported. + + + Insufficient storage space in system + + + Cannot set null or blank methods on request. + + + Need account for storing files + + + Local error in processing + + + This property is not supported by this class. + + + Page type unknown + + + The request was aborted: The request was canceled. + + + The underlying connection was closed: An unexpected error occurred on a receive + + + This operation cannot be performed after the request has been submitted. + + + File unavailable (e.g., file busy) + + + Not logged in + + + The URI prefix is not recognized. + + + This property is not implemented by this class. + + + The supplied string is not a valid HTTP token. + + + Default credentials are not supported on an FTP request. + + + A different range specifier has already been added to this request. + + + Exceeded storage allocation (for current directory or data set) + + + Syntax error, command unrecognized + + + Specified value has invalid Control characters. + + + {0} can only be called once for each asynchronous operation. + + + File name not allowed + + + Only HTTP/1.0 and HTTP/1.1 version requests are currently supported. + + + The remote server returned an error: {0}. + + + Cannot re-call BeginGetRequestStream/BeginGetResponse while a previous call is still in progress. + + + The remote name could not be resolved + + + The response string '{0}' has invalid format. + + + The status response ({0}) is not expected in response to '{1}' command. + + + File unavailable (e.g., file not found, no access) + + + Specified value has invalid HTTP Header characters. + + + FTP Method names cannot be null or empty. + + + Syntax error in parameters or arguments + + + Chunked encoding must be set via the SendChunked property. + + + The server returned a status code outside the valid range of 100-599. + + + The server failed the passive mode request with status response ({0}). + + + The From parameter cannot be less than To. + + + The From or To parameter cannot be less than 0. + + + The remote server returned an error: ({0}) {1}. + + + The value of the date string in the header is invalid. + + + The specified value is not a valid Host header string. + + + The specified value is not valid in the '{0}' enumeration. + + + The requested URI is invalid for this FTP command. + + + Command not implemented + + + The IAsyncResult object was not returned from the corresponding asynchronous method on this class. + + + This method is not implemented by this class. + + + The request was aborted: {0}. + + + The requested security protocol is not supported. + + + The underlying connection was closed: The server committed a protocol violation + + + Specified value has invalid CRLF characters. + + + The data connection was made from an address that is different than the address to which the FTP connection was made. + + + This operation cannot be performed on a completed asynchronous result object. + + + TransferEncoding requires the SendChunked property to be set to true. + + + 100-Continue may not be set using this property. + + + Bad sequence of commands + + + Cannot send a content-body with this verb-type. + + + The server returned the filename ({0}) which is not valid. + + + The operation has timed out. + + + Unable to connect to the remote server + + + Timeout can be only be set to 'System.Threading.Timeout.Infinite' or a value >= 0. + + + The operation has timed out. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.Security.SR.resw b/obj/x86/Debug/FxResources.System.Net.Security.SR.resw new file mode 100644 index 0000000..f84d6e3 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Security.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 + + + GSSAPI operation failed with status: {0} (Minor status: {1}). + + + Sum of offset and count cannot be greater than the length of the buffer. + + + The stream has to be read/write. + + + Got a certificate from the client delegate. + + + The handshake failed due to an unexpected packet format. + + + The {0} method cannot be called when another {1} operation is pending. + + + Write operations are not allowed after the channel was shutdown. + + + Failed to allocate SSL/TLS context, OpenSSL error - {0}. + + + Remote certificate: {0}. + + + This operation is not allowed on a security context that has already been authenticated. + + + A service name must not be null or empty. + + + The connection was closed + + + Decrypt failed with OpenSSL error - {0}. + + + Found a wrong header field {0} read : {1}, expected : {2}. + + + Protocol error: A received message contains a valid signature but it was not encrypted as required by the effective Protection Level. + + + Remote certificate has no errors. + + + We have user-provided certificates. The server has not specified any issuers, so try all the certificates. + + + Using SSL certificate failed with OpenSSL error - {0}. + + + Target name should be non empty if default credentials are passed. + + + Operation failed with error - {0}. + + + The byte count must not exceed {0} bytes for this stream type. + + + The server mode SSL must use a certificate with the associated private key. + + + Cannot find the certificate in either the LocalMachine store or the CurrentUser store. + + + Left with {0} client certificates to choose from. + + + No support for channel binding on operating systems other than Windows. + + + To construct a policy with PolicyEnforcement.Never, the single-parameter constructor must be used. + + + The supported values are Identification, Impersonation or Delegation. + + + SSL Read BIO failed with OpenSSL error - {0}. + + + SSL Write BIO failed with OpenSSL error - {0}. + + + A call to SSPI failed, see inner exception. + + + Certificate is of type X509Certificate2 and contains the private key. + + + Client delegate did not provide a certificate; but there are other user-provided certificates. + + + {0}(In-Buffer length={1}, Out-Buffer length={2}, returned code={3}). + + + Trying to find a matching certificate in the certificate store. + + + The payload size is limited to {0}, attempted set it to {1}. + + + The requested combination of SslProtocols ({0}) is not valid for this platform because it skips intermediate versions. + + + The decryption operation failed, see inner exception. + + + Remote certificate has errors: + + + Locating the private key for the certificate: {0}. + + + This operation is only allowed using a successfully authenticated context. + + + Either the target name is incorrect or the server has rejected the client credentials. + + + Enumerating security packages: + + + Remote certificate was verified as invalid by the user. + + + NTLM authentication is not possible with default credentials on this platform. + + + Security package '{0}' was not found. + + + Once authentication is attempted as the client or server, additional authentication attempts must use the same client or server role. + + + {0}(In-Buffers count={1}, Out-Buffer length={2}, returned code={3}). + + + Re-authentication failed because the remote party continued to encrypt more than {0} bytes before answering re-authentication. + + + Getting SSL connection info failed with OpenSSL error - {0}. + + + {0} can only be called once for each asynchronous operation. + + + Using the cached credential handle. + + + Unable to read data from the transport connection: {0}. + + + Using SSL certificate private key failed with OpenSSL error - {0}. + + + Authentication failed because the remote party has closed the transport stream. + + + {0}(Protocol={1}, Cipher={2} {3} bit strength, Hash={4} {5} bit strength, Key Exchange={6} {7} bit strength). + + + Requested protection level is not supported with the gssapi implementation currently installed. + + + Failed to get SSL method '{0}'. Ensure the OpenSSL method exists on the current system. + + + Failed to push X509_NAME into stack. + + + SSL Handshake failed with OpenSSL error - {0}. + + + Certificate name mismatch. + + + Opening Certificate store {0} failed, exception: {1}. + + + The server has rejected the client credentials. + + + The read operation failed, see inner exception. + + + Client delegate did not provide a certificate; and there are not other user-provided certificates. Need to attempt a session restart. + + + Cannot determine the frame size or a corrupted frame was received. + + + 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. + + + Attempting to restart the session using the user-provided certificate: {0}. + + + {0} returned {1}. + + + Received an invalid authentication frame. The message size is limited to {0} bytes, attempted to read {1} bytes. + + + Received an unexpected EOF or 0 bytes from the transport stream. + + + The specified value is not valid in the '{0}' enumeration. + + + Found the certificate in the {0} store. + + + The write operation failed, see inner exception. + + + This stream does not support seek operations. + + + Fetching channel binding token failed with OpenSSL error - {0}. + + + The remote certificate is invalid according to the validation procedure. + + + The ServiceNameCollection must contain at least one service name. + + + SSL certificate returned is invalid, OpenSSL error - {0}. + + + SSL certificate private key check failed with OpenSSL error - {0}. + + + The '{0}' encryption policy is not supported by this installation of OpenSSL. + + + Remote certificate was verified as valid by the user. + + + This method is not implemented by this class. + + + GSSAPI operation failed with error - {0} ({1}). + + + Insufficient buffer space. Required: {0} Actual: {1}. + + + The requested security package is not supported. + + + The requested security protocol is not supported. + + + Received incomplete authentication message. Remote party has probably closed the connection. + + + We have user-provided certificates. The server has specified {0} issuer(s). Looking for certificates that match any of the issuers. + + + A security requirement was not fulfilled during authentication. Required: {0}, negotiated: {1}. + + + This operation cannot be performed on a completed asynchronous result object. + + + Selected certificate: {0}. + + + Server implementation is not supported + + + A remote side security requirement was not fulfilled during authentication. Try increasing the ProtectionLevel and/or ImpersonationLevel. + + + The encryption operation failed, see inner exception. + + + The '{0}' encryption policy is not supported on this platform. + + + Encrypt failed with OpenSSL error - {0}. + + + {0} failed with error {1}. + + + '{0}' is not a supported handle type. + + + The remote server did not provide a certificate. + + + The parameter: {0} is not valid. Use the object returned from corresponding Begin async call. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.ServicePoint.SR.resw b/obj/x86/Debug/FxResources.System.Net.ServicePoint.SR.resw new file mode 100644 index 0000000..4896d01 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.ServicePoint.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 + + + The ServicePointManager does not support proxies with the {0} scheme. + + + The requested security protocol is not supported. + + \ 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..63c5f95 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.Sockets.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 + + + {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. + + + 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 parameter {0} must contain one or more elements. + + + 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. + + + Stream does not support writing. + + + 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. + + + Unable to transfer data on the transport connection: {0}. + + + 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. + + + Unable to write data to the transport connection: {0}. + + + This platform does not support Socket.DuplicateAndClose. Instead, create a new socket. + + + 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. + + + Can not access a closed Stream. + + + Stream does not support reading. + + + Not listening. You must call the Start() method before calling this method. + + + 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. + + + This platform does not support TransmitFileOptions other than TransmitFileOptions.UseDefaultWorkerThread. + + + 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. + + + IP protection level cannot be controlled on this platform. + + + Positive number required. + + + 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. + + + The stream does not support writing. + + + This platform does not support receiving data with Socket.AcceptAsync. Instead, make a separate call to Socket.ReceiveAsync. + + + Accepting into an existing Socket is not supported on this platform. + + + Socket.IOControl handles Windows-specific control codes and is not supported on this platform. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Net.WebClient.SR.resw b/obj/x86/Debug/FxResources.System.Net.WebClient.SR.resw new file mode 100644 index 0000000..a1e4979 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebClient.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 + + + The specified value is not a valid base address. + + + The Content-Type header cannot be set to a multipart type for this request. + + + An exception occurred during a WebClient request. + + + The message length limit was exceeded + + + WebClient does not support concurrent I/O operations. + + + The Content-Type header cannot be changed from its default value for this request. + + \ 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..213a42c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebHeaderCollection.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 + + + Header values cannot be longer than {0} characters. + + + Specified value does not have a ':' separator. + + + 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 HTTP Header characters. + + + The {0} header must be modified using the appropriate property or method. + + + The parameter '{0}' cannot be an empty string. + + + 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..ddc0f79 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebSockets.Client.SR.resw @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 WebSocket protocol '{0}' is invalid because it contains the invalid character '{1}'. + + + 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 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. + + + Client certificate was not found in the personal (\"MY\") certificate store. In UWP, client certificates are only supported if they have been added to that certificate store. + + + This operation is not supported for a relative URI. + + + The WebSocket is not connected. + + + Empty string is not a valid subprotocol value. Please use \"null\" to specify no value. + + + The WebSocket has already been started. + + + The argument must be a value greater than {0}. + + + The WebSocket protocol is not supported on this platform. + + + The '{0}' header value '{1}' is invalid. + + + The requested security protocol is not supported. + + + 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. + + + Client certificates in UWP are unsupported in Windows 10 version 1703 and earlier versions. Please upgrade Windows 10 to a later release. + + + 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. + + + 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..146bc30 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Net.WebSockets.SR.resw @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 stream is not writeable. + + + A WebSocket operation was called on a request or response that is not a WebSocket. + + + The WebSocket protocol '{0}' is invalid because it contains the invalid character '{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 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. + + + 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. + + + Empty string is not a valid subprotocol value. Please use \"null\" to specify no value. + + + The WebSocket request or response operation was called with unsupported protocol(s). + + + The remote party closed the WebSocket connection without completing the close handshake. + + + The argument must be a value greater than {0}. + + + The WebSocket protocol is not supported on this platform. + + + The base stream is not readable. + + + 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. + + \ 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..6774e14 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Numerics.Vectors.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 + + + Index was out of bounds: + + + Specified type is not 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..5457178 --- /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. Key: {0} + + + 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..8332d72 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.DataContractSerialization.SR.resw @@ -0,0 +1,1188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Interface type '{0}' cannot be created. Consider replacing with a non-interface serializable type. + + + 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. + + + Factory type '{0}' for ISerializable type '{1}' must also be ISerializable. + + + 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} + + + Type '{0}' cannot be exported as a schema type because it is an open generic type. You can only export a generic type if all its generic parameter types are actual types. + + + 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. + + + The empty string is not a valid local name. + + + The Message Transmission Optimization Mechanism (MTOM) message encoding is not supported on this platform. + + + {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. + + + System.Runtime.Serialization.NetDataContractSerializer is not supported on this platform. + + + 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. + + + 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. + + + '{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}. + + + (matching) + + + 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). + + + Canonicalization already started. + + + There was an error writing start element of object {0}. {1} + + + Only whitespace 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. + + + (not matching) + + + 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}. + + + The constructor with parameters (SerializationInfo, StreamingContext) is not found in ISerializable type '{0}'. + + + Cannot export null type provided via KnownTypesCollection. + + + 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. + + + Method '{0}.GetSchema()' must return a schema with a valid Id. + + + 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. + + + IExtensibleDataObject property setter '{1}' in type '{0}' must return void. + + + Version not found in XML declaration. + + + Cannot export null assembly provided via '{0}' parameter. + + + {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}'.) + + + List of referenced collection types contains more than one type with data contract name '{0}' in namespace '{1}'. Include only one of the following types. Only matching types can be valid references: {2} + + + List of referenced collection types contains more than one type with same data contract name. Include only one of the following types. Only matching types can be valid references: {0} + + + 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. + + + Stream returned by IStreamProvider cannot be null. + + + 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. + + + Schema type '{0}' returned by CLR type '{1}' is not found in the XmlSchemaSet. + + + Deserialized object with reference id '{0}' not found in stream. + + + 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 whitespace 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. + + + Type '{0}' does not have DataContractAttribute attribute and therefore cannot support IExtensibleDataObject. + + + 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}. + + + 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}'. + + + Only classes can be generated as ISerializable. + + + 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. + + + The implementation of the function requires System.Runtime.Serialization.SchemaImporter which is not supported on this platform. + + + 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. + + + JsonObjectDataContract.ParseJsonNumber shouldn't return a TypeCode that we're not expecting. + + + 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. + + + Type '{0}' cannot be ISerializable and have DataContractAttribute attribute. + + + 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}'. + + + Failed to create Delegate for method '{0}' 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 > + + + The combined length of the prefix and namespace must not be greater than {0}. + + + KnownTypeAttribute attribute on type '{0}' contains no data. + + + The canonicalization process is not supported on this platform. + + + 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 inclusive namespace prefix collection cannot contain null as one of the items. + + + The implementation of the function requires System.Runtime.Serialization.IDataContractSurrogate which is not supported on this platform. + + + 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. + + + DataContractJsonSerializer does not support the setting of the FullTypeName of the object to be serialized to a value other than the default FullTypeName. Attempted to serialize object with full type name '{0}' and default full type name '{1}'. + + + 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. + + + Type '{0}' has set its ISerializable assembly name to "0". "0" is an invalid assembly name. Consider using the full name of mscorlib if you would like your type to be deserialized in that assembly. + + + 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. + + + IExtensibleDataObject property setter '{1}' in type '{0}' must have a single parameter of type '{2}'. + + + Type '{0}' cannot be IXmlSerializable and have DataContractAttribute attribute. + + + DataContract with name '{0}' and namespace '{1}' cannot be added to DataContractSet since another contract with the same data contract name is already present and the contracts are not equivalent. + + + ReferencedCollectionTypes specified via ImportOptions must contain valid types. Cannot contain null. + + + Cannot find a path to the member when generating the XPath query. + + + No set method for property '{1}' in type '{0}'. + + + ReferencedTypes specified via ImportOptions must contain valid types. Cannot contain null. + + + 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. + + + Canonicalization not started. + + + 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. + + + DataContract for type '{0}' cannot be added to DataContractSet since type '{1}' with the same data contract name '{2}' in namespace '{3}' is already present and the contracts are not equivalent. + + + An internal error has occurred. Could not load serialization schema. Consider providing schema with namespace '{0}'. + + + 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}'. + + + Array Size '{0}' is not equal to the number of elements found '{1}'. + + + Invalid IExtensibleDataObject. Both '{0}' and '{1}' in type '{2}' provide property setter. + + + 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. + + + 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. + + + '{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}'. + + + Cannot export null type provided via '{0}' parameter. + + + 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}'. + + + 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. + + + List of referenced types contains more than one type with same data contract name. Need to exclude all but one of the following types. Only matching types can be valid references: {0} + + + List of referenced types contains more than one type with data contract name '{0}' in namespace '{1}'. Need to exclude all but one of the following types. Only matching types can be valid references: {2} + + + 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. + + + 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..891d70a --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.ServiceModel.SR.resw @@ -0,0 +1,1974 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + The translation set cannot contain nulls. + + + Could not connect to {0}. The connection attempt lasted for a time span of {3}. TCP error code {1}: {2}. + + + 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. + + + The channel received an unexpected fault input message while closing. The fault reason given is: '{0}' + + + The configured Trust version does not support sessions. Use WSTrustFeb2005 or above. + + + Cannot create channel for a contract that requires request/reply and a binding that requires manual addressing but only supports duplex communication. + + + 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. + + + The message header with name '{0}' and namespace '{1}' is not present in the set of understood headers. + + + The configured WS-Trust version does not support issued tokens. WS-Trust February 2005 or later is required. + + + Method '{1}' has {0}, but enclosing type '{2}' does not have ServiceContractAttribute. {0} can only be used on methods in ServiceContractAttribute types. + + + 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. + + + Server '{0}' is too busy to process this request. Try again later. + + + 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. + + + 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. + + + Process action '{0}'. + + + 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. + + + 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. + + + 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. + + + 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. + + + The communication object, {0}, is in the {1} state. Communication objects cannot be used for communication unless they are in the Opened state. + + + 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}. + + + There is not a header with name {0} and namespace {1} in the message. + + + Additional XML content is present in the fault detail element. Only a single element is allowed. + + + SynchronizedReadOnlyCollection's CopyTo only works if the underlying list implements ICollection. + + + SSL protocol negotiation failed. Requested '{0}' but was offered '{1}'. + + + Expecting first char - c - to be in set [Char.IsLetter(c) && c == '_', found '{0}'. + + + Error in deserializing body of request message for operation '{0}'. + + + 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. + + + 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. + + + The one-way operation returned a fault message. The reason for the fault was '{0}'. + + + Open ClientBase. Contract type: '{0}'. + + + The security token authenticator '{0}' cannot validate a token of type '{1}'. + + + The configured SecurityVersion does not support signature confirmation. Use WsSecurity11 or above. + + + Value '{0}' provided for '{1}' from namespace '{2}' is an invalid absolute URI. + + + No Action header was found with namespace '{0}' for the given message. + + + 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}'). + + + Failed to create a typed proxy for type '{0}' + + + Unbound prefix used in qualified name '{0}'. + + + Attribute '{0}' is required on element '{1}'. + + + The value '{1}' is not supported in this context for the binding security property '{0}'. + + + The claimType cannot be an empty string. + + + The value of the addressHeaders argument is invalid because the collection contains null values. Null is not a valid value for the AddressHeaderCollection. + + + The value of this argument must be non-negative. + + + The value '{1}' for the '{0}' property is not supported in Windows Store apps. + + + The specified method handle is incorrect for the proxy of type '{0}' + + + 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. + + + 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. + + + 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). + + + The receiver returned an error indicating that the content type was missing on the request to {0}. See the inner exception for more information. + + + 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. + + + Calling Post() on '{0}' resulted in multiple callbacks. This indicates a problem in '{0}'. + + + 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. + + + Close process timed out waiting for service dispatch to complete. + + + 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 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'. + + + 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. + + + 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. + + + 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. + + + For request in operation {0} to be a stream the operation must have a single parameter whose type is Stream. + + + Channel type '{1}' was requested, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + 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. + + + AllowInitializationUI was set to false for this channel, but the channel is configured to use the '{0}' as an interactive initializer. + + + An HTTP Content-Type header is required for SOAP messaging and none was found. + + + Expected XML qualified name, found '{0}'. + + + 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}'. + + + 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. + + + The valid from time is greater than the valid to time. + + + Operation was aborted while establishing a connection to {0}. + + + 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 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. + + + 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}. + + + 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 binary encoder session is not valid. There was an error decoding a previous message. + + + 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. + + + The derived key has not been computed for the security token. + + + This channel cannot send any more messages because IsTerminating operation '{0}' has already been called. + + + Operations marked with IsOneWay=true must not declare output parameters, by-reference parameters or return values. + + + Cannot open ChannelFactory as the inner channel factory was not set during the initialization process. + + + A connection has exceeded the idle timeout of this connection pool ({0}) and been closed. + + + Framing mode {0} is not supported. + + + Method {0} in type {1} has more than one header part of type array of XmlElement. + + + 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. + + + The argument must be a non-empty string. + + + The algorithm '{0}' is not accepted for operation '{1}' by algorithm suite {2}. + + + XmlArrayAttribute cannot be used in repeating part {1}:{0}. + + + Processing message {0}. + + + The required '{0}' property on the '{1}' security protocol factory is not set or has an invalid value. + + + Cannot resolve the host name of URI \"{0}\" using DNS. + + + 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. + + + 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. + + + There was an error in serializing body of message {0}: '{1}'. Please see InnerException for more details. + + + Value '{0}' provided for {1} property is an invalid URI. + + + A TCP error ({0}: {1}) occurred while transmitting data. + + + The CloneCore method of {0} type returned an invalid result. + + + Parameter value '{0}' is an invalid URI. + + + In operation '{0}', cannot return null from methods that return Message. + + + The requested service, '{0}' could not be activated. See the server's diagnostic trace logs for more information. + + + A graceful close was attempted on the socket, but the other side ({0}) is still sending data. + + + The '{0}' list is invalid because the property '{1}' of '{2}' is not null. + + + 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). + + + ContractDescription '{0}' has zero IsInitiating=true operations; a contract must have at least one IsInitiating=true operation. + + + 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 + + + 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 dispatch instance for duplex callbacks cannot be activated - you must provide an instance. + + + ... + + + The ClientOperation '{0}' requires Formatter, since SerializeRequest and DeserializeReply are not both false. + + + 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. + + + The XmlReader used for the body of the message must be positioned on an element. + + + 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. + + + Execute '{0}.{1}'. + + + 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. + + + Error in deserializing body of reply message for operation '{0}'. {1} + + + 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} + + + This fault did not provide a matching translation: {0} + + + 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 specified size exceeds the remaining buffer space ({0} bytes). + + + The framing via ({0}) is not a valid URI. + + + 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 value specified ('{0}') contains more than one subprotocol which is not supported. + + + 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 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. + + + The collection of type {0} does not support values of type {1}. + + + The body writer does not support writing more than once because it is not buffered. + + + 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>. + + + 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 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. + + + 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 server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error. + + + 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 binding (Name={0}, Namespace={1}) does not contain a TransportBindingElement. + + + StringNullOrEmpty + + + The service does not allow you to log on anonymously. + + + {0} returned false from OnTryCreateFaultMessage, but returned a non-null fault message. + + + In operation '{0}', cannot pass null to methods that take Message as input parameter. + + + The HTTP proxy authentication credential specified an impersonation level restriction ({0}) that is stricter than the restriction for target server authentication ({1}). + + + For TransferMode.Buffered, MaxReceivedMessageSize and MaxBufferSize must be the same value. + + + Cannot find The X.509 certificate using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}' for target '{4}'. + + + The formatter threw an exception while trying to deserialize the message: {0} + + + The SOAP action specified on the message, '{0}', does not match the action specified in the content-type of the HttpRequestMessageProperty, '{1}'. + + + 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. + + + 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. + + + Addressing Version '{0}' is not supported. + + + The value of this argument must fall within the range {0} to {1}. + + + The remote certificate is invalid according to the validation procedure. + + + Server returned an invalid SOAP Fault. Please see InnerException for more details. + + + There was an error in serializing one of the headers in message {0}: '{1}'. Please see InnerException for more details. + + + The PrimitiveOperationFormatter was given a parameter or return type which it does not support. + + + Error in deserializing body of reply message for operation '{0}'. + + + 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. + + + The specified offset exceeds the buffer size ({0} bytes). + + + ServiceKnownTypeAttribute in {0} refers to a method {1} that does not exist in type {2} + + + An error occurred while loading attribute '{0}'. Please see InnerException for more details. + + + The Address property on ChannelFactory.Endpoint was null. The ChannelFactory's Endpoint must have a valid Address specified. + + + 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 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. + + + Type {0} cannot inherit from any class other than object to be used as body object in RPC style. + + + The {0} binding element requires envelope version '{1}' It doesn't support '{2}'. + + + The 'parameters' argument must be an array that contains a single Message object. + + + A base address cannot contain a Uri user info section. + + + The InstanceContext provided to the ChannelFactory contains a UserObject that does not implement the CallbackContractType '{0}'. + + + This value cannot be changed after the ChannelFactory has opened. + + + The token provider '{0}' was unable to provide a security token. + + + 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 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. + + + The given URI must be absolute. + + + Error while reading message framing format at position {0} of stream (state: {1}) + + + An attempt was made to decode a value after the framing stream was ended. + + + A reply message cannot be created because the request message does not have a MessageID. + + + The message containing this stream has been closed. + + + The Session value '{0}' is invalid. Please specify 'CurrentSession','ServiceSession' or a valid non-negative Windows Session Id. + + + The length of the symmetric key specified is too short ({0} bytes). + + + MemoryStream's internal buffer cannot be accessed. + + + In operation {0}, more than one fault is declared with element name {1} in namespace {2} + + + The 'result' argument must be of type Message. + + + In operation {0}, the schema type corresponding to the fault detail type {1} is anonymous. Please set Fault name explicitly to export anonymous types. + + + The {0} X.509 certificate is in an untrusted certificate store. + + + The NTLM authentication scheme was specified, but the target credential does not allow NTLM. + + + Multiple RelatesTo headers with relationship '{0}' found. Only one is allowed per relationship. + + + The IMessageProperty could not be copied. CreateCopy returned null. + + + The DispatchOperation '{0}' requires Formatter, since DeserializeRequest and SerializeReply are not both false. + + + 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. + + + 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 signing token {0} has no key that supports the algorithm suite {1}. + + + Manual addressing is enabled on this factory, so all messages sent must be pre-addressed. + + + Unexpected internal enum value: {0}. + + + The provided URI scheme '{0}' is invalid; expected '{1}'. + + + 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. + + + Writing audit messages to the Security log is not supported by the current platform. You must write audit messages to the Application log. + + + 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. + + + 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. + + + Contract requires Request/Reply, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + Envelope Version '{0}' does not support adding Message Headers. + + + The X.509 certificate {0} is not in the trusted people store. + + + The value of OperationContext.Current is not the OperationContext value installed by this OperationContextScope. + + + XmlSerializer attribute {0} is not valid in {1}. Only XmlElement, XmlArray, XmlArrayItem, XmlAnyAttribute and XmlAnyElement attributes are supported when IsWrapped is true. + + + {0} is only available in a deserialized RequestSecurityToken. + + + Insufficient memory avaliable to complete the operation. + + + Unexpected WebSocket close message received when receiving a message. + + + 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. + + + No DNS entries exist for host {0}. + + + The WebSocket returned by the factory of type '{0}' has the SubProtocol '{1}' that doesn't match the requested SubProtocol value '{2}'. + + + Type {0} implements interface {1} which is not supported for body object in RPC style. + + + ClientCredentials cannot create a local token provider for token requirement {0}. + + + The CallbackContract {0} is invalid because it is not an interface type. + + + 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. + + + Contract requires Duplex, but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + 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 '{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. + + + This EndpointDispatcher is not currently attached to the provided ChannelDispatcher. + + + An object that is not an exception was thrown. + + + The required UserNameSecurityToken was not provided. + + + The text encoding '{0}' used in the text message format is not supported. + + + 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. + + + Internal Error: The instance of the MessageContract cannot be null in {0}. + + + The message could not be dispatched to the service at address '{0}'. Refer to the server Event Log for more details + + + 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}'. + + + TimeoutStream requires an inner Stream that supports timeouts; its CanTimeout property must be true. + + + Unrecognized message version. + + + Duplex channel to {0} was aborted during the open process. + + + The communication object, {0}, cannot be used for communication because it is in the Faulted state. + + + 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. + + + Timeout must be greater than or equal to TimeSpan.Zero. To disable timeout, specify TimeSpan.MaxValue. + + + 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. + + + The protocol factory cannot create a protocol. + + + WebSocket creation failed. The '{0}' returned a WebSocket that is either null or not opened. + + + 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. + + + Executing user callback. + + + An empty value was found for the required base-64 attribute name '{0}', namespace '{1}'. + + + Only body return values are supported currently for protection, MessagePartDescription was specified. + + + 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 value of MaxPendingAccepts should not be larger than {0}. + + + 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 operations {0} and {1} have the same action ({2}). Every operation must have a unique action value. + + + The fault does not have detail information. + + + 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}'. + + + This message cannot support the operation because it has been written. + + + 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. + + + {0} is not available in deserialized RequestSecurityTokenResponse. + + + The creator of this fault did not specify a Reason. + + + 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. + + + Header properties cannot be set in MessageHeaderAttribute of {0} as its type is MessageHeader<T>. + + + 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. + + + 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\". + + + Error in deserializing body of request message for operation '{0}'. {1} + + + A connection has exceeded the connection lease timeout of this connection pool ({0}) and been closed. + + + 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. + + + A Channel/Service endpoint's Contract is null. + + + 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. + + + A property with the name '{0}' is not present. + + + Framing major version {0} is not supported. + + + More data was expected, but EOF was reached. + + + The configured SecureConversation version does not support sessions. Use WSSecureConversationFeb2005 or above. + + + 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. + + + For response in operation {0} to be a stream the operation must have a single out parameter or return value whose type is Stream. + + + The listener at Uri '{0}' could not be initialized because it was created for an unrecognized channel type. + + + Receive timed out after {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + 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. + + + RPC Message {1} in operation {0} has an invalid body name {2}. It must be {3} + + + Service implementation object invoked with null input parameters, but operation expects {0} parameters. + + + Close ClientBase. Contract type: '{0}'. + + + 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. + + + AsyncResult completed twice. + + + Header name cannot be null or empty. + + + The security protocol '{0}' cannot do replay detection. + + + 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 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. + + + Could not establish trust relationship for the SSL/TLS secure channel with authority '{0}'. + + + The length of this argument must be greater than 0. + + + The item cannot be added. The maximum cache size is ({0} items). + + + 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. + + + This SecurityKeyIdentifierClause does not support key creation. + + + 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 token requirement does not contain a property '{0}'. + + + 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 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. + + + GenericCallbackException + + + 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. + + + The operation '{0}' cannot be the first operation to be called because IsInitiating is false. + + + '{0}' is an invalid XmlNodeType. + + + 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. + + + 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. + + + The fault reason does not contain any text translations. + + + 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. + + + 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. + + + 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. + + + Cannot claim lock within the allotted timeout of {0}. The time allotted to this operation may have been a portion of a longer timeout. + + + An error ({0}) occurred while parsing the content type of the HTTP request. The content type was: {1}. + + + 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. + + + Element {0} cannot be empty. + + + IAsyncResult not provided or of wrong type. + + + Peer Trust certificate validation is not supported on OSX. See https://go.microsoft.com/fwlink/?linkid=849976 for details. + + + 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}'. + + + You cannot specify an explicit Proxy Address as well as UseDefaultWebProxy=true in your HTTP Transport Binding Element. + + + The asynchronous result object used to end this operation was not the object that was returned when the operation was initiated. + + + 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. + + + 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. + + + Async End called on wrong channel. + + + Contract does not allow Session, but Binding '{0}' does not support Datagram or is not configured properly to support it. + + + {0} returned true from OnTryCreateFaultMessage, but did not return a fault message. + + + The security timestamp is stale because its expiration time ('{0}') is in the past. Current time is '{1}' and allowed clock skew is '{2}'. + + + Contract requires TwoWay (either request-reply or duplex), but Binding '{0}' doesn't support it or isn't configured properly to support it. + + + {0} returned true from OnTryCreateException, but did not return an Exception. + + + Body object cannot be null in message {0} + + + A body element was not found inside the message envelope. + + + Close '{0}'. + + + 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}'. + + + MaxBufferSize must not exceed MaxReceivedMessageSize. + + + 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 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 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. + + + 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. + + + X509CertificateValidationMode.Custom requires a CustomCertificateValidator. Specify the CustomCertificateValidator property. + + + DispatchOperation requires Invoker. + + + 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: + + + There was an error while trying to deserialize parameter {0}:{1}. Please see InnerException for more details. + + + Part {1}:{0} is repeating and is not supported in Soap Encoding. + + + 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}'. + + + 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 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. + + + 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. + + + Cannot add outgoing headers to message as MessageVersion in OperationContext.Current '{0}' does not match with the header version of message being processed '{1}'. + + + Cannot process contentType. + + + RPC Message {1} in operation {0} must have a single MessageBodyMember. + + + 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. + + + HTTP request streaming cannot be used in conjunction with HTTP authentication. Either disable request streaming or specify anonymous HTTP authentication. + + + The security timestamp is invalid because its creation time ('{0}') is greater than or equal to its expiration time ('{1}'). + + + 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 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. + + + 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. + + + Cannot modify channel parameters because the {0} is in the {1} state. This operation is only supported in the Created state. + + + TimeSpan must be greater than TimeSpan.Zero. + + + HttpChannelFactory cannot create the channel with shape '{0}' when the {1} of {2} was set as '{3}'. + + + Unrecognized contentType ({0}). Expected: {1}. + + + The message could not be dispatched because the service at the endpoint address '{0}' is unavailable for the protocol of the address. + + + 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. + + + The {0} object has been disposed. + + + 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 '{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. + + + 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}'. + + + This fault did not provide a reason (MessageFault.Reason.Translations.Count was 0). + + + 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. + + + Message part {0} in namespace {1} appears more than once in Message. + + + --- End of inner ExceptionDetail stack trace --- + + + Incoming binary negotiation has invalid ValueType {0}. + + + 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. + + + An error occurred while loading attribute '{0}' on method '{1}' in type '{2}'. Please see InnerException for more details. + + + Required xml:lang attribute value is missing. + + + 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. + + + 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. + + + 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}'. + + + {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). + + + {0} is not available in deserialized RequestSecurityToken. + + + The message containing this stream has been closed. Note that request streams cannot be accessed after the service operation returns. + + + 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. + + + 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. + + + '{0}' from namespace '{1}' is not expected. Expecting element '{2}' from namespace '{3}' + + + 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. + + + Cannot write to the stream because the end of the stream marker was already written. + + + The X.509 certificate ({0}) usage time is invalid. The usage time '{1}' does not fall between NotBefore time '{2}' and NotAfter time '{3}'. + + + 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. + + + 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}'. + + + 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. + + + There was an error deserializing the security token XML. Please see the inner exception for more details. + + + 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. + + + ActivityBoundary + + + 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. + + + 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. + + + This property sets EnableFaults on the client. To set EnableFaults on the server, use ChannelDispatcher's EnableFaults. + + + The following remote identity failed verification: '{0}'. + + + Could not connect to {0}. TCP error code {1}: {2}. + + + The token provider '{0}' does not support token cancellation. + + + 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. + + + IAsyncResult's State must be the state argument passed to your Begin call. + + + Binding name cannot be null or empty. + + + Multiple headers with name '{0}' and namespace '{1}' found. + + + You have tried to create a channel to a service that does not support .Net Framing. + + + The QName is invalid. + + + 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 identity check failed for the outgoing message. The expected identity is '{0}' for the '{1}' target endpoint. + + + The binary encoder session information is not properly formed. + + + OperationDescription '{0}' is invalid because its Messages property contains an invalid number of MessageDescription instances. Each OperationDescription must have one or two messages. + + + ... Error reading body: {0}: {1} ... + + + 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 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. + + + An internal error has occurred. Invalid MessageState. + + + Only an absolute Uri can be used as a base address. + + + Failed to copy the HTTP header '{0}' with value '{1}' to '{2}'. + + + 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. + + + The array passed does not have enough space to hold all the properties contained by this collection. + + + The 'parameters' argument must be either null or an empty array. + + + 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. + + + The username is not provided. Specify username in ClientCredentials. + + + 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. + + + Clone() was not implemented properly by '{0}'. The cloned object was '{1}'. + + + All parameter names used in operations that make up a service contract must not be null. + + + Invalid IContextChannel passed to OperationContext. Must be either a server dispatching channel or a client proxy channel. + + + 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. + + + The body writer returned from OnCreateBufferedCopy was not buffered. + + + 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. + + + 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. + + + 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 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='*'. + + + 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. + + + Found multiple X.509 certificates using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}'. Provide a more specific find value. + + + 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. + + + Expected record type '{0}', found '{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 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} + + + One way operation {0} cannot not specify a reply action. + + + 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. + + + An operation marked as IsTerminating has already been invoked on this channel, causing the channel's connection to terminate. No more operations may be invoked on this channel. Please re-create the channel to continue communication. + + + 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. + + + Buffer size must be at least {0} bytes. + + + 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. + + + 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. + + + Multiple headers with name '{0}' and namespace '{1}' and role '{2}' found. + + + Unrecognized envelope version: {0}. + + + The server at {0} rejected the session-establishment request. + + + 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. + + + 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. + + + 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. + + + Object is read-only. + + + 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 communication object, {0}, cannot be modified while it is in the {1} state. + + + The identity check failed for the incoming message. The expected identity is '{0}' for the '{1}' target endpoint. + + + 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. + + + The specified channel type {0} is not supported by this channel manager. + + + The authentication modes using Kerberos do not support the impersonation level '{0}'. Specify identification or impersonation. + + + Envelope Version '{0}' is not supported. + + + 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. + + + An error occurred while loading attribute '{0}' on parameter {1} of method '{2}' in type '{3}'. Please see InnerException for more details. + + + 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. + + + There was an error while trying to deserialize parameter {0}:{1}. The InnerException message was '{2}'. Please see InnerException for more details. + + + The framing content type size ({0}) exceeds the quota. + + + The server rejected the upgrade request. + + + Cannot find the X.509 certificate using the following search criteria: StoreName '{0}', StoreLocation '{1}', FindType '{2}', FindValue '{3}'. + + + 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>. + + + MessageBuffer is closed. + + + The space needed for encoding ({0} bytes) exceeds the message frame offset. + + + 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 HTTP request was forbidden with client authentication scheme '{0}'. + + + An internal error has occurred. The XML buffer is not in the correct state to perform the operation. + + + 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. + + + 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. + + + 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. + + + Creation time must be before expiration time. + + + 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. + + + 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}'. + + + 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. + + + An error occurred while transmitting data. + + + This operation cannot be done after processing is started. + + + 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='*'. + + + The '{0}' operation timed out after '{1}'. The time allotted to this operation may have been a portion of a longer timeout. + + + 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. + + + OperationDescription's Name must be a non-empty string. + + + Method '{0}' in class '{1}' has bad parameter metadata: a pass-by-value parameter is marked with the 'out' parameter mode. + + + A DispatchOperation (or ClientOperation) can only be added to its parent DispatchRuntime (or ClientRuntime). + + + 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 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. + + + Could not find XmlSerializer for type {0}. + + + The framing via size ({0}) exceeds the quota. + + + The IEndpointBehavior '{0}' cannot be used on the server side; this behavior can only be applied to clients. + + + ... stream ... + + + The callback passed to operation '{0}' was called more than once. This indicates an internal error in the implementation of that operation. + + + 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. + + + There was an error while trying to serialize parameter {0}:{1}. The InnerException message was '{2}'. Please see InnerException for more details. + + + 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. + + + 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 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. + + + Addressing Version '{0}' does not support adding WS-Addressing headers. + + + 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. + + + 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 ConfigurationName property must be a non-empty string. + + + The binary encoder session information exceeded the maximum size quota ({0}). To increase this quota, use the MaxSessionSize property on the BinaryMessageEncodingBindingElement. + + + 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 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 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 '{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. + + + The security token manager cannot create a token provider for requirement '{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). + + + The token provider '{0}' was unable to renew the security token. + + + The ClaimType '{0}' is not recognized. Expected ClaimType '{1}'. + + + This message cannot support the operation because it has been copied. + + + 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. + + \ 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..61d4f19 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.Uri.SR.resw @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + Invalid URI: Invalid port specified. + + + Invalid URI: The Uri scheme is too long. + + + An item with the same key has already been added. Key: {0} + + + Invalid URI: The hostname could not be parsed. + + + Invalid URI: The URI is empty. + + + A relative URI cannot be created because the 'uriString' parameter represents an absolute URI. + + + Invalid URI: The Authority/Host could not be parsed. + + + Index was out of range. Must be non-negative and less than the size of the collection. + + + 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}'. + + + UriComponents.SerializationInfoString must not be combined with other UriComponents. + + + Non-negative number required. + + + Invalid URI: The URI scheme is not valid. + + + Invalid URI: There is an invalid sequence in the string. + + + String contains invalid Unicode code points. + + + Extra portion of URI not valid. + + + 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. + + + The subcomponent, {0}, of this uri is not valid. + + + Index and count must refer to a location within the buffer. + + + A derived type '{0}' has reported an invalid value for the Uri port '{1}'. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Private.Xml.Linq.SR.resw b/obj/x86/Debug/FxResources.System.Private.Xml.Linq.SR.resw new file mode 100644 index 0000000..7184eca --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.Xml.Linq.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 + + + 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-whitespace 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. + + + This XPathNavigator does not support IDs. + + + The XPath expression evaluated to unexpected type {0}. + + + This operation is not valid on a node of type {0}. + + + A node of type {0} cannot be added to content. + + + This XPathNavigator cannot be created on a node of type {0}. + + + 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.Private.Xml.SR.resw b/obj/x86/Debug/FxResources.System.Private.Xml.SR.resw new file mode 100644 index 0000000..05c259e --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Private.Xml.SR.resw @@ -0,0 +1,3396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Token '{0}' does not support a conversion to Clr type '{1}'. + + + Reference to unparsed entity '{0}'. + + + The '{0}' character, hexadecimal value {1}, at position {2} within the name, cannot be included in a name. + + + 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}). + + + '{0}' is not yet implemented. + + + The TotalDigits constraint failed. + + + The type for {0} may not be specified for primitive types. + + + Function '{0}' in '{1}' has an invalid number of arguments. + + + There was an error exporting '{0}': elements declared at the top level of a schema cannot be unqualified. + + + Schema with targetNamespace='{0}' has invalid syntax. {1} Line {2}, position {3}. + + + Invalid byte was found at index {0}. + + + Invalid BinaryXml signature. + + + 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}. + + + 'simpleType' or 'complexType' cannot follow 'unique', 'key' or 'keyref'. + + + 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. + + + DTD must be defined before the document root element. + + + The element {0} has incomplete content. List of possible elements expected: {1}. + + + Inference can only handle simple built-in types for 'SchemaType'. + + + The MaxExclusive constraining facet is prohibited for '{0}'. + + + The referring attribute must be present. + + + No complex type to redefine. + + + The element cannot contain text. Content model is empty. + + + Uppercase-First sorting option is not supported. + + + Input or output values of an rpc\literal method cannot have an XmlNamespaceDeclarations attribute (member '{0}'). + + + The attribute '{0}' has an invalid value '{1}' according to its schema type '{2}' - {3} + + + Invalid content type derivation by restriction. + + + The '{0}' attribute is not allowed. + + + There is an unclosed conditional section. + + + The '{0}' start tag on line {1} position {2} does not match the end tag of '{3}'. + + + It is an error for both 'length' and either 'minLength' or 'maxLength' to be members of {facets}, unless they are specified in different derivation steps. In which case the following must be true: the {value} of 'minLength' <= the {value} of 'length' <= the {value} of 'maxLength'. + + + When the order is many, the maxOccurs attribute must have a value of '*'. + + + '{0}' declaration is not permitted in non-schema aware processor. + + + Transform terminated: '{0}'. + + + Function '{0}()' must have at least {1} argument(s). + + + The MinLength constraining facet is invalid - {0} + + + Expecting 'PCDATA'. + + + Value '{0}' cannot be used for the {1} property. The datatype '{2}' is missing. + + + The MaxInclusive constraint failed. + + + This is a duplicate MinInclusive constraining facet. + + + StandAlone is 'yes' and the value of the attribute '{0}' contains a definition in an external document that changes on normalization. + + + This is an invalid object. Only objects returned from Compile() can be passed as input. + + + 'all' is not the only particle in a group, or is being used as an extension. + + + Type '{0}' from namespace '{1}' does not have corresponding IXmlSerializable type. Please consider adding {2} to '{3}'. + + + The '{0}' attribute is either invalid or missing. + + + The type, {0}, is undeclared. + + + The parameter entity replacement text must nest properly within markup declarations. + + + Method {0}.{1}() specified by {2} has invalid signature: return type must be compatible with {3}. + + + 'sequence', 'choice', or 'all' child is required. + + + '{0}' in namespace '{1}' + + + The 'current()' function cannot be used in a pattern. + + + Keyref '{0}' has different cardinality as the referred key or unique element. + + + '{0}' is an invalid xml:space value. + + + SOAP-ENC:arrayType has mismatched brackets. + + + '{0}' + + + Internal error: {0}. + + + XmlAttribute and XmlAnyAttribute 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. + + + The 'import' element cannot appear at this location. + + + The MinExclusive constraining facet is invalid - {0} + + + No validation occurred. + + + '{1}' is an invalid value for the '{0}' attribute. + + + QIL Validation Error! '{0}'. + + + A node of type '{0}' cannot have the name '{1}'. + + + '{0}' cannot be a member of substitution group with head element '{1}'. + + + The reference node must be a child of the current node. + + + The value for the '{0}' attribute is invalid - {1} + + + 'SchemaLocation' must successfully resolve if <redefine> contains any child other than <annotation>. + + + Cannot resolve the 'schemaLocation' attribute. + + + 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. + + + Values that are declared as {fixed} in a base type can not be changed in a derived type. + + + Cannot resolve '{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. + + + Elements with the same name and in the same scope must have the same type. + + + 'maxInclusive' and 'maxExclusive' cannot both be specified for the same data type. + + + An attribute of type NOTATION must not be declared on an element declared EMPTY. + + + The element list has changed. The enumeration operation failed to continue. + + + Expecting a system identifier or a public identifier. + + + Stack overflow. + + + The String '{0}' cannot be represented as an XmlQualifiedName. A namespace for prefix '{1}' cannot be found. + + + The value of the '{0}' element does not equal its fixed value. + + + The 'current()' function cannot be used in a pattern. + + + Illegal namespace declaration xmlns:{0}='{1}'. Namespace alias '{0}' already defined in the current scope. + + + 'xsl:import' instructions must precede all other element children of an 'xsl:stylesheet' element. + + + Lists of BinaryXml value tokens not supported. + + + Cannot import schema for type '{0}' from namespace '{1}'. Redefine not supported. + + + A node of type '{0}' cannot have a name. + + + The value for the 'minOccurs' attribute must be xsd:nonNegativeInteger. + + + Value of {0} mismatches the type of {1}; you need to set it to {2}. + + + Cannot have multiple DTDs. + + + Root element name must match the DocType name. + + + General entity '{0}' references itself. + + + The base type is the final union. + + + Invalid attribute type. + + + The element {0} has invalid child element {1}. List of possible elements expected: {2}. + + + The base attribute '{0}' whose use = 'required' does not have a corresponding derived attribute while redefining attribute group '{1}'. + + + Only 'element' is valid as derived particle when the base particle is 'element'. + + + The base any attribute must be a superset of the derived 'anyAttribute'. + + + The actual length is greater than the MaxLength value. + + + Scientific notation is not allowed. + + + Serialization Assembly Name: {0}. + + + Unexpected end of file has occurred. + + + Negative values are prohibited. + + + Invalid character in the given encoding. + + + Circular substitution group affiliation. + + + '{0}' is not in the notation list. + + + Cannot merge schemas with targetNamespace='{0}'. Several mismatched declarations were found: {1} + + + 'xsl:when' must precede the 'xsl:otherwise' element. + + + The dt:values attribute is missing. + + + System does not support '{0}' encoding. + + + When both 'xsl:matching-string' and 'xsl:non-matching-string' elements are present, 'xsl:matching-string' element must come first. + + + Method '{1}' of extension object '{0}' cannot be called because it is generic. + + + The value '{0}' is invalid for dt:minLength. + + + Content model validation resulted in a large number of states, possibly due to large occurrence ranges. Therefore, content model may not be validated accurately. + + + There is an error in XML document ({0}, {1}). + + + SimpleType content is missing. + + + The attribute {0} is missing. + + + Abbreviated step '..' cannot be followed by a predicate. Use the full form 'parent::node()[predicate]' instead. + + + Member element {0}'s type cannot be derived by restriction or extension from head element {1}'s type, because it has block='restriction' or 'extension'. + + + The DataType value cannot be empty. + + + Double redefine for group. + + + Unexpected DTD declaration. + + + 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}. + + + 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. + + + The attributeGroup '{0}' has already been declared. + + + No stylesheet was loaded. + + + The named template '{0}' does not exist. + + + The MinLength constraining facet is prohibited for '{0}'. + + + The value '{0}' is invalid according to its data type. + + + Only XmlRoot attribute may be specified for the type {0}. Please use {1} to specify schema type. + + + There is no Unicode byte order mark. Cannot switch to Unicode. + + + The 'msxsl:script' element cannot be empty. + + + Selector cannot appear twice in one identity constraint. + + + The 'value' attribute must be present in facet. + + + XSLT compile error at {0}({1},{2}). See InnerException for details. + + + '{0}' is a duplicate attribute name. + + + The Length constraining facet is invalid - {0} + + + Cannot create an 'EntityReference' node with a name starting with '#'. + + + The element '{0}' is abstract or its type is abstract. + + + An 'Attributes' collection can only contain 'Attribute' objects. + + + The length constraining facet is prohibited for '{0}'. + + + Element '{0}' was not found. + + + The QName '{0}' cannot be represented as a String. A prefix for namespace '{1}' cannot be found. + + + Could not deserialize {0}. Parameterless constructor is required for collections and enumerators. + + + The MaxLength constraining facet is invalid - {0} + + + '{0}' is an invalid XPath for selector. Selector cannot have an XPath selection with an attribute node. + + + 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. + + + Cannot generate serialization assembly {0} because it already exists. Use /{1} to force an overwrite of the existing assembly. + + + Cannot serialize {0}. References in structs are not supported with encoded SOAP. + + + The Keyref '{0}' cannot find the referred key or unique in scope. + + + The standalone document declaration must have a value of 'no'. + + + The derived element {0} at ({1}, {2}) is not a valid restriction of the base sequence particle at ({3}, {4}) according to Elt:All/Choice/Sequence -- RecurseAsIfGroup. + + + The derived element {0} at ({1}, {2}) is not a valid restriction of the base choice particle at ({3}, {4}) according to Elt:All/Choice/Sequence -- RecurseAsIfGroup. + + + The derived element {0} at ({1}, {2}) is not a valid restriction of the base all particle at ({3}, {4}) according to Elt:All/Choice/Sequence -- RecurseAsIfGroup. + + + The XmlReader is closed or in error state. + + + The key sequence '{0}' in '{1}' Keyref fails to refer to some key. + + + The specified type is abstract: name='{0}', namespace='{1}', at {2}. + + + Cannot open '{0}'. The Uri parameter must be a file system relative or absolute path. + + + The '{0}' element is not declared. + + + The group ref to 'all' is not the root particle, or it is being used as an extension. + + + The '{0}' element already exists in the content model. + + + Invalid name character in '{0}'. The '{1}' character, hexadecimal value {2}, cannot be included in a name. + + + The '{0}' attribute is not declared. + + + Cannot convert a node-set which contains zero nodes or more than one node to a single node. + + + Instance validation error: '{0}' is not a valid value for {1}. + + + String literal was not closed. + + + XSLT function '{0}()' has the wrong number of arguments. + + + Element '{0}' cannot appear more than once if content model type is "all". + + + Schema Id is missing. The schema returned from {0}.GetSchema() must have an Id. + + + {0}as well as + + + The identity constraint '{0}' has already been declared. + + + It is an error if the derived 'minExclusive' facet value is greater than or equal to the parent 'maxExclusive' facet value. + + + Element should have prior schema information to call this method. + + + Circular identity constraint reference. + + + Expected a node test, found '{0}'. + + + The '{0}' property is read only and cannot be set. + + + The '{0}' character, hexadecimal value {1}, cannot be included in a name. + + + 'xsl:analyze-string' must contain either 'xsl:matching-string' or 'xsl:non-matching-string' elements or both. + + + Invalid XML attribute quote character. Valid attribute quote characters are ' and ". + + + '{1}' values must be unique within the same scope. Value '{0}' is in use. Please change '{1}' property on '{2}'. + + + The derived wildcard's namespace constraint must be an intensional subset of the base wildcard's namespace constraint, Any:Any -- NSSubset Rule2. + + + The derived wildcard's 'processContents' must be identical to or stronger than the base wildcard's 'processContents', where 'strict' is stronger than 'lax' and 'lax' is stronger than 'skip', Any:Any -- NSSubset Rule 3. + + + The derived wildcard's occurrence range is not a valid restriction of the base wildcard's occurrence range, Any:Any -- NSSubset Rule 1. + + + It is invalid to call the 'ValidateEndElement' overload that takes in a 'typedValue' after 'ValidateText' or 'ValidateWhitespace' methods have been called. + + + 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. + + + String comparison option(s) '{0}' are either invalid or cannot be used together. + + + The attribute value cannot be empty. + + + The empty string '' is not a valid name. + + + {0} + + + Cannot query the data source object referenced by URI '{0}', because the provided XmlResolver returned an object of type '{1}'. Only Stream, XmlReader, and IXPathNavigable data source objects are currently supported. + + + This is a duplicate FractionDigits constraining facet. + + + The xsi:type attribute value '{0}' is not valid for the element '{1}', either because it is not a type validly derived from the type in the schema, or because it has xsi:type derivation blocked. + + + The MaxInclusive constraining facet is prohibited for '{0}'. + + + The current position on the Reader is neither an element nor an attribute. + + + Cannot have both an extension object and a script implementing the same namespace '{0}'. + + + Expected 'Extension' within 'SimpleContent'. Schema was not created using this tool. + + + The group ref to 'all' must have {min occurs}= 0 or 1 and {max occurs}=1. + + + Type {0} is not supported because it has unbound generic parameters. Only instantiated generic types can be serialized. + + + Referenced type '{0}' is only valid for encoded SOAP. + + + Extension object '{0}' does not contain a matching '{1}' method that has {2} parameter(s). + + + Cannot generate serialization assembly '{0}' because a directory with the same name already exists. + + + Invalid xml:space syntax. + + + '{0}' is a duplicate template name. + + + '{0}' element children must precede all other children of the '{1}' element. + + + The variable or parameter '{0}' cannot have both a 'select' attribute and non-empty content. + + + Type of choice identifier '{0}' is inconsistent with type of '{1}'. Please use {2}. + + + Operation is not valid due to the current position of the navigator. + + + XmlArray and XmlArrayItem cannot be used in conjunction with XmlAttribute, XmlAnyAttribute, 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). + + + The group is not allowed when ElementType has empty or textOnly content. + + + There are multiple root elements in the output XML. + + + There was an error exporting '{0}': bare members cannot be attributes. + + + An internal error has occurred. + + + 'xsl:analyze-string' cannot have second child with name '{0}'. + + + 'All', 'any', and 'choice' are forbidden as derived particles when the base particle is 'sequence'. + + + 'Choice' or 'any' is forbidden as derived particle when the base particle is 'all'. + + + The field '{0}' is expecting at the most one value. + + + Collation language '{0}' is not supported. + + + XmlElement, XmlText, and XmlAnyElement cannot be used in conjunction with XmlAttribute, XmlAnyAttribute, XmlArray, or XmlArrayItem. + + + This mapping was not crated by reflection importer and cannot be used in this context. + + + The identity constraint '{0}' validation has failed. Either a key is missing or the existing key has an empty node. + + + Schema does not exist in the set. + + + The stylesheet is too complex. + + + The buffer is not large enough to fit a surrogate pair. Please provide a buffer of size at least 2 characters. + + + The MinInclusive constraining facet is prohibited for '{0}'. + + + The type {0} may not be serialized. + + + Every member of the derived group particle must be a valid restriction of the base wildcard, NSRecurseCheckCardinality Rule 1. + + + The derived particle's occurrence range at ({0}, {1}) is not a valid restriction of the base wildcard's occurrence range at ({2}, {3}), NSRecurseCheckCardinality Rule 2. + + + 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. + + + The variable '{0}' is undefined. + + + There is an error in the XML document. + + + Ambiguous method call. Extension object '{0}' contains multiple '{1}' methods that have {2} parameter(s). + + + Cannot insert the node in the specified location. + + + Parameter entity '{0}' references itself. + + + There is no element to infer schema. + + + 'restriction' or 'extension' child is required for complexType with simpleContent or complexContent child. + + + The element {0} has invalid child element {1}. + + + XmlWriterSettings.{0} can contain only valid XML text content characters when XmlWriterSettings.CheckCharacters is true. {1} + + + Type '{0}' is not declared, or is not a simple type. + + + The value of an 'default-collation' attribute contains no recognized collation URI. + + + Functions may not have more than 65535 parameters. + + + Default attribute '{0}' for element '{1}' could not be applied as the attribute namespace is not mapped to a prefix in the instance document. + + + SimpleType restriction should have either the base attribute or a simpleType child, but not both. + + + There is an unclosed literal string. + + + Standalone document declaration must have a value of 'no' because an external entity '{0}' is referenced. + + + The name of the source assembly. + + + This is an invalid xsi:type '{0}'. + + + Attribute '{0}' has namespace '{1}' but no prefix. + + + The fixed value constraint on the '{0}' attribute reference must match the fixed value constraint on the declaration. + + + Cannot validate '{0}' because its owner document is not the current document. + + + Missing '{0}' member needed for serialization of choice '{1}'. + + + The element {0} has invalid child element {1}. List of possible elements expected: {2}. {3} + + + 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. + + + Invalid XML document. {0} + + + The return value must be the first member. + + + The type attribute cannot be present with either simpleType or complexType. + + + The data type of the simple content is not a valid restriction of the base complex type. + + + Namespace prefix '{0}' is not defined. + + + Prefixes beginning with "xml" (regardless of whether the characters are uppercase, lowercase, or some combination thereof) are reserved for use by XML. + + + 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. + + + Multiple redefines of the same schema will be ignored. + + + The 'annotation' element cannot appear at this location. + + + Multiple definition of element '{0}' causes the content model to become ambiguous. A content model must be formed such that during validation of an element information item sequence, the particle contained directly, indirectly or implicitly therein with which to attempt to validate each item in the sequence in turn can be uniquely determined without examining the content or attributes of that item, and without any information about the items in the remainder of the sequence. + + + Complex content restriction or extension should consist of zero or one of 'group', 'choice', 'sequence', or 'all'; followed by zero or more 'attribute' or 'attributeGroup'; followed by zero or one 'anyAttribute'. + + + The 'xsl:apply-imports' instruction cannot be included within the content of an 'xsl:for-each' instruction or within an 'xsl:template' instruction without the 'match' attribute. + + + The element {0} has incomplete content. List of possible elements expected: {1}. {2} + + + {0} is an unsupported type. Please use [XmlIgnore] attribute to exclude members of this type from serialization graph. + + + '{0}' is an invalid name for processing instructions. + + + The SOAP-ENC:arrayType references type is named '{0}'; a type named '{1}' was expected at {2}. + + + The element '{0}' is missing. + + + The content model of a complex type must consist of 'annotation' (if present); followed by zero or one of the following: 'simpleContent', 'complexContent', 'group', 'choice', 'sequence', or 'all'; followed by zero or more 'attribute' or 'attributeGroup'; followed by zero or one 'anyAttribute'. + + + {0} cannot be serialized. Static types cannot be used as parameters or return types. + + + The maxOccurs attribute must have a value of 1 or *. + + + There was an error reflecting field '{0}'. + + + An 'xsl:apply-imports' element can only occur within an 'xsl:template' element with a 'match' attribute, and cannot occur within an 'xsl:for-each' element. + + + {0}='{1}' is not supported with rpc\literal SOAP. The wrapper element has to be unqualified. + + + '{0}' is an invalid XPath for selector or field. + + + 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 un-typed collections, such as ArrayLists. + + + Duplicate ID attribute. + + + Unexpected BinaryXml token. + + + Derived element '{0}' is not a valid restriction of base element '{1}' according to Elt:Elt -- NameAndTypeOK. + + + The 'redefine' element cannot appear at this location. + + + An error occurred during a call to extension function '{0}'. See InnerException for a complete description of the error. + + + line-feed (#xA) or tab (#x9) characters, leading or trailing spaces and sequences of one or more spaces (#x20) are not allowed in 'xs:token'. + + + Stylesheet or function parameter '{0}' cannot have attribute 'tunnel'. + + + The element '{0}' has been attributed with duplicate XmlAnyElementAttribute(Name="{1}", Namespace="{2}"). + + + The base type is the final extension. + + + Invalid attribute restriction. Derived attribute's type is not a valid restriction of the base attribute's type. + + + The '{0}' element has an invalid value according to its data type. + + + Schema attribute schemaLocation='{1}' is not supported on objects of type {0}. Please set {0}.Schema property. + + + If type is being redefined, the base type has to be self-referenced. + + + Invalid value of a character entity reference. + + + Simple content restriction must have a simple type child if the content type of the base type is not a simple type definition. + + + Cannot construct namespace declaration xmlns{0}{1}='{2}'. Prefix '{1}' is already mapped to namespace '{3}'. + + + XmlNodeType {0} is not supported for partial content parsing. + + + Two distinct members of the attribute uses must not have type definitions which are both xs:ID or are derived from xs:ID. + + + Invalid 'name' attribute value '{0}': '{1}'. + + + FractionDigits should be equal to 0 on types other then decimal. + + + The whitespace character, '{0}', is invalid. + + + Only TypeKind.Root can be set for typeof(object) which is never value type. + + + This node is read-only. It cannot be modified. + + + The '{0}' Keyref can refer to key or unique only. + + + Schema with targetNamespace='{0}' has invalid syntax. {1} + + + Value of parameter '{0}' cannot be specified more than once within a single 'xsl:call-template' or 'xsl:apply-templates' element. + + + The 'Attribute' node cannot be inserted because it is already an attribute of another element. + + + The MaxExclusive constraining facet is invalid - {0} + + + 'anyAttribute' must be the last child. + + + Type '{0}' is not a compiled stylesheet class. + + + It is an error if the derived 'minExclusive' facet value is less than or equal to the parent 'minInclusive' facet value. + + + Cannot bind to the reserved namespace. + + + The attribute '{0}' already exists. + + + Incomplete entity contents. + + + The variable or parameter '{0}' was duplicated with the same import precedence. + + + An XML comment cannot contain '--', and '-' cannot be the last character. + + + Attribute and namespace nodes cannot be added to the parent element after a text, comment, pi, or sub-element node has already been added. + + + The prefix '{0}' in XPath cannot be resolved. + + + You must implement public static {0}({1}) method on {2}. + + + An element declared at the top level of a schema cannot have maxOccurs > 1. Provide a wrapper element for '{0}' by using XmlArray or XmlArrayItem instead of XmlElementAttribute, or by using the Wrapped parameter style. + + + The SchemaLocation '{0}' is an invalid URI. + + + --- End of inner exception stack trace --- + + + Cannot resolve external DTD subset - public ID = '{0}', system ID = '{1}'. + + + Unsupported sort option '{0}' in collation. + + + Member {0}.{1} of type {2} hides base class member {3}.{4} of type {5}. Use XmlElementAttribute or XmlAttributeAttribute to specify a new name. + + + Group {0} is missing. + + + No element type can have more than one NOTATION attribute specified. + + + This document already has an 'XmlDeclaration' node. + + + The global element '{0}' has already been declared. + + + The element {0} cannot contain text. List of possible elements expected: {1}. + + + The target namespace of an attribute declaration, whether local or global, must not match http://www.w3.org/2001/XMLSchema-instance. + + + This element was named '{0}' from namespace '{1}' but should have been named '{2}' from namespace '{3}'. + + + The value 'xmlns' cannot be used as the name of an attribute declaration. + + + 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. + + + The '{0}' attribute is ignored, because the value of 'prohibited' for attribute use only prevents inheritance of an identically named attribute from the base type definition. + + + Using {0} as a base type for a class is not supported by XmlSerializer. + + + There is a duplicate key sequence '{0}' for the '{1}' key or unique identity constraint. + + + The '{0}' attribute has an invalid value according to its data type. + + + Unexpected XML declaration. The XML declaration must be the first node in the document, and no whitespace characters are allowed to appear before it. + + + The default value '{0}' of element '{1}' is invalid according to the type specified by xsi:type. + + + The type {0} may not be used in this context. + + + All script blocks implementing the namespace '{0}' must use the same language. + + + XsltContext is needed for this query because of an unknown function. + + + ']]>' is not allowed in character data. + + + No content generated as the result of the operation. + + + '{0}' is an invalid value for the 'encoding' attribute. The encoding cannot be switched after a call to ResetState. + + + Name cannot begin with the '{0}' character, hexadecimal value {1}. + + + Cannot serialize interface {0}. + + + ']]>' is not expected. + + + '{0}' has an invalid token. + + + Invalid high surrogate character (0x{0}). A high surrogate character must have a value from range (0xD800 - 0xDBFF). + + + The attribute group {0} is missing. + + + Reference to undeclared ID is '{0}'. + + + The element '{0}' cannot have both a 'select' attribute and non-empty content. + + + 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}'. + + + This is a duplicate MaxExclusive constraining facet. + + + The Enumeration constraining facet is invalid - {0} + + + 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 default value of '{0}' attribute is invalid according to its datatype. + + + '{0}' cannot be a child of the '{1}' element. + + + Member '{0}.{1}' hides inherited member '{2}.{3}', but has different custom attributes. + + + Circular reference in derivation of IXmlSerializable type '{0}'. + + + To use a result tree fragment in a path expression, first convert it to a node-set using the msxsl:node-set() function. + + + 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}'. + + + It is an error if the derived 'maxInclusive' facet value is greater than or equal to the parent 'maxExclusive' facet value. + + + 'simpleType' should be the first child of restriction. + + + The collation '{0}' is not supported. + + + Undefined complexType '{0}' is used as a base for complex type restriction. + + + Cannot convert the operand to a node-set. + + + String must be exactly one character long. + + + Prefix '{0}' cannot be mapped to namespace name reserved for "xml" or "xmlns". + + + Invalid content type derivation by restriction. {0} + + + '{0}' is an invalid attribute for the '{1}' element. + + + The input document has exceeded a limit set by {0}. + + + The element {0} cannot contain text. + + + Right curly brace in the attribute value template '{0}' must be doubled. + + + Fragment identifier '{0}' cannot be part of the system identifier '{1}'. + + + The XPath for selector or field cannot be empty. + + + Only XmlEnum may be used on enumerated constants. + + + Value cannot be null. + + + The order attribute must have a value of 'seq', 'one', or 'many', not '{0}'. + + + Cannot insert a node or any ancestor of that node as a child of itself. + + + The model attribute must have a value of open or closed, not '{0}'. + + + All particles in the {particles} of the base particle which are not mapped to by any particle in the {particles} of the derived particle should be emptiable - All:All,Sequence:Sequence -- Recurse Rule 2 / Choice:Choice -- RecurseLax. + + + An 'xsl:template' element without a 'match' attribute cannot have a 'priority' attribute. + + + Schema item '{1}' from namespace '{0}'. {2} + + + This is an unknown facet. + + + Expecting an external identifier or an entity value. + + + Function '{0}()' has failed. + + + The group '{0}' has already been declared. + + + AVT cannot be nested in AVT '{0}'. + + + If the derived content type is Mixed, then the base content type should also be Mixed according to rule 5.4 of Schema Component Constraint: Derivation Valid (Restriction, Complex). + + + The 'use' attribute must be optional (or absent) if the default attribute is present. + + + The '{0}' attribute is invalid - The value '{1}' is invalid according to its datatype '{2}' - {3} + + + If the derived content type is Empty, then the base content type should also be Empty or Mixed with Emptiable particle according to rule 5.3 of Schema Component Constraint: Derivation Valid (Restriction, Complex). + + + {0} Line {1}, position {2}. + + + Cannot serialize object of type '{0}'. The object does not have serializable members. + + + The values 'substitution', 'list', and 'union' are invalid for the final attribute on complexType. + + + '{1}' is an invalid value for the '{0}' attribute. + + + Scripting language '{0}' is not supported. + + + Invalid '{0}' attribute: '{1}'. + + + The supplied schema contains particles other than Sequence and Choice. Only schemas generated by this tool are supported. + + + Cannot deserialize type '{0}' because it contains property '{1}' which has no public setter. + + + Root element is missing. + + + An attribute or element of type xs:ID or derived from xs:ID, should not have a value constraint. + + + The element, {0}, from namespace, {1}, was imported in two different contexts: ({2}, {3}). + + + Expression must evaluate to a node-set. + + + Identifier '{0}' is not CLS-compliant. + + + An array of type {0} may not be used with XmlArrayType.Soap. + + + '{0}' is a duplicate notation value. + + + Element's type does not allow fixed or default value constraint. + + + Validate and CheckValidity are only allowed on Root or Element nodes. + + + It is an error if the derived 'maxExclusive' facet value is greater than or equal to the parent 'maxInclusive' facet value. + + + Extension function parameters or return values which have Clr type '{0}' are not supported. + + + Facet should go before 'attribute', 'attributeGroup', or 'anyAttribute'. + + + The node is not an expandable 'EntityReference' node. + + + The value of the '{0}' attribute does not equal its fixed value. + + + {0}.{1}() must return a valid type name. + + + This is a duplicate WhiteSpace constraining facet. + + + '{0}' is an invalid language identifier. + + + The MinExclusive constraining facet is prohibited for '{0}'. + + + The schema could not be removed because other schemas in the set have dependencies on this schema or its imports. + + + The node to be removed is not a child of this node. + + + Invalid namespace declaration. + + + The string for whitespace contains an invalid character. + + + Element is not allowed when the content is empty or textOnly. + + + Element '{0}' cannot substitute in place of head element '{1}' because it has block='substitution'. + + + The actual length is less than the MinLength value. + + + The values 'substitution', 'list', and 'union' are invalid for the final attribute on element. + + + An XmlSchemaSet is only allowed as a parameter on the Root node. + + + The Whitespace or SignificantWhitespace node can contain only XML whitespace characters. '{0}' is not an XML white space character. + + + An error has occurred while opening external DTD '{0}': {1} + + + Data source '{0}' cannot be located. + + + Cannot serialize member '{0}' of type '{1}', see inner exception for more details. + + + Attribute reference '{0}' declared in schema type '{1}' from namespace '{2}'. + + + WriteStartDocument cannot be called on writers created with ConformanceLevel.Fragment. + + + This is a duplicate TotalDigits constraining facet. + + + There can be no type value when attribute is 'xsi:nil' and has value 'true'. + + + The derived sequence particle at ({0}, {1}) is not a valid restriction of the base choice particle at ({2}, {3}) according to Sequence:Choice -- MapAndSum. + + + '{0}' is an unexpected token. Expecting whitespace. + + + Access to directory {0} is denied. The process under which XmlSerializer is running does not have sufficient permission to access the directory. + + + Circular attribute reference. + + + The node must be either type XmlAttribute or a derived type. + + + Reference to invalid attribute '{0}'. + + + Unexpected end of file while parsing {0} has occurred. + + + Public attribute '{0}' is an invalid URI. + + + List of modes in 'xsl:template' element can't be empty. + + + Reference to an unparsed entity, '{0}'. + + + This is a duplicate MinLength constraining facet. + + + The value specified for 'minInclusive' cannot be greater than the value specified for 'maxExclusive' for the same data type. + + + The '{0}' element is invalid - The value '{1}' is invalid according to its datatype '{2}' - {3} + + + The namespace, {0}, is a duplicate. + + + A reference to attribute set '{0}' cannot be resolved. An 'xsl:attribute-set' of this name must be declared at the top level of the stylesheet. + + + Markup for unspecified default attribute '{0}' is external and standalone='yes'. + + + Cannot serialize {0}. Nested structs are not supported with encoded SOAP. + + + Method '{1}' of extension object '{0}' cannot be called because it has one or more ByRef parameters. + + + Prefix "xml" is reserved for use by XML and can be mapped only to namespace name "http://www.w3.org/XML/1998/namespace". + + + Reference to undeclared attribute group '{0}'. + + + The datatype '{0}' is missing. + + + Xml type '{0}' does not support a conversion from Clr type '{1}' to Clr type '{2}'. + + + Invalid namespace in 'anyAttribute'. + + + Value '{0}' was either too large or too small for {1}. + + + Empty choice cannot be satisfied if 'minOccurs' is not equal to 0. + + + The element '{0}' cannot contain child element '{1}' because the parent element's content model is text only. + + + 'All' or 'any' is forbidden as derived particle when the base particle is 'choice'. + + + The values 'list' and 'union' are invalid for the blockDefault attribute. + + + Element '{0}' must have either 'select' attribute or non-empty content. + + + any element in namespace '{0}' + + + The element cannot contain comment or processing instruction. Content model is empty. + + + Attribute '{0}' of 'xsl:output' cannot be defined more than once with the same import precedence. + + + Decimal format '{0}' has a duplicate declaration. + + + Invalid XmlSerializerAssemblyAttribute usage. Please use {0} property or {1} property. + + + Could not find schema information for the attribute '{0}'. + + + Format string should have at least one digit or zero digit. + + + Format '{0}' has two pattern separators. + + + Format '{0}' cannot have zero digit symbol after digit symbol after decimal point. + + + Format '{0}' cannot have digit symbol after zero digit symbol before a decimal point. + + + Format '{0}' cannot have two decimal separators. + + + An 'xsl:template' element without a 'match' attribute cannot have a 'mode' attribute. + + + Circular attribute group reference. + + + The 'InnerText' of an 'Entity' node is read-only and cannot be set. + + + '{0}' is an invalid value for the {1} property. The property may only be specified for primitive types. + + + Collation option '{0}' cannot have the value '{1}'. + + + Only 'child' and 'attribute' axes are allowed in a pattern outside predicates. + + + 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. + + + '{0}()' is an unknown XSLT function. + + + The type {0} may not be serialized with SOAP-encoded messages. Set the Use for your message to Literal. + + + {0}. {1} already has attributes. + + + An error occurred while parsing EntityName. + + + The 'required' attribute must not be specified for parameter '{0}'. Function parameters are always mandatory. + + + Invalid or missing value of the choice identifier '{1}' of type '{0}[]'. + + + The targetNamespace '{0}' of included/redefined schema should be the same as the targetNamespace '{1}' of the including schema. + + + '{0}', hexadecimal value {1}, is an invalid character. + + + Unexpected node type {0}. {1} method can only be called on elements with simple or empty content. + + + The minOccurs attribute must have a value of 0 or 1. + + + The surrogate pair is invalid. Missing a low surrogate character. + + + The xsi:type '{0}' cannot be abstract. + + + The XML element named '{0}' from namespace '{1}' is already present in the current scope. + + + '{0}' is an invalid language identifier. + + + Particle cannot exist along with 'ContentModel'. + + + The MinInclusive constraint failed. + + + Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function. + + + The braces are not closed in AVT expression '{0}'. + + + There was an error reflecting property '{0}'. + + + Namespace '{0}' is not available to be referenced in this schema. + + + Cannot change conformance checking to {0}. Make sure the ConformanceLevel in XmlReaderSettings is set to Auto for wrapping scenarios. + + + Invalid QName ID. + + + ReadContentAsBase64 and ReadContentAsBinHex method calls cannot be mixed with calls to ReadElementContentAsBase64 and ReadElementContentAsBinHex. + + + Missing schema targetNamespace="{0}". + + + Expecting an internal subset or the end of the DOCTYPE declaration. + + + '{0}' is an invalid attribute type. + + + Invalid particle derivation by restriction. + + + ReadValueChunk method is not supported on this XmlReader. Use CanReadValueChunk property to find out if an XmlReader implements it. + + + The 'include' element cannot appear at this location. + + + Cannot set the 'InnerXml' for the current node because it is either read-only or cannot have children. + + + 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. + + + An 'xsl:choose' element can have only one 'xsl:otherwise' child. + + + XmlNamespaceDeclarations attribute cannot be used in conjunction with any other custom attributes. + + + The notation '{0}' has already been declared. + + + Expected ComplexType. Schema was not generated using this tool. + + + Enumeration has already finished. + + + Wildcards '{0}' and '{1}' have not empty intersection, and causes the content model to become ambiguous. A content model must be formed such that during validation of an element information item sequence, the particle contained directly, indirectly or implicitly therein with which to attempt to validate each item in the sequence in turn can be uniquely determined without examining the content or attributes of that item, and without any information about the items in the remainder of the sequence. + + + The 'xsl:template' instruction must have the 'match' and/or 'name' attribute present. + + + No simple type to redefine. + + + The '{0}' attribute of 'xsl:decimal-format' cannot be redefined with a value of '{1}'. + + + Collation option '{0}' is invalid. Options must have the following format: <option-name>=<option-value>. + + + The second character surrogate pair is not in the input buffer to be written. + + + The function '{0}()' is undefined. + + + The method for enum {0} is missing. + + + {0} may not be used on parameters or return values when they are not wrapped. + + + The global attribute '{0}' has already been declared. + + + Attribute '{0}' is not permitted in basic XSLT processor (http://www.w3.org/TR/xslt20/#dt-basic-xslt-processor). + + + A schema error occurred. + + + It is an error if 'whiteSpace' is among the members of {facets} of {base type definition}, {value} is 'replace' or 'preserve', and the {value} of the parent 'whiteSpace' is 'collapse'. + + + It is an error if 'whiteSpace' is among the members of {facets} of {base type definition}, {value} is 'preserve', and the {value} of the parent 'whiteSpace' is 'replace'. + + + The TotalDigits constraining facet is invalid - {0} + + + Cannot serialize member '{0}' of type {1}. SoapAttribute cannot be used to encode complex types. + + + 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 value 'substitution' is invalid for the finalDefault attribute. + + + The WhiteSpace constraining facet is prohibited for '{0}'. + + + Carriage return (#xD), line feed (#xA), and tab (#x9) characters are not allowed in xs:normalizedString. + + + Executing a stylesheet that was compiled using a later version of the framework is not supported. Stylesheet Version: {0}. Current Framework Version: {1}. + + + At least one field must be present. + + + '{0}' is an unexpected token. The expected token is '{1}'. + + + '{0}' is an unexpected token. The expected token is '{1}' or '{2}'. + + + Extension namespace cannot be 'null' or an XSLT namespace URI. + + + The TotalDigits constraining facet is prohibited for '{0}'. + + + Invalid particle derivation by restriction - '{0}'. + + + The type {0} was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically. + + + Cannot resolve entity reference '{0}'. + + + Data type should be enumeration when the values attribute is present. + + + Unsupported combination of validation types. + + + MinLength is greater than MaxLength. + + + An element or attribute information item has already been validated from the '{0}' namespace. It is an error if 'xsi:schemaLocation', 'xsi:noNamespaceSchemaLocation', or an inline schema occurs for that namespace. + + + Invalid text declaration. + + + An XML error has occurred. + + + '{0}' is not a valid BinHex text sequence. + + + If the partial validation type is 'XmlSchemaElement' or 'XmlSchemaType', the 'ValidateAttribute' method cannot be called. + + + XML attributes may not be specified for the type {0}. + + + The variable or parameter '{0}' is either not defined or it is out of scope. + + + Illegal type derivation: Type '{0}' derives from anonymous type '{1}'. Please change '{1}' to be a named type by setting {2}={3} in the type definition. + + + The right curly brace in an attribute value template '{0}' outside an expression must be doubled. + + + '{0}' is an invalid XmlNodeType. + + + The referenced element with ID '{0}' was not found in the document. + + + Cannot assign object of type {0} to an object of type {1}. + + + The type Void is not valid in this context. + + + The value '{0}' is invalid for dt:maxLength. + + + Member '{0}' cannot be encoded using the XmlText attribute. You may use the XmlText attribute to encode primitives, enumerations, arrays of strings, or arrays of XmlNode. + + + Exported mappings must come from the same importer. + + + The Writer is closed or in error state. + + + Cannot find a {0} with name '{1}' to redefine. + + + Substitution group refers to '{0}', an undeclared element. + + + The Pattern constraint failed. + + + Reference to undeclared substitution group affiliation. + + + It is an error for both length and minLength or maxLength to be present. + + + The '{0}' value for the 'dateTimeOption' parameter is not an allowed value for the 'XmlDateTimeSerializationMode' enumeration. + + + Prefix '{0}' is not defined. + + + Only whitespace characters should be used. + + + The XPath query '{0}' is not supported. + + + '{0}' is not a supported language identifier. + + + Extension functions cannot return null values. + + + Schema item '{1}' named '{2}' from namespace '{0}'. {3} + + + Xml type '{0}' cannot convert to Clr type '{1}' unless the source value is a String or an XmlAtomicValue. + + + The string was not recognized as a valid Uri. + + + Although the '{0}' element's content type is mixed, it cannot have element children, because it has a fixed value constraint in the schema. + + + Reference to undeclared model group '{0}'. + + + The base type is the final list. + + + {0}.{1}() must return a valid type name. Type '{2}' cannot be found in the targetNamespace='{3}'. + + + Sgen utility failed to pregenerate serialization assembly for {0}. + + + Compilation of XSLT is not supported on this platform. + + + The ReadValueAsChunk method is not supported on node type {0}. + + + The values 'list' and 'union' are invalid for the block attribute on element. + + + Xml type '{0}' does not support Clr type '{1}'. + + + Cannot have '?>' inside an XML processing instruction. + + + Invalid wsd:arrayType syntax: '{0}'. + + + Internal Error: Unrecognized constant type {0}. + + + The type {0} is not supported because it implements IDictionary. + + + Value '{1}' of attribute '{0}' is not permitted in basic XSLT processor (http://www.w3.org/TR/xslt20/#dt-basic-xslt-processor). + + + This is a duplicate MinExclusive constraining facet. + + + The element {0} cannot substitute for a local element {1} expected in that position. + + + This attribute has no name. + + + The element {0} has incomplete content. + + + The partial validation type has to be 'XmlSchemaElement', 'XmlSchemaAttribute', or 'XmlSchemaType'. + + + Reference to an unknown data type, '{0}'. + + + Type {0} is missing enumeration value '{1}' for element '{2}' from namespace '{3}'. + + + Decimal format '{0}' is not defined. + + + Argument {1} of function '{0}()' cannot be converted to a node-set. + + + Invalid 'id' attribute value: {0} + + + Invalid content model. + + + Whitespace not allowed before '?', '*', or '+'. + + + The contents of '{0}' must be empty. + + + Namespace URI '{0}' is declared to be an alias for multiple different namespace URIs with the same import precedence. + + + Indentation value must be greater than 0. + + + Circular reference in the definition of variable '{0}'. + + + SimpleType list should have either the itemType attribute or a simpleType child, but not both. + + + The derived type and the base type must have the same content type. + + + Content must be "textOnly" when using DataType on an ElementType. + + + The xpath query is too complex. + + + The 'http://www.w3.org/TR/WD-xsl' namespace is no longer supported. + + + {0} is inaccessible due to its protection level. Only public types can be processed. + + + The default value constraint cannot be present on the '{0}' attribute reference if the fixed value constraint is present on the declaration. + + + The content attribute must have a value of 'textOnly', 'eltOnly', 'mixed', or 'empty', not '{0}'. + + + sequence expected to contain elements only. Schema was not created using this tool. + + + The 'EndValidation' method cannot not be called when all the elements have not been validated. 'ValidateEndElement' calls corresponding to 'ValidateElement' calls might be missing. + + + 'Entity' and 'Notation' nodes cannot be cloned. + + + Type '{0}' is not declared. + + + Stylesheet '{0}' cannot directly or indirectly include or import itself. + + + The current position of the navigator is missing a valid parent. + + + Invalid namespace in 'any'. + + + Internal error: missing generated method for {0}. + + + The '{0}' attribute has already been declared for this ElementType. + + + When group is redefined, the real value of both minOccurs and maxOccurs attribute must be 1 (or absent). + + + A circular reference was detected while serializing an object of type {0}. + + + Cannot set a value on node type '{0}'. + + + '{0}' cannot be a child of the '{1}' element. + + + The element 'xsl:perform-sort' cannot have 'select' attribute any content other than 'xsl:sort' and 'xsl:fallback' instructions. + + + The Writer is closed. + + + Data type has already been declared. + + + This is an unexpected token. The expected token is '{0}'. + + + Prefix "xmlns" is reserved for use by XML. + + + An 'xsl:choose' element must have at least one 'xsl:when' child. + + + The default value type, {0}, is unsupported. + + + SOAP-ENC:arrayType with multidimensional array found at {0}. Only single-dimensional arrays are supported. Consider using an array of arrays instead. + + + Cannot assign null value to an object of type {1}. + + + The specified type was not recognized: name='{0}', namespace='{1}', at {2}. + + + {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. + + + Abbreviated step '.' cannot be followed by a predicate. Use the full form 'self::node()[predicate]' instead. + + + Incomplete DTD content. + + + The content type of the base type must be a simple type definition or it must be mixed, and simpleType child must be present. + + + XmlAttribute and XmlAnyAttribute cannot be used with rpc\literal SOAP, you may use the following attributes: XmlArray, XmlArrayItem, or single XmlElement. + + + Arithmetic Overflow. + + + Element '{0}' with namespace name '{1}' was not found. + + + Reference to an undeclared entity, '{0}'. + + + It is an error if the derived 'minInclusive' facet value is less than or equal to the parent 'minExclusive' facet value. + + + Circular reference in the definition of attribute set '{0}'. + + + Cannot load the schema from the location '{0}' - {1} + + + 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}'. + + + Variables cannot be used within this expression. + + + Reference to undeclared parameter entity '{0}'. + + + XmlAttribute cannot be used to encode array of {1}, because it is marked with FlagsAttribute. + + + '{0}' is an invalid XPath expression. + + + The MaxInclusive constraining facet is invalid - {0} + + + The value specified for 'minExclusive' cannot be greater than the value specified for 'maxExclusive' for the same data type. + + + '{0}' is an invalid QName. + + + '{0}' is not a valid Base64 text sequence. + + + The XML element '{0}' from namespace '{1}' references a method and a type. Change the method's message name using WebMethodAttribute or change the type's root element using the XmlRootAttribute. + + + Variable or parameter '{0}' was duplicated within the same scope. + + + Type is incompatible. + + + Cannot use XmlNamespaceDeclarations attribute on member '{0}' of type {1}. This attribute is only valid on members of type {2}. + + + It is an error if the derived 'minInclusive' facet value is less than the parent 'minInclusive' facet value. + + + Ambiguous types specified for member '{0}'. Items '{1}' and '{2}' have the same type. Please consider using {3} with {4} instead. + + + Expected schema root. Make sure the root element is <schema> and the namespace is 'http://www.w3.org/2001/XMLSchema' for an XSD schema or 'urn:schemas-microsoft-com:xml-data' for an XDR schema. + + + It is an error if there is a stylesheet module in the stylesheet that specifies 'input-type-annotations'="strip" and another stylesheet module that specifies 'input-type-annotations'="preserve". + + + Circular element reference. + + + The maxLength value must be equal to or greater than the minLength value. + + + Cannot use wildcards at the top level of a schema. + + + The transition from the '{0}' method to the '{1}' method is not allowed. + + + The argument to function '{0}' in '{1}' cannot be converted to a node-set. + + + The named node is from a different document context. + + + Cannot pre-generate serializer for multiple assemblies. Type '{0}' does not belong to assembly {1}. + + + WriteStartDocument needs to be the first call. + + + The '{0}' attribute is not supported in this context. + + + Invalid syntax for a hexadecimal numeric entity reference. + + + '{0}' is not a supported encoding name. + + + '{0}' is not a supported output method. Supported methods are 'xml', 'html', and 'text'. + + + It is invalid to call the 'ValidateEndElement' overload that takes in a 'typedValue' for elements with complex content. + + + 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. + + + Missing required command-line argument: {0}. + + + The element name '{0}' does not match the name '{1}' of the 'XmlSchemaElement' set as a partial validation type. + + + '{0}' is an invalid key pattern. It either contains a variable reference or 'key()' function. + + + Warning as Error: {0} + + + XmlWriterSettings.{0} can contain only valid XML whitespace characters when XmlWriterSettings.CheckCharacters and XmlWriterSettings.NewLineOnAttributes are true. + + + Expecting external ID, '[' or '>'. + + + Conditional sections must specify the keyword 'IGNORE' or 'INCLUDE'. + + + Check content definition of schema type '{0}' from namespace '{1}'. {2} + + + 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. + + + The value '{0}' is invalid according to its schema type '{1}' - {2} + + + '{0}' and content model are mutually exclusive. + + + any element + + + A conditional section is not allowed in an internal subset. + + + This document already has a 'DocumentElement' node. + + + Different schema types cannot be mixed. + + + The targetNamespace parameter '{0}' should be the same value as the targetNamespace '{1}' of the schema. + + + The '{0}' attribute cannot be present. + + + It is an error if 'length' is among the members of {facets} of {base type definition} and {value} is greater than the {value} of the parent 'length'. + + + Cannot serialize object of type {0}. Multidimensional arrays are not supported. + + + 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}'. + + + If ref is present, all of <complexType>, <simpleType>, <key>, <keyref>, <unique>, nillable, default, fixed, form, block, and type must be absent. + + + The derived particle cannot have more members than the base particle - All:All,Sequence:Sequence -- Recurse Rule 2 / Choice:Choice -- RecurseLax. + + + For element declaration, either the name or the ref attribute must be present. + + + Object type is not supported. + + + Cannot be nominated as the {substitution group affiliation} of any other declaration. + + + 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. + + + Reference to an invalid identity constraint, '{0}'. + + + Could not find schema information for the element '{0}'. + + + Type {0} is missing enumeration value '##any:' corresponding to XmlAnyElementAttribute. + + + The 'key()' function cannot be used in 'use' and 'match' attributes of 'xsl:key' element. + + + '{0}()' is an unsupported XSLT function. + + + Reference to invalid element '{0}'. + + + '{0}' element cannot have text node children. + + + The attribute local name cannot be empty. + + + Only the first 'xsl:sort' element may have 'stable' attribute. + + + Invalid namespace attribute: xmlns:{0}="". + + + Restriction of 'anySimpleType' is not allowed. + + + Cannot redefine a complex type as simple type. + + + The value of maxLength has already been declared. + + + The derived sequence particle at ({0}, {1}) is not a valid restriction of the base all particle at ({2}, {3}) according to Sequence:All -- RecurseUnordered. + + + Multiple self-reference within an attribute group is redefined. + + + The variable or parameter '{0}' was duplicated within the same scope. + + + Unexpected end of file has occurred. The following elements are not closed: {0} + + + The MaxExclusive constraint failed. + + + A parameter entity reference is not allowed in internal markup. + + + The value for the 'maxOccurs' attribute must be xsd:nonNegativeInteger or 'unbounded'. + + + XmlWriter cannot process the sequence returned by the query, because it contains an attribute or namespace node. + + + Ignoring invalid command line argument: '{0}'. + + + Cannot define fields before selector. + + + SOAP-ENC:arrayType was missing at {0}. + + + Cannot find a script or an extension object associated with namespace '{0}'. + + + An error has occurred while opening external entity '{0}': {1} + + + Elements and attributes cannot belong to the reserved namespace '{0}'. + + + The namespace declaration attribute has an incorrect 'namespaceURI': '{0}'. + + + ReadSubtree() can be called only if the reader is on an element node. + + + The attribute name '{0}' does not match the name '{1}' of the 'XmlSchemaAttribute' set as a partial validation type. + + + Cannot create node of type {0}. + + + You must implement a default accessor on {0} because it inherits from ICollection. + + + Circular group reference. + + + There is a missing element. + + + Cannot import a null node. + + + The {0} method is not supported on node type {1}. + + + Entity replacement text must nest properly within markup declarations. + + + Cannot serialize object of type '{0}' because it has multiple XmlNamespaceDeclarations attributes. + + + Not the same name table. + + + Top-level element '{0}' may not have a null namespace URI. + + + 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. + + + This document already has a 'DocumentType' node. + + + The value of the '{0}' attribute must be '{1}' or '{2}'. + + + Char is not a valid schema primitive and should be treated as int in DataContract + + + Function '{0}()' must have {1} argument(s). + + + Relative URIs are not supported. + + + The FractionDigits constraining facet is invalid - {0} + + + The element {0} has incomplete content - {2} + + + NOTATION cannot be used directly in a schema; only data types derived from NOTATION by specifying an enumeration value can be used in a schema. All enumeration facet values must match the name of a notation declared in the current schema. + + + No DTD found. + + + Derived attribute's use has to be required if base attribute's use is required. + + + Wildcard '{0}' allows element '{1}', and causes the content model to become ambiguous. A content model must be formed such that during validation of an element information item sequence, the particle contained directly, indirectly or implicitly therein with which to attempt to validate each item in the sequence in turn can be uniquely determined without examining the content or attributes of that item, and without any information about the items in the remainder of the sequence. + + + The complexType '{0}' has already been declared. + + + For attribute '{0}', either the name or the ref attribute must be present, but not both. + + + 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}'. + + + 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. + + + Cannot have ']]>' inside an XML CDATA block. + + + The Pattern constraining facet is prohibited for '{0}'. + + + This is a duplicate MaxLength constraining facet. + + + Array of type {0} is not supported. + + + Cannot convert the operand to 'Result tree fragment'. + + + This is a duplicate Length constraining facet. + + + The values 'substitution' and 'extension' are invalid for the final attribute on simpleType. + + + Data at the root level is invalid. + + + 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. + + + When the ref attribute is present, the type attribute and complexType, simpleType, key, keyref, and unique elements cannot be present. + + + Expected simple content. Schema was not created using this tool. + + + It is an error if 'maxLength' is among the members of {facets} of {base type definition} and {value} is greater than the {value} of the parent 'maxLength'. + + + The URL cannot be empty. + + + Warning: Cannot share {0} named '{1}' from '{2}' namespace. Several mismatched schema declarations were found. + + + There was an error exporting '{0}': bare members cannot contain text content. + + + Unexpected token '{0}' in the expression. + + + Cannot serialize {0}. Arrays of structs are not supported with encoded SOAP. + + + The occurrence range of element '{0}'is not a valid restriction of the wildcard's occurrence range in the base, Elt:Any -- NSCompat Rule2. + + + The namespace of element '{0}'is not valid with respect to the wildcard's namespace constraint in the base, Elt:Any -- NSCompat Rule 1. + + + The value of the '{0}' attribute cannot be empty. + + + The MinInclusive constraining facet is invalid - {0} + + + The namespace attribute '{0}' of an import should be the same value as the targetNamespace '{1}' of the imported schema. + + + Expecting '?', '*', or '+'. + + + 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/'. + + + A list data type must be derived from an atomic or union data type. + + + Type '{0}' is not serializable. + + + ReadElementContentAs() methods cannot be called on an element that has child elements. + + + Document cannot have multiple document elements. + + + Element '{0}' from namespace '{1}' is not a complex type and cannot be used as a {2}. + + + There was an error generating the XML document. + + + Execution of the 'document()' function was prohibited. Use the XsltSettings.EnableDocumentFunction property to enable it. + + + There was an error reflecting type '{0}'. + + + The node to be inserted is from a different document context. + + + The current node cannot contain other nodes. + + + There was an error reflecting '{0}'. + + + SOAP-ENC:arrayType must end with a ']' character. + + + An 'xsl:template' element without a 'match' attribute cannot have a 'mode' attribute. + + + If the 'nillable' attribute is false in the schema, the 'xsi:nil' attribute must not be present in the instance. + + + Cannot create a node without an owner document. + + + The {max occurs} of all the particles in the {particles} of an all group must be 0 or 1. + + + The {base type definition} must have an {attribute wildcard} and the {target namespace} of the R's {attribute declaration} must be valid with respect to that wildcard. + + + There was no XML start tag open. + + + ReadContentAsBase64 and ReadContentAsBinHex method calls cannot be mixed with calls to ReadChars, ReadBase64, and ReadBinHex. + + + The value of the namespace attribute of the element or attribute wildcard is invalid - {0} + + + Resolving of external URIs was prohibited. + + + Expected token '{0}', found '{1}'. + + + System attribute '{0}' is an invalid URI. + + + The element '{0}' cannot contain child element '{1}' because the parent element's content model is empty. + + + The content type of the base type must not be a simple type definition. + + + XSLT compile error. + + + Invalid serialization assembly: Required type {0} cannot be found in the generated assembly '{1}'. + + + The referenced element with ID '{0}' is located outside the current document and cannot be retrieved. + + + Either the memberTypes attribute must be non-empty or there must be at least one simpleType child. + + + All schemas in the set should be successfully preprocessed prior to compilation. + + + The enclosing <schema> must have a targetNamespace, if the Namespace attribute is absent on the import element. + + + Invalid reference id='{0}'. Object of type {1} cannot be stored in an array of this type. Details: array index={2}. + + + Document does not have a root element. + + + The attribute of type ID is already declared on the '{0}' element. + + + The following text is not allowed in this context: '{0}'. + + + 'all' must have 'minOccurs' value of 0 or 1. + + + 'all' must have {max occurs}=1. + + + Format cannot be empty. + + + '{0}' is an invalid XSLT pattern. + + + Invalid attribute restriction. Derived attribute's fixed value must be the same as the base attribute's fixed value. + + + Script block cannot implement the XSLT namespace. + + + Cannot add schema to compiled schemas collection. + + + A type with the name {0} has already been added in namespace {1}. + + + The Enumeration constraining facet is prohibited for '{0}'. + + + If ref is present, all of 'simpleType', 'form', 'type', and 'use' must be absent. + + + A reference to key '{0}' cannot be resolved. An 'xsl:key' of this name must be declared at the top level of the stylesheet. + + + This is an unclosed string. + + + Xml type 'List of {0}' does not support Clr type '{1}'. + + + It is an error if the derived 'minExclusive' facet value is less than the parent 'minExclusive' facet value. + + + Undefined complexType '{0}' is used as a base for complex type extension. + + + Cannot resolve the referenced document '{0}'. + + + Supplied XsltArgumentList does not contain a parameter with local name '{0}' and namespace '{1}'. + + + Type {0} cannot derive from {1} because it already has base type {2}. + + + DTD is not allowed in XML fragments. + + + The empty string '' is not a valid local name. + + + A circular type reference was detected in anonymous type '{0}'. Please change '{0}' to be a named type by setting {1}={2} in the type definition. + + + The element cannot contain whitespace. Content model is empty. + + + There is no reader from which to load the document. + + + DTD is prohibited in this XML document. + + + The contents of '{0}' are invalid. + + + 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}. + + + It is an error if the derived 'maxExclusive' facet value is greater than the parent 'maxExclusive' facet value. + + + Inference cannot handle entity references. Pass in an 'XmlReader' that expands entities. + + + The type {0} may not be exported to a schema because the IncludeInSchema property of the XmlType attribute is 'false'. + + + NOTATION must have either the Public or System attribute present. + + + Mandatory parameter '{0}' must be empty and must not have a 'select' attribute. + + + The current node cannot contain other nodes, so the node to be removed is not its child. + + + '{0}', hexadecimal value {1}, is an invalid attribute character. + + + Value '{0}' cannot be converted to {1}. + + + Double redefine for attribute group. + + + '{0}' does not represent any 'XmlNodeType'. + + + Selector must be present. + + + The simpleType '{0}' has already been declared. + + + Unexpected end tag. + + + The Pattern constraining facet is invalid - {0} + + + Multiple self-reference within a group is redefined. + + + Execution of scripts was prohibited. Use the XsltSettings.EnableScript property to enable it. + + + XmlReaderSettings.XmlNameTable must be the same name table as in XmlParserContext.NameTable or XmlParserContext.NamespaceManager.NameTable, or it must be null. + + + '{0}' is already used as an ID. + + + The value is too big to fit into an Int32. The arithmetic operation resulted in an overflow. + + + XPath Expression in AVT cannot be empty: '{0}'. + + + The required attribute must have a value of yes or no. + + + The values 'substitution', 'list', and 'union' are invalid for the block attribute on complexType. + + + The content model can only have one of the following; 'all', 'choice', or 'sequence'. + + + Unsupported BinaryXml codepage. + + + Cannot reconcile schema for '{0}'. Please use [XmlRoot] attribute to change default name or namespace of the top-level element to avoid duplicate element declarations: element name='{1}' namespace='{2}'. + + + The base type is final restriction. + + + SimpleType list should have either the itemType attribute or a simpleType child to indicate the itemType of the list. + + + The 'Text' node is not connected in the DOM live tree. No 'SplitText' operation could be performed. + + + The element {0} has invalid child element {1} - {2} + + + The '{0}' attribute has already been validated and is a duplicate attribute. + + + The field '{0}' is expecting an element or attribute with simple type or simple content. + + + Unexpected XmlNodeType: '{0}'. + + + Internal error: deserialization failed to advance over underlying stream. + + + Expected end of the expression, found '{0}'. + + + Whitespace cannot be stripped from input documents that have already been loaded. Provide the input document as an XmlReader instead. + + + Cannot serialize member {0} of type {1} because it is an interface. + + + minOccurs value cannot be greater than maxOccurs value. + + + The XML element named '{0}' from namespace '{1}' is already present in the current scope. Elements with the same name in the same scope must have the same type. + + + '{0}' is not a recognized extension element. + + + The '{0}' element has already been declared. + + + Type '{0}' from targetNamespace='{1}' has invalid definition: Circular type reference. + + + 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. + + + The MinExclusive constraint failed. + + + Function '{0}()' must have {1} or {2} argument(s). + + + FractionDigits is greater than TotalDigits. + + + The '{0}' identity constraint is not declared. + + + It is an error if the derived 'totalDigits' facet value is greater than the parent 'totalDigits' facet value. + + + Error: {0}. + + + The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type. + + + The Enumeration constraint failed. + + + If the partial validation type is 'XmlSchemaAttribute', the 'ValidateElement' method cannot be called. + + + NotInWriteState. + + + One or more assemblies referenced by the XmlSerializer cannot be called from partially trusted code. + + + An error occurred at {0}, ({1}, {2}). + + + There are multiple root elements. + + + Function '{0}()' must have no more than {2} arguments. + + + Namespace nodes cannot be added to the parent element after an attribute node has already been added. + + + The derived particle's range is not a valid restriction of the base particle's range according to All:All,Sequence:Sequence -- Recurse Rule 1 or Choice:Choice -- RecurseLax. + + + Cannot serialize member {0} of type {1}, because it implements IDictionary. + + + Type '{0}' was not found in the assembly '{1}'. + + + Wrong XML version information. The XML must match production "VersionNum ::= '1.' [0-9]+". + + + Syntax for an XML declaration is invalid. + + + XmlText may not be used on multiple parameters or return values. + + + Cannot call ResetState when parsing an XML fragment. + + + The required attribute '{0}' is missing. + + + Unsupported option '{0}' in collation. + + + Set XmlReaderSettings.Async to true if you want to use Async Methods. + + + The '{0}' element is not supported in this context. + + + Cannot pre-generate serialization assembly for type '{0}'. Pre-generation of serialization assemblies is not supported for dynamic types. Save the assembly and load it from disk to use it with XmlSerialization. + + + '{0}' is a duplicate XSD element. + + + The '{0}' notation is not declared. + + + No group to redefine. + + + Element '{0}' must have no character or element children. + + + The MaxLength constraining facet is prohibited for '{0}'. + + + '{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. + + + Prefix '{0}' is already assigned to namespace '{1}' and cannot be reassigned to '{2}' on this tag. + + + Reference to undeclared entity '{0}'. + + + Cannot load the stylesheet object referenced by URI '{0}', because the provided XmlResolver returned an object of type '{1}'. One of Stream, XmlReader, and IXPathNavigable types was expected. + + + Multiple accessors are not supported with rpc\literal SOAP, you may use the following attributes: XmlArray, XmlArrayItem, or single XmlElement. + + + BinaryXml Parser does not support initialization with XmlParserContext. + + + '{0}' is an invalid XSLT pattern. + + + Enum {0} cannot be converted to {1}. + + + The Namespace '{0}' is an invalid URI. + + + Schema information could not be found for the node passed into Validate. The node may be invalid in its current position. Navigate to the ancestor that has schema information, then call Validate again. + + + Enum values in the XmlChoiceIdentifier '{0}' have to be unique. Value '{1}' already present. + + + Query requires a default data source, but no default was supplied to the query engine. + + + The value specified for 'minInclusive' cannot be greater than the value specified for 'maxInclusive' for the same data type. + + + The 'anyAttribute' is not expressible. + + + CDATA end token is missing. + + + Invalid attribute restriction. Attribute restriction is prohibited in base type. + + + It is an error if the derived 'minInclusive' facet value is greater than or equal to the parent 'maxExclusive' facet value. + + + Operation is not valid due to the current state of the object. + + + The call to the '{0}' method does not match a corresponding call to 'ValidateElement' method. + + + The value of minLength has already been declared. + + + The value of the '{0}' attribute must be a single character. + + + The '{0}' and '{1}' attributes of 'xsl:decimal-format' must have distinct values. + + + There are more then one schema with targetNamespace='{0}'. + + + Expected EntityHandling.ExpandEntities or EntityHandling.ExpandCharEntities. + + + This element has no name. Please review schema type '{0}' from namespace '{1}'. + + + 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}'. + + + Namespace '{0}' has a duplicate implementation. + + + '{0}' is an invalid expression. + + + The FractionDigits constraining facet is prohibited for '{0}'. + + + List of modes in 'xsl:template' element can't contain token '#all' together with any other value. + + + List of modes in 'xsl:template' element can't contain duplicates ('{0}'). + + + Only SoapElementAttribute or SoapAttributeAttribute may be used on members. + + + Cannot include anonymous type '{0}'. + + + SOAP-ENC:arrayType could not handle '{1}' as the length of the array. + + + This is a duplicate MaxInclusive constraining facet. + + + Double redefine for complex type. + + + The literal in AVT expression is not correctly closed '{0}'. + + + The FractionDigits constraint failed. + + + Invalid attribute extension. + + + An undefined prefix is in use. + + + '{0}()' is an unsupported XSLT function. + + + Invalid BinaryXml protocol version. + + + An asynchronous operation is already in progress. + + + Cannot load the schema for the namespace '{0}' - {1} + + + Method '{1}' of extension object '{0}' cannot be called because it is not public. + + + 'restriction' or 'extension' child is required for complexType '{0}' in namespace '{1}', because it has a simpleContent or complexContent child. + + + Wrong value for the XML declaration standalone attribute of '{0}'. + + + Error: Type '{0}' could not be imported because it redefines inherited member '{1}' with a different type. '{1}' is declared as type '{3}' on '{0}', but as type '{2}' on base class '{4}'. + + + The fixed and default attributes cannot both be present. + + + An attribute with a local name 'xmlns' and a null namespace URI cannot be created. + + + The targetNamespace attribute cannot have empty string as its value. + + + Group '{0}' from targetNamespace='{1}' has invalid definition: Circular group reference. + + + The root element of a W3C XML Schema should be <schema> and its namespace should be 'http://www.w3.org/2001/XMLSchema'. + + + Cannot redefine a simple type as complex type. + + + No attribute group to redefine. + + + An item of type '{0}' cannot be constructed within a node of type '{1}'. + + + The schema items collection cannot contain an object of type 'XmlSchemaInclude', 'XmlSchemaImport', or 'XmlSchemaRedefine'. + + + The DTD has already been written out. + + + Generated serialization assembly for assembly {0} --> '{1}'. + + + The type '{0}' from namespace '{1}' was used in two different ways. + + + An attribute of type ID must have a declared default of either #IMPLIED or #REQUIRED. + + + The SOAP-ENC:arrayType references type is from namespace '{0}'; the namespace '{1}' was expected at {2}. + + + 'simpleType' should have only one child 'union', 'list', or 'restriction'. + + + Cannot find the script or external object that implements prefix '{0}'. + + + SimpleType restriction should have either the base attribute or a simpleType child to indicate the base type for the derivation. + + + The value of the '{0}' attribute cannot be empty. Use '#default' to specify the default namespace. + + + An error occurred while loading document '{0}'. See InnerException for a complete description of the error. + + + {0} method is not supported on this XmlReader. Use CanReadBinaryContent property to find out if a reader implements it. + + + The supplied xml instance is a schema or contains an inline schema. This class cannot infer a schema for a schema. + + + Type '{0}' from namespace '{1}' is not a complex type and cannot be used as a {2}. + + + The value specified for 'minExclusive' cannot be greater than the value specified for 'maxInclusive' for the same data type. + + + Validate method can be called only on nodes of type Document, DocumentFragment, Element, or Attribute. + + + The document does not have a root element. + + + 'xsl:key' has a 'use' attribute and has non-empty content, or it has empty content and no 'use' attribute. + + + Complex type expected to exist with at least one 'Element' at this point. + + + It is an error if there is a member of the attribute uses of a type definition with type xs:ID or derived from xs:ID and another attribute with type xs:ID matches an attribute wildcard. + + + The XmlReader passed in to construct this XmlValidatingReaderImpl must be an instance of a System.Xml.XmlTextReader. + + + Expected WhitespaceHandling.None, or WhitespaceHandling.All, or WhitespaceHandling.Significant. + + + Cannot generate serialization assembly '{0}' because directory {1} doesn't exist. + + + Invalid BinaryXml standalone token. + + + Value '#default' is used within the 'exclude-result-prefixes' attribute and the parent element of this attribute has no default namespace. + + + Stylesheet must start either with an 'xsl:stylesheet' or an 'xsl:transform' element, or with a literal result element that has an 'xsl:version' attribute, where prefix 'xsl' denotes the 'http://www.w3.org/1999/XSL/Transform' namespace. + + + Element reference '{0}' declared in schema type '{1}' from namespace '{2}'. + + + '{0}' is an unqualified name and cannot contain the character ':'. + + + Cannot serialize member of type {0}: XmlAnyElement can only be used with classes of type XmlNode or a type deriving from XmlNode. + + + It is an error if a union type has a member with variety union and this member cannot be substituted with its own members. This may be due to the fact that the union member is a restriction of a union with facets. + + + External entity '{0}' reference cannot appear in the attribute value. + + + 'xsl:template' must have either a 'match' attribute or a 'name' attribute, or both. + + + The XmlSchemaSet on the document is either null or has no schemas in it. Provide schema information before calling Validate. + + + The actual length is not equal to the specified length. + + + '{0}' is a duplicate enumeration value. + + + There must be no fixed value when an attribute is 'xsi:nil' and has a value of 'true'. + + + ReadValueChunk calls cannot be mixed with ReadContentAsBase64 or ReadContentAsBinHex. + + + '{0}' is not in the enumeration list. + + + 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). + + + Type of choice identifier '{0}' is inconsistent with type of '{1}'. Please use array of {2}. + + + Token {0} in state {1} would result in an invalid XML document. + + + Expression must evaluate to a node-set. + + + '{0}' is an undeclared prefix. + + + It is an error if the derived 'maxInclusive' facet value is greater than the parent 'maxInclusive' facet value. + + + It is an error if more than one attribute whose type is xs:ID or is derived from xs:ID, matches an attribute wildcard on an element. + + + It is invalid to call the '{0}' method in the current state of the validator. The '{1}' method must be called before proceeding with validation. + + + 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='{2}'. + + + SOAP-ENC:arrayType was empty at {0}. + + + Double redefine for simple type. + + + The value '{0}' is not valid according to any of the memberTypes of the union. + + + Explicit sequencing may not be used on parameters or return values. Please remove {0} property from custom attributes. + + + 'XmlSchemaSet' can load only W3C XML Schemas. + + + You need to add {0} to the '{1}' member. + + + Schema type information provided by {0} is invalid: {1} + + + Cannot write XML declaration. XML declaration can be only at the beginning of the document. + + + The '{0}' namespace is not defined. + + + Only SoapEnum may be used on enum constants. + + + Namespace attribute of an import must not match the real value of the enclosing targetNamespace of the <schema>. + + + The order must be many when content is mixed. + + + {0}='{1}' is not supported with rpc\literal SOAP. The wrapper element cannot be nullable. + + + The namespace attribute cannot have empty string as its value. + + + Internal error. + + + The local name for elements or attributes cannot be null or an empty string. + + + Xml type '{0}' cannot convert from Clr type '{1}' unless the destination type is String or XmlAtomicValue. + + + 'minInclusive' and 'minExclusive' cannot both be specified for the same data type. + + + Warning: {0}. + + + Content cannot be converted to the type {0}. + + + Cannot use a prefix with an empty namespace. + + + 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. + + + '{0}' has an invalid qualified name. + + + Invalid name character in '{0}'. + + + Multiple schemas with targetNamespace='{0}' returned by {1}.{2}(). Please use only the main (parent) schema, and add the others to the schema Includes. + + + The attribute '{0}' does not match one of the four allowed attributes in the 'xsi' namespace. + + + {0} cannot be serialized because it does not have a parameterless constructor. + + + Enumeration has not started. Call MoveNext. + + + Invalid content {0}. + + + '{0}.{1}' already has attributes. + + + An XmlSchemaSet must be provided to validate the document. + + + Missing mandatory attribute '{0}'. + + + Unable to parse data as SQL_DECIMAL. + + + Expected Element. Schema was not generated using this tool. + + + Cannot import nodes of type '{0}'. + + + The formatter {0} cannot be used for default values. + + + It is an error if 'minLength' is among the members of {facets} of {base type definition} and {value} is less than the {value} of the parent 'minLength'. + + + Circular type reference. + + + These members may not be derived. + + + Expected DTD markup was not found. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Reflection.Context.SR.resw b/obj/x86/Debug/FxResources.System.Reflection.Context.SR.resw new file mode 100644 index 0000000..6a5c1d1 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.Context.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 + + + Customized reflection contexts are only supported on .NET Framework. + + \ 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..63fa078 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.DispatchProxy.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 + + + This operation is not supported on .NET Standard as Reflection.Emit is not available. + + + 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..abd1c8f --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.Metadata.SR.resw @@ -0,0 +1,456 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + Expected array of size {0}. + + + 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. + + + Method body was created with no exception regions. + + + Expected signature header for '{0}', but found '{1}' (0x{2:x2}). + + + Specified label doesn't belong to the current builder. + + + Unsupported format version: {0} + + + Unexpected op-code: {0}. + + + The operation is not valid on this builder as it has been linked with another one. + + + Read out of bounds. + + + 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}. + + + Invalid exception region bounds: start offset ({0}) is greater than end offset ({1}). + + + Row count must be zero for table #{0}. + + + The value of field Characteristics in debug directory entry must be zero. + + + Data too big to fit in memory. + + + Unknown PE Magic value. + + + Missing mscorlib reference in AssemblyRef table. + + + Label {0} has not been marked. + + + Metadata tables too small. + + + Assembly already added. + + + Table row count space to small. + + + Declared size doesn't correspond to the actual size. + + + Can't get a heap offset for a virtual heap handle + + + Metadata table {0} not sorted. + + + Specified readers must be minimal delta metadata readers. + + + Invalid compressed integer. + + + Write out of bounds. + + + Expected array of length {0}. + + + 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. + + + Row count specified for table index {0} is out of allowed range. + + + Missing data directory. + + + 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. + + + Sequence point value is out of range. + + + Stream must support read and seek operations. + + + There are too many exception regions. + + + 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. + + + The Debug directory was not of type {0}. + + + The distance between the instruction {0} (offset {1}) and the target label doesn't fit the operand size: {2} + + + Stream header too small. + + + Metadata version too long. + + + 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}). + + + Image is too small. + + + Invalid token. + + + Unknown tables: 0x{0:x16}. + + + Blob is to large. + + + Section too small. + + + Invalid metadata section span. + + + Module already added. + + + Can't emit a branch or exception region, the current encoder not created with a control flow builder. + + + Not enough space for Metadata stream. + + + Handle belongs to a future generation + + + Expected list of size {0}. + + + Invalid type size. + + + 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. + + + Expected non-empty string. + + + 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. + + + Unexpected Embedded Portable PDB data signature value. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Reflection.TypeExtensions.SR.resw b/obj/x86/Debug/FxResources.System.Reflection.TypeExtensions.SR.resw new file mode 100644 index 0000000..7360e82 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Reflection.TypeExtensions.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 + + + System.Reflection.TypeExtensions is not supported on NET Standard 1.3 or 1.5. + + + There is no metadata token available for the given member. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Resources.Writer.SR.resw b/obj/x86/Debug/FxResources.System.Resources.Writer.SR.resw new file mode 100644 index 0000000..69a9e8b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Resources.Writer.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 + + + Stream was not writable. + + + Stream does not support seeking. + + + The resource writer has already been closed and cannot be edited. + + + Stream length must be non-negative and less than 2^31 - 1 - origin. + + + This platform does not support binary serialized resources. + + \ 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..7d520a5 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Extensions.SR.resw @@ -0,0 +1,429 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + Stream was not writable. + + + Invalid element name '{0}'. + + + Invalid element text '{0}'. + + + Empty path name is not legal. + + + Value must be positive. + + + Invalid element tag '{0}'. + + + The keys and values arrays have different sizes. + + + Entry point not found in assembly + + + Enumeration has not started. Call MoveNext. + + + Stream was not readable. + + + String cannot have zero length. + + + '{0}' must be non-negative. + + + Cannot read from a closed TextReader. + + + Stream does not support writing. + + + Key cannot be null. + + + The process cannot access the file because it is being used by another process. + + + Collection was of a fixed size. + + + Could not find a part of the path '{0}'. + + + An item with the same key has already been added. Key: {0} + + + Collection was modified; enumeration operation may not execute. + + + The usage of IKeyComparer and IHashCodeProvider/IComparer interfaces cannot be mixed; use one or the other. + + + '{0}' must be greater than zero. + + + Collection cannot be null. + + + Stream does not support seeking. + + + Attempted to access an unloaded AppDomain. + + + The path is not of a legal form. + + + Found invalid data while decoding. + + + Array is not long enough. Check array index and length. + + + Unable to find the specified file. + + + Not supported on this platform. + + + The Keys for this Hashtable are missing. + + + Specified file length was too large for the file system. + + + Illegal enum value: {0} + + + The specified file name or path is too long, or a component of the specified path is too long. + + + Unknown value for the ResourceScope: {0} Too many resource visibility bits may be set. + + + Value of flags is invalid. + + + FrameworkName version component is missing. + + + The UNC path should be of the form \\\\server\\share. + + + Cannot write to a closed TextWriter. + + + Code Access Security is not supported on this platform. + + + Unable to use cryptographic functionality. + + + 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. + + + 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. + + + 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. + + + ApplicationId cannot have an empty string for the name. + + + Access to the path '{0}' is denied. + + + Insertion index was out of range. Must be non-negative and less than or equal to size. + + + Computer name could not be obtained. + + + At least one object must implement IComparable. + + + AppDomain resource monitoring is not supported on this platform. + + + The type parameter cannot be null when scoping the resource's visibility to Private or Assembly. + + + Default principal object cannot be set twice. + + + The home directory of the current user could not be determined. + + + capacity was less than the current size. + + + Could not find a part of the path. + + + FrameworkName is invalid. + + + Attribute names must be unique. + + + The stream is currently in use by a previous operation on the stream. + + + Only single dimensional arrays are supported for the requested action. + + + Dictionary cannot be null. + + + Larger than collection size. + + + There are no context policies. + + + Load factor needs to be between 0.1 and 1.0. + + + Attempt to unload the AppDomain failed. + + + Non-negative number required. + + + Name: + + + Cannot access a closed Stream. + + + Path cannot be the empty string or all whitespace. + + + Insufficient state to return the real object. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Stream does not support reading. + + + 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. + + + Resource type in the ResourceScope enum is going from a more restrictive resource type to a more general one. From: "{0}" To: "{1}" + + + Invalid element value '{0}'. + + + Hashtable insert failed. Load factor too high. The most common cause is multiple threads writing to the Hashtable simultaneously. + + + Secondary AppDomains are not supported on this platform. + + + OnDeserialization method was called while the object was not being deserialized. + + + Array cannot be null. + + + Cannot have a null child. + + + Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table. + + + Illegal characters in path. + + + The Values for this Hashtable are missing. + + + Attempted to marshal an object across a context boundary. + + + One of the serialized keys is null. + + + FrameworkName version component is invalid. + + + Buffer cannot be null. + + + Positive number required. + + + OSVersion's call to GetVersionEx failed + + + Could not find file '{0}'. + + + Argument must be true. + + + Enumeration already finished. + + + Item has already been added. Key in dictionary: '{0}' Key being added: '{1}' + + + The specified operation is not supported on Ranges. + + + Unknown value for the ResourceScope: {0} Too many resource type bits may be set. + + + Enumeration has either not started or has already finished. + + + The parameter '{0}' cannot be an empty string. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw new file mode 100644 index 0000000..62c6ef8 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.RuntimeInformation.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 + + + Value cannot be empty. + + + RuntimeInformation is not supported for Portable Class Libraries. + + \ 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..ccf1074 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.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 + + + More than one ComEventInterfaceAttribute was found on the declaring interface of the event. + + + Non-negative number required. + + + Handle collector count overflows or underflows. + + + maximumThreshold cannot be less than initialThreshold. + + + Event invocation for COM objects requires event to be attributed with DispIdAttribute. + + + Event invocation for COM objects requires the declaring interface of the event to be attributed with ComEventInterfaceAttribute. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Runtime.InteropServices.WindowsRuntime.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.WindowsRuntime.SR.resw new file mode 100644 index 0000000..df4fd86 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.InteropServices.WindowsRuntime.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 + + + Operations with Windows Runtime are only supported on Windows platforms. + + \ 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.Formatters.SR.resw b/obj/x86/Debug/FxResources.System.Runtime.Serialization.Formatters.SR.resw new file mode 100644 index 0000000..fb4676e --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Serialization.Formatters.SR.resw @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 is missing for member of type Object '{0}'. + + + Object {0} has never been assigned an objectID. + + + Member '{0}' in class '{1}' is not present in the serialized stream and is not marked with {2}. + + + End of Stream encountered before parsing was completed. + + + {0}.SetObjectData returns a value that is neither null nor equal to the first parameter. Such Surrogates cannot be part of cyclical reference. + + + The object with ID {0} was referenced in a fixup but has not been registered. + + + Only FieldInfo, PropertyInfo, and SerializationMemberInfo are recognized. + + + Adding selector will introduce a cycle. + + + A fixup is registered to the object with ID {0}, but the object does not appear in the graph. + + + Unable to read beyond the end of the stream. + + + The input stream is not a valid binary format. The starting contents (in bytes) are: {0} ... + + + When supplying the ID of a containing object, the FieldInfo that identifies the current field within that object must also be supplied. + + + Array element type is Object, 'dt' attribute is null. + + + Cannot perform fixup. + + + Top object cannot be instantiated for element '{0}'. + + + MemberInfo requested for ISerializable type. + + + The ObjectManager found an invalid number of fixups. This usually indicates a problem in the Formatter. + + + Invalid element '{0}'. + + + Parameters 'members' and 'data' must have the same length. + + + Cross-AppDomain BinaryFormatter error; expected '{0}' but received '{1}'. + + + A member fixup was registered for an object which implements ISerializable or has a surrogate. In this situation, a delayed fixup must be used. + + + Invalid BinaryFormatter stream. + + + The implementation of the IObjectReference interface returns too many nested references to other objects that implement IObjectReference. + + + The object with ID {0} was referenced in a fixup but does not exist. + + + The FieldInfo object is not valid. + + + Invalid type code in stream '{0}'. + + + Invalid read type request '{0}'. + + + No MemberInfo for Object {0}. + + + No assembly ID for object type '{0}'. + + + Fixing up a partially available ValueType chain is not implemented. + + + Unable to load type {0} required for deserialization. + + + Invalid array type '{0}'. + + + Type '{0}' in Assembly '{1}' is not marked as serializable. + + + objectID cannot be less than or equal to zero. + + + Object IDs must be greater than zero. + + + Binary stream '{0}' does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization. + + + Types not available for ISerializable object '{0}'. + + + Only system-provided types can be passed to the GetUninitializedObject method. '{0}' is not a valid instance of a type. + + + A fixup on an object implementing ISerializable or having a surrogate was discovered for an object which does not have a SerializationInfo available. + + + Object has never been assigned an objectID. + + + When supplying a FieldInfo for fixing up a nested type, a valid ID for that containing object must also be supplied. + + + MemberInfo type {0} cannot be serialized. + + + The constructor to deserialize an object of type '{0}' was not found. + + + ValueType fixup on Arrays is not implemented. + + + The ID of the containing object cannot be the same as the object ID. + + + Parse error. Current element is not compatible with the next element, {0}. + + + No map for object '{0}'. + + + No top object. + + + Invalid write type request '{0}'. + + + The internal array cannot expand to greater than Int32.MaxValue elements. + + + Selector contained a cycle. + + + MemberInfo cannot be obtained for ISerialized Object '{0}'. + + + Invalid expected type. + + + No assembly information is available for object on the wire, '{0}'. + + + Type {0} and the types derived from it (such as {1}) are not permitted to be deserialized at this security level. + + + The object with ID {0} implements the IObjectReference interface for which all dependencies cannot be resolved. The likely cause is two instances of IObjectReference that have a mutual dependency on each other. + + + Attempting to deserialize an empty stream. + + + An object cannot be registered twice. + + + Unable to find assembly '{0}'. + + + Cannot supply both a MemberInfo and an Array to indicate the parent of a value type. + + + Member at position {0} was null. + + + Invalid ObjectTypeEnum {0}. + + + The given object does not implement the ISerializable interface. + + \ 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..98328cb --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.Serialization.Primitives.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 + + + Property 'Order' in DataMemberAttribute attribute cannot be a negative number. + + \ 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..c269628 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Runtime.WindowsRuntime.SR.resw @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + 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 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. + + + The process cannot access the file because it is being used by another process. + + + 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. + + + Could not find a part of the path '{0}'. + + + Cannot use the specified Stream as a Windows Runtime IRandomAccessStream because this Stream does not support seeking. + + + 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. + + + Inheritable is not a supported option. + + + 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. + + + Unable to find the specified file. + + + An IO error occurred in the Windows runtime system. + + + The specified file name or path is too long, or a component of the specified path is too long. + + + 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 whitespace only + + + An error has occurred. + + + 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. + + + Access to the path is denied. + + + The process cannot access the file '{0}' because it is being used by another process. + + + Encrypted is not a supported option. + + + 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.) + + + Access to the path '{0}' is denied. + + + 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. + + + Could not find a part of the path. + + + The requested invocation is not permitted because this IAsyncInfo instance has already been closed. + + + 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. + + + Cannot access a closed Stream. + + + Cannot seek to an absolute stream position that is negative. + + + The file '{0}' already exists. + + + Cannot create '{0}' because a file or directory with the same name already exists. + + + Stream does not support reading. + + + The requested operation cannot be performed because this stream has already been disposed. + + + 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. + + + 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. + + + 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. + + + Could not find file '{0}'. + + + 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. + + \ 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.AccessControl.SR.resw b/obj/x86/Debug/FxResources.System.Security.AccessControl.SR.resw new file mode 100644 index 0000000..50d8b33 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.AccessControl.SR.resw @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 must take place on the same thread on which the object was created. + + + Security descriptor with revision other than '1' are not legal. + + + The SDDL string contains an invalid sid or a sid that cannot be translated. + + + The object does not contain a security descriptor. + + + Unable to perform a security operation on an object that has no associated security. This can happen when trying to get an ACL of an anonymous kernel object. + + + The value '{0}' is not valid for this usage of the type {1}. + + + The binary form of an ACL object is invalid. + + + The process does not possess the '{0}' privilege which is required for this operation. + + + The binary form of an ACE object is invalid. + + + Type must be an IdentityReference, such as NTAccount or SecurityIdentifier. + + + Operation is not valid due to the current state of the object. + + + The named parameter must be a container ACL. + + + Object must be locked for read. + + + Destination array is not long enough to copy all the required data. Check array length and offset. + + + Illegal enum value: {0}. + + + Invalid name. + + + The 'set' method is not supported on this property. + + + User-defined ACEs must not have a well-known ACE type. + + + Enum value was out of legal range. + + + The audit rule is not the correct type. + + + The security identifier is not allowed to be the owner of this object. + + + The security identifier is not allowed to be the primary group of this object. + + + Must revert the privilege prior to attempting this operation. + + + Argument cannot be zero. + + + Access Control List (ACL) APIs are part of resource management on Windows and are not supported on this platform. + + + Length of the access control list exceed the allowed maximum. + + + The access rule is not the correct type. + + + No flags can be set. + + + The length of the array must be a multiple of {0}. + + + Object must be locked for read or write. + + + Non-negative number required. + + + Must set at least one flag. + + + Security descriptor must be in the self-relative form. + + + The SafeHandle is invalid. + + + The named parameter must be a directory-object ACL. + + + The named parameter must be a non-directory-object ACL. + + + Privilege '{0}' is not valid on this system. + + + Only single dimension arrays are supported here. + + + The supplied handle is invalid. This can happen when trying to set an ACL on an anonymous kernel object. + + + This access control list is not in canonical form and therefore cannot be modified. + + + The process does not possess some privilege required for this operation. + + + Adding ACEs with Object Flags and Object GUIDs is only valid for directory-object ACLs. + + + Method failed with unexpected error code {0}. + + + The named parameter must be a non-container ACL. + + + The length of the array must be between {0} and {1}, inclusive. + + + The pipe has been disconnected. + + + The SDDL form of a security descriptor object is invalid. + + \ 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..35e8477 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Claims.SR.resw @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 instance contains state that cannot be serialized and deserialized on this platform. + + + An Actor must not create a circular reference between itself (or one of its child Actors) and one of its parents. + + + 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..971419a --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Algorithms.SR.resw @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 specified DSA parameters are not valid; Seed, if present, must be 20 bytes long for keys shorter than 1024 bits. + + + The hash algorithm name cannot be null or empty. + + + The specified curve '{0}' or its parameters are not valid for this platform. + + + The system cryptographic library returned error '{0}' of type '{1}' + + + Value was invalid. + + + BlockSize must be 128 in this implementation. + + + The string contains a character not in the 7 bit ASCII character set. + + + No asymmetric key object has been associated with this formatter object. + + + Required object identifier (OID) cannot be found. + + + Specified key is not a valid size for this algorithm. + + + '{0}' is not a known hash algorithm. + + + ASN1 corrupted data. + + + Object contains only the public half of a key pair. A private key must also be provided. + + + The specified CipherMode '{0}' is not supported. + + + The specified DSA parameters are not valid; P, G and Y must be the same length (the key size). + + + 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. + + + The provided value of {0} bytes does not match the expected size of {1} bytes for the algorithm ({2}). + + + Salt is not at least eight bytes. + + + DSA keys can be imported, but new key generation is not supported on this platform. + + + 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. + + + The specified DSA parameters are not valid; Q and X (if present) must be the same length. + + + The specified DSA parameters are not valid; J (if present) must be shorter than P. + + + 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. + + + Encoded OID length is too large (greater than 0x7f bytes). + + + XML serialization of an elliptic curve key requires using an overload which specifies the XML format to be used. + + + The OID value was invalid. + + + Algorithms added to CryptoConfig must be accessable from outside their assembly. + + + 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. + + + Method not supported. + + + TransformBlock may only process bytes in block sized increments. + + + CryptoConfig cannot add a mapping for a null or empty name. + + + Specified padding mode is not valid for this algorithm. + + + Non-negative number required. + + + Object identifier (OID) is unknown. + + + 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. + + + This operation is not supported for this class. + + + 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. + + + Only named curves are supported on this platform. + + + The specified named curve parameters are not valid. Only the Oid parameter must be set. + + + The specified DSA parameters are not valid; Q must be 20 bytes long for keys shorter than 1024 bits. + + + The specified DSA parameters are not valid; P, Q, G and Y are all required. + + + The specified DSA parameters are not valid; Q's length must be one of 20, 32 or 64 bytes. + + + 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..c8e50a6 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Cng.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 + + + Specified padding mode is not valid for this algorithm. + + + The specified DSA parameters are not valid; Seed, if present, must be 20 bytes long for keys shorter than 1024 bits. + + + The hash algorithm name cannot be null or empty. + + + The specified curve '{0}' or its parameters are not valid for this platform. + + + 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. + + + The specified DSA parameters are not valid; P, G and Y must be the same length (the key size). + + + CNG provider unexpectedly terminated encryption or decryption prematurely. + + + The cipher mode specified requires that an initialization vector (IV) be used. + + + 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. + + + The specified DSA parameters are not valid; Q and X (if present) must be the same length. + + + The specified DSA parameters are not valid; J (if present) must be shorter than P. + + + Windows Cryptography Next Generation (CNG) is not supported on this platform. + + + Specified initialization vector (IV) does not match the block size for this algorithm. + + + The key blob format '{0}' is invalid. + + + Keys used with the RSACng algorithm must have an algorithm group of RSA. + + + 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. + + + 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. + + + TransformBlock may only process bytes in block sized increments. + + + Non-negative number required. + + + The method cannot be called with an invalid or closed SafeHandle. + + + The specified RSA parameters are not valid; both Exponent and Modulus are required fields. + + + The specified DSA parameters are not valid; Q must be 20 bytes long for keys shorter than 1024 bits. + + + The algorithm name '{0}' is invalid. + + + The specified DSA parameters are not valid; P, Q, G and Y are all required. + + + The specified DSA parameters are not valid; Q's length must be one of 20, 32 or 64 bytes. + + + The algorithm group '{0}' is invalid. + + + Unknown padding mode used. + + + Buffer cannot be null. + + + Keys used with the DSACng algorithm must have an algorithm group of DSA. + + + 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.Csp.SR.resw b/obj/x86/Debug/FxResources.System.Security.Cryptography.Csp.SR.resw new file mode 100644 index 0000000..94b043c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Csp.SR.resw @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + Value was invalid. + + + Specified key is not a valid size for this algorithm. + + + '{0}' is not a known hash algorithm. + + + Stream does not support writing. + + + Object contains only the public half of a key pair. A private key must also be provided. + + + The specified cryptographic service provider (CSP) does not support this key algorithm: {0}. + + + Value of '{0}' cannot be changed after the bytes have been retrieved. + + + Length of the DSA signature was not 40 bytes. + + + The Initialization vector should have the same length as the algorithm block size in bytes. + + + The cipher mode specified requires that an initialization vector (IV) be used. + + + EffectiveKeySize must be the same as KeySize in this implementation. + + + {0} algorithm hash size is {1} bytes. + + + CryptSetKeyParam failed with error code {0}. + + + Illegal enum value: {0}. + + + Specified initialization vector (IV) does not match the block size for this algorithm. + + + The requested key container was not found. + + + 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. + + + '{0}' requires Windows Cryptographic API (CAPI), which is not available on this platform. + + + Specified key is a known semi-weak key for '{0}' and cannot be used. + + + The data to be decrypted exceeds the maximum for this modulus of {0} bytes. + + + 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. + + + Object identifier (OID) is unknown. + + + CSPParameters cannot be null + + + Stream does not support reading. + + + Requested number of bytes exceeds the maximum. + + + Unknown padding mode used. + + + Positive number required. + + + Cannot open an invalid handle. + + \ 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..10f274b --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Encoding.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 + + + Value was invalid. + + + ASN1 corrupted data. + + + NoLength of the data to encrypt is invalid. + + + 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. + + + Cannot access a disposed object. + + + Only single dimensional arrays are supported for the requested action. + + + Non-negative number required. + + + 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..0fec158 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.Primitives.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 + + + 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. + + + Specified feedback size is not valid 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. + + + Hash must be finalized before the hash value is retrieved. + + + 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..9a46b45 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Cryptography.X509Certificates.SR.resw @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + The specified DSA parameters are not valid; Seed, if present, must be 20 bytes long for keys shorter than 1024 bits. + + + The requested notBefore value ({0}) is earlier than issuerCertificate.NotBefore ({1}). + + + The hash algorithm name cannot be null or empty. + + + The specified curve '{0}' or its parameters are not valid for this platform. + + + The system cryptographic library returned error '{0}' of type '{1}' + + + Only one certificate with a private key can be exported in a single PFX. + + + The issuer certificate does not have a Basic Constraints extension. + + + Unable to get file status. + + + The owner of '{0}' is not the current user. + + + X509Certificate is immutable on this platform. Use the equivalent constructor instead. + + + Enumeration has not started. Call MoveNext. + + + The requested notAfter value ({0}) is later than issuerCertificate.NotAfter ({1}). + + + The string contains a character not in the 7 bit ASCII character set. + + + Specified key is not a valid size for this algorithm. + + + String cannot be empty or null. + + + '{0}' is not a known hash algorithm. + + + The certificate export operation failed. + + + ASN1 corrupted data. + + + The provided issuer certificate does not have an associated private key. + + + Object contains only the public half of a key pair. A private key must also be provided. + + + The specified DSA parameters are not valid; P, G and Y must be the same length (the key size). + + + The X509 certificate store is read-only. + + + '{0}' is not a known key algorithm. + + + The certificate already has an associated private key. + + + Invalid directory permissions. The directory '{0}' must be readable, writable and executable by the owner. + + + The issuer certificate uses an RSA key but no RSASignaturePadding was provided to a constructor. If one cannot be provided, use the X509SignatureGenerator overload. + + + The Disallowed store is not supported on this platform, but already has data. All files under '{0}' must be removed. + + + Removing the requested certificate would modify admin trust settings, and has been denied. + + + The {0} value was invalid. + + + Invalid type. + + + The provided value of {0} bytes does not match the expected size of {1} bytes for the algorithm ({2}). + + + Invalid handle. + + + Unix LocalMachine X509Store is limited to the Root and CertificateAuthority stores. + + + DSA keys can be imported, but new key generation is not supported on this platform. + + + The X509 certificate store has not been opened. + + + The flags '{0}' may not be specified together. + + + The value predates 1950 and has no defined encoding. + + + The certificate has invalid policy. + + + The provided key does not match the public key for this certificate. + + + The Disallowed store is not supported on this platform. + + + The issuer certificate's Key Usage extension is present but does not contain the KeyCertSign flag. + + + Illegal enum value: {0}. + + + The specified DSA parameters are not valid; Q and X (if present) must be the same length. + + + The specified DSA parameters are not valid; J (if present) must be shorter than P. + + + The {0} value cannot be set on Unix. + + + Error occurred during a cryptographic operation. + + + The X509 certificate could not be added to the store because all candidate file names were in use. + + + Value of flags is invalid. + + + The platform does not have a definition for an X509 certificate store named '{0}' with a StoreLocation of '{1}', and does not support creating it. + + + 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 issuer certificate does not have an appropriate value for the Basic Constraints extension. + + + The chain context handle is invalid. + + + The provided PublicKey object is invalid, valid Oid and EncodedKeyValue property values are required. + + + An X509Extension with OID '{0}' has already been specified. + + + The OID value was invalid. + + + Access is denied. + + + The home directory of the current user could not be determined. + + + This method cannot be used since no signing key was provided via a constructor, use an overload accepting an X509SignatureGenerator instead. + + + This platform does not support loading with EphemeralKeySet. Remove the flag to allow keys to be temporarily created on disk. + + + 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. + + + Specified padding mode is not valid for this algorithm. + + + The string contains an invalid X500 name attribute key, oid, value or delimiter. + + + Object identifier (OID) is unknown. + + + Unknown error. + + + Removing the requested certificate would modify user trust settings, and has been denied. + + + CryptoApi ECDsa keys are not supported. + + + Invalid content type. + + + X509ContentType.SerializedCert and X509ContentType.SerializedStore are not supported on Unix. + + + The provided notBefore value is later than the notAfter value. + + + The specified RSA parameters are not valid; both Exponent and Modulus are required fields. + + + Only named curves are supported on this platform. + + + The specified DSA parameters are not valid; Q must be 20 bytes long for keys shorter than 1024 bits. + + + The specified DSA parameters are not valid; P, Q, G and Y are all required. + + + The X509 Basic Constraints extension with OID 2.5.29.10 is not supported. + + + The specified DSA parameters are not valid; Q's length must be one of 20, 32 or 64 bytes. + + + Invalid find value. + + + Non-negative number required. + + + The value of 'nameType' is invalid. + + + Cannot find the original signer. + + + The provided key does not match the public key algorithm for this certificate. + + + Cannot open an invalid handle. + + + Unix LocalMachine X509Stores are read-only for all users. + + + The issuer certificate public key algorithm ({0}) does not match the value for this certificate request ({1}), use the X509SignatureGenerator overload. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Security.Principal.Windows.SR.resw b/obj/x86/Debug/FxResources.System.Security.Principal.Windows.SR.resw new file mode 100644 index 0000000..ebe6f90 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Security.Principal.Windows.SR.resw @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 was invalid. + + + Some or all identity references could not be translated. + + + The number of sub-authorities must not exceed {0}. + + + Token cannot be zero. + + + Windows Principal functionality is not supported on this platform. + + + Improper types in collection. + + + Destination array is not long enough to copy all the required data. Check array length and offset. + + + Illegal enum value: {0}. + + + The domainSid parameter is not a valid Windows domain SID. + + + SIDs with revision other than '1' are not supported. + + + The size of the identifier authority must not exceed 6 bytes. + + + Collection must not be empty. + + + Unable to impersonate user. + + + Non-negative number required. + + + Account name is too long. + + + Invalid token for impersonation - it cannot be duplicated. + + + String cannot be of zero length. + + + The targetType parameter must be of IdentityReference type. + + + Domain name is too long. + + + The domainSid parameter must be specified for creating well-known SID of type {0}. + + + Well-known SIDs of type LogonIdsSid cannot be created. + + \ 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..42a5f05 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Text.Encoding.CodePages.SR.resw @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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}. + + + 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..7b4734d --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Text.RegularExpressions.SR.resw @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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}. + + + Destination array is not long enough to copy all the items in the collection. Check array index and length. + + + 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}. + + + Collection is read-only. + + + 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..6da0134 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.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 + + + 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 specified lock cookie is invalid for this operation. {0} + + + Value was either too large or too small for a UInt16. + + + Undo operation must be performed on the thread where the corresponding context was Set. + + + 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. + + + Must override both HostExecutionContextManager.SetHostExecutionContext and HostExecutionContextManager.Revert. + + + The operation was canceled. + + + Cannot apply a context that has been marshaled across AppDomains, that was not acquired through a Capture operation or that has already been the argument to a Set call. + + + Timeout value in milliseconds must be nonnegative and less than or equal to Int32.MaxValue, or -1 for an infinite timeout. + + + Recursive upgradeable lock acquisitions not allowed in this mode. + + + ReaderWriterLock.RestoreLock was called without releasing all locks acquired since the call to ReleaseLock. + + + The participantCount argument must be non-negative and less than or equal to 32767. + + + The operation has timed out. {0} + + + 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. + + + Attempt to release a lock that is not owned by the calling thread. {0} + + + (Exception from HRESULT: 0x{0:X}) + + \ 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..900c722 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.Tasks.Dataflow.SR.resw @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. + + + This member is not supported on this dataflow block. The block is intended for a specific purpose that does not utilize this member. + + + 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. + + + The SyncRoot property may not be used for the synchronization of concurrent collections. + + + Greedy must be true for this dataflow block. + + + To construct a DataflowMessageHeader instance, either pass a non-zero value or use the parameterless constructor. + + \ 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.Threading.Thread.SR.resw b/obj/x86/Debug/FxResources.System.Threading.Thread.SR.resw new file mode 100644 index 0000000..414bd05 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Threading.Thread.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 + + + Failed to set the specified COM apartment state. + + + Use CompressedStack.(Capture/Run) instead. + + + Thread suspend is not supported on this platform. + + + Nonnegative number required. + + + Enum value was out of legal range. + + + Timeout value in milliseconds must be nonnegative and less than or equal to Int32.MaxValue, or -1 for an infinite timeout. + + + Thread abort is not supported on this platform. + + + This operation must be performed on the same thread as that represented by the Thread instance. + + + COM interop is not supported on this platform. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.Transactions.Local.SR.resw b/obj/x86/Debug/FxResources.System.Transactions.Local.SR.resw new file mode 100644 index 0000000..fa22c9c --- /dev/null +++ b/obj/x86/Debug/FxResources.System.Transactions.Local.SR.resw @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 transaction has aborted. + + + DependentTransaction.Complete or CommittableTransaction.Commit has already been called for this transaction. + + + The operation is not valid for the current state of the enlistment. + + + The operation is not valid for the state of the transaction. + + + Com+ Interop features cannot be supported. + + + Transaction Timeout + + + Current cannot be set directly when Com+ Interop is enabled. + + + TransactionScope with TransactionScopeAsyncFlowOption.Enabled option is not supported when the TransactionScope is used within Enterprise Service context with Automatic or Full EnterpriseServicesInteropOption enabled in parent scope. + + + It is too late to add enlistments to this transaction. + + + The transaction is in doubt. + + + Communication with the underlying transaction manager has failed. + + + Transactions with IsolationLevel Snapshot cannot be promoted. + + + Resource Manager Identifiers cannot be Guid.Empty. + + + Transaction.Current has changed inside of the TransactionScope. + + + There is a promotable enlistment for the transaction which has a PromoterType value that is not recognized by System.Transactions. {0} + + + There was an unexpected failure of a timer. + + + TransactionScope nested incorrectly. + + + Internal Error + + + There was an unexpected failure of QueueUserWorkItem. + + + {0} Distributed Transaction ID is {1} + + + There was an error promoting the transaction to a distributed transaction. + + + The transaction specified for TransactionScope has a different IsolationLevel than the value requested for the scope. + + + The delegate for an external current can only be set once. + + + Transaction Manager in the Recovery Information does not match the configured transaction manager. + + + The Promote method returned an invalid value for the distributed transaction. + + + The argument is invalid. + + + The IAsyncResult parameter must be the same parameter returned by BeginCommit. + + + The RecoveryInformation provided is not recognized by this version of System.Transactions. + + + The specified PromoterType is invalid. + + + The specified IPromotableSinglePhaseNotification is not the same as the one provided to EnlistPromotableSinglePhase. + + + TransactionScope timer object is invalid. + + + The current TransactionScope is already complete. + + + The transaction returned from Promote already exists as a distributed transaction. + + + The current TransactionScope is already complete. You should dispose the TransactionScope. + + + This platform does not support distributed transactions. + + + A TransactionScope must be disposed on the same thread that it was created. + + + Volatile enlistments do not generate recovery information. + + + Valid TimeSpan values are greater than TimeSpan.Zero. + + \ No newline at end of file diff --git a/obj/x86/Debug/FxResources.System.ValueTuple.SR.resw b/obj/x86/Debug/FxResources.System.ValueTuple.SR.resw new file mode 100644 index 0000000..d8657b2 --- /dev/null +++ b/obj/x86/Debug/FxResources.System.ValueTuple.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 + + + The parameter should be a ValueTuple type of appropriate arity. + + + The TRest type argument of ValueTuple`8 must be a ValueTuple. + + \ No newline at end of file diff --git a/obj/x86/Debug/HospitalServerManager.csproj.CopyComplete b/obj/x86/Debug/HospitalServerManager.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache b/obj/x86/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4db7057 --- /dev/null +++ b/obj/x86/Debug/HospitalServerManager.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d88f1527b880fdca5afc6d73588e38eb445f8ca8 diff --git a/obj/x86/Debug/HospitalServerManager.csproj.FileListAbsolute.txt b/obj/x86/Debug/HospitalServerManager.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..230fc2c --- /dev/null +++ b/obj/x86/Debug/HospitalServerManager.csproj.FileListAbsolute.txt @@ -0,0 +1,304 @@ +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\App.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\HospitalServerManager.xr.xml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\HospitalServerManager.exe +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\HospitalServerManager.pdb +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\resources.pri +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\AppxManifest.xml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\Core\AppxManifest.xml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\Core\HospitalServerManager.exe +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\HospitalServerManager.build.appxrecipe +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\clrcompression.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\Microsoft.CSharp.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\Microsoft.VisualBasic.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\Microsoft.Win32.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.AppContext.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Buffers.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Collections.Concurrent.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Collections.Immutable.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Collections.NonGeneric.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Collections.Specialized.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Collections.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.Annotations.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.Composition.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.DataAnnotations.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.EventBasedAsync.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.TypeConverter.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ComponentModel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Configuration.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Console.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Core.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Data.Common.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Data.SqlClient.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Data.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.Contracts.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.Debug.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.DiagnosticSource.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.FileVersionInfo.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.Process.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.StackTrace.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.Tools.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.TraceSource.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Diagnostics.Tracing.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Drawing.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Drawing.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Dynamic.Runtime.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Globalization.Calendars.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Globalization.Extensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Globalization.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.Compression.FileSystem.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.Compression.ZipFile.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.Compression.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.FileSystem.DriveInfo.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.FileSystem.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.FileSystem.Watcher.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.FileSystem.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.IsolatedStorage.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.MemoryMappedFiles.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.Pipes.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.Ports.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.UnmanagedMemoryStream.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.IO.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Linq.Expressions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Linq.Parallel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Linq.Queryable.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Linq.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Http.Rtc.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Http.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.HttpListener.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Mail.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.NameResolution.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.NetworkInformation.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Ping.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Requests.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Security.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.ServicePoint.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.Sockets.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.WebClient.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.WebHeaderCollection.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.WebProxy.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.WebSockets.Client.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.WebSockets.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Net.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Numerics.Vectors.WindowsRuntime.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Numerics.Vectors.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Numerics.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ObjectModel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Private.DataContractSerialization.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Private.ServiceModel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Private.Uri.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Private.Xml.Linq.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Private.Xml.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Context.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.DispatchProxy.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Emit.ILGeneration.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Emit.Lightweight.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Emit.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Extensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Metadata.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.TypeExtensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Reflection.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Resources.Reader.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Resources.ResourceManager.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Resources.Writer.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.CompilerServices.VisualC.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Extensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Handles.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.InteropServices.WindowsRuntime.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.InteropServices.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Numerics.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Serialization.Formatters.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Serialization.Json.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Serialization.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Serialization.Xml.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.Serialization.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.WindowsRuntime.UI.Xaml.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.WindowsRuntime.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Runtime.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.AccessControl.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Claims.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.Algorithms.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.Cng.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.Csp.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.Encoding.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Cryptography.X509Certificates.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Principal.Windows.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.Principal.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.SecureString.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Security.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.Duplex.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.Http.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.NetTcp.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.Primitives.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.Security.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.Web.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceModel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ServiceProcess.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Text.Encoding.CodePages.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Text.Encoding.Extensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Text.Encoding.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Text.RegularExpressions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Overlapped.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Tasks.Dataflow.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Tasks.Extensions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Tasks.Parallel.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Tasks.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Thread.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.ThreadPool.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.Timer.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Threading.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Transactions.Local.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Transactions.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.ValueTuple.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Web.HttpUtility.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Web.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Windows.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.Linq.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.ReaderWriter.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.Serialization.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.XDocument.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.XPath.XDocument.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.XPath.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.XmlDocument.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.XmlSerializer.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.Xml.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\System.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\WindowsBase.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\mscorlib.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\netstandard.dll +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\HospitalServerManager.csprojAssemblyReference.cache +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\App.g.i.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\App.g.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\XamlTypeInfo.g.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\App.xaml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\App.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\XamlSaveStateFile.xml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\HospitalServerManager.csproj.CoreCompileInputs.cache +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\HospitalServerManager.csproj.CopyComplete +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\HospitalServerManager.exe +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\HospitalServerManager.pdb +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\ResourceHandlingTask.state +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.TypeConverter.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Console.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.SqlClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.FileVersionInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.Process.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TextWriterTraceListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TraceSource.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Drawing.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.DriveInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.Watcher.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.MemoryMappedFiles.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Pipes.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Ports.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.HttpListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Mail.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Ping.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Security.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.ServicePoint.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Context.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.TypeExtensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Resources.Writer.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Formatters.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.AccessControl.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Csp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Principal.Windows.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Thread.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Transactions.Local.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ValueTuple.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\priconfig.xml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\priconfig.xml.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\unfiltered.layout.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\unfiltered.layout.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\filtered.layout.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\filtered.layout.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\excluded.layout.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\excluded.layout.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\resources.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\resources.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\pri.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\pri.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\qualifiers.txt +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\qualifiers.txt.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\MultipleQualifiersPerDimensionFound.txt +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\resources.en-us.resfiles +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\resources.en-us.resfiles.intermediate +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\ProjectArchitectures.txt +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\View\MainFrameView.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\MainFrameView.g.i.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\MainFrameView.g.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\MainFrameView.xaml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\MainFrameView.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\View\PatientsPage.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\PatientsPage.g.i.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\PatientsPage.g.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\PatientsPage.xaml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\PatientsPage.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\UserControls\ColumnListView.g.i.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\UserControls\ColumnListView.g.cs +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\UserControls\ColumnListView.xaml +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\View\UserControls\ColumnListView.xbf +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\bin\x86\Debug\View\UserControls\ColumnListView.xbf diff --git a/obj/x86/Debug/HospitalServerManager.csprojAssemblyReference.cache b/obj/x86/Debug/HospitalServerManager.csprojAssemblyReference.cache new file mode 100644 index 0000000..a19f823 Binary files /dev/null and b/obj/x86/Debug/HospitalServerManager.csprojAssemblyReference.cache differ diff --git a/obj/x86/Debug/HospitalServerManager.exe b/obj/x86/Debug/HospitalServerManager.exe new file mode 100644 index 0000000..bd1272a Binary files /dev/null and b/obj/x86/Debug/HospitalServerManager.exe differ diff --git a/obj/x86/Debug/HospitalServerManager.pdb b/obj/x86/Debug/HospitalServerManager.pdb new file mode 100644 index 0000000..d0edb61 Binary files /dev/null and b/obj/x86/Debug/HospitalServerManager.pdb differ diff --git a/obj/x86/Debug/HospitalServerManager.xr.xml b/obj/x86/Debug/HospitalServerManager.xr.xml new file mode 100644 index 0000000..ffa90d0 --- /dev/null +++ b/obj/x86/Debug/HospitalServerManager.xr.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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..b3ebedd --- /dev/null +++ b/obj/x86/Debug/ProjectArchitectures.txt @@ -0,0 +1 @@ +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\HospitalServerManager.csproj;x86 diff --git a/obj/x86/Debug/ResourceHandlingTask.state b/obj/x86/Debug/ResourceHandlingTask.state new file mode 100644 index 0000000..63d3e49 Binary files /dev/null and b/obj/x86/Debug/ResourceHandlingTask.state differ 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/View/MainFrameView.g.cs b/obj/x86/Debug/View/MainFrameView.g.cs new file mode 100644 index 0000000..6b73b40 --- /dev/null +++ b/obj/x86/Debug/View/MainFrameView.g.cs @@ -0,0 +1,91 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\MainFrameView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4F78C6693FE6D4099F3E5FF61C0610DB" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View +{ + partial class MainFrameView : + 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: // View\MainFrameView.xaml line 16 + { + this.navigationBar = (global::Windows.UI.Xaml.Controls.CommandBar)(target); + } + break; + case 3: // View\MainFrameView.xaml line 25 + { + this.mainFrame = (global::Windows.UI.Xaml.Controls.Frame)(target); + } + break; + case 4: // View\MainFrameView.xaml line 18 + { + global::Windows.UI.Xaml.Controls.AppBarButton element4 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element4).Click += this.AppBarButton_Click; + } + break; + case 5: // View\MainFrameView.xaml line 19 + { + global::Windows.UI.Xaml.Controls.AppBarButton element5 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element5).Click += this.AppBarButton_Click; + } + break; + case 6: // View\MainFrameView.xaml line 20 + { + global::Windows.UI.Xaml.Controls.AppBarButton element6 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element6).Click += this.AppBarButton_Click; + } + break; + case 7: // View\MainFrameView.xaml line 21 + { + global::Windows.UI.Xaml.Controls.AppBarButton element7 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element7).Click += this.AppBarButton_Click; + } + break; + case 8: // View\MainFrameView.xaml line 22 + { + global::Windows.UI.Xaml.Controls.AppBarButton element8 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element8).Click += this.AppBarButton_Click; + } + break; + case 9: // View\MainFrameView.xaml line 23 + { + global::Windows.UI.Xaml.Controls.AppBarButton element9 = (global::Windows.UI.Xaml.Controls.AppBarButton)(target); + ((global::Windows.UI.Xaml.Controls.AppBarButton)element9).Click += this.AppBarButton_Click; + } + 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/View/MainFrameView.g.i.cs b/obj/x86/Debug/View/MainFrameView.g.i.cs new file mode 100644 index 0000000..e4bc8dc --- /dev/null +++ b/obj/x86/Debug/View/MainFrameView.g.i.cs @@ -0,0 +1,45 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\MainFrameView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "4F78C6693FE6D4099F3E5FF61C0610DB" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View +{ + partial class MainFrameView : 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.CommandBar navigationBar; + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::Windows.UI.Xaml.Controls.Frame mainFrame; + [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:///View/MainFrameView.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/View/MainFrameView.xaml b/obj/x86/Debug/View/MainFrameView.xaml new file mode 100644 index 0000000..36edebe --- /dev/null +++ b/obj/x86/Debug/View/MainFrameView.xaml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + diff --git a/obj/x86/Debug/View/MainFrameView.xbf b/obj/x86/Debug/View/MainFrameView.xbf new file mode 100644 index 0000000..7e0e75d Binary files /dev/null and b/obj/x86/Debug/View/MainFrameView.xbf differ diff --git a/obj/x86/Debug/View/PatientsPage.g.cs b/obj/x86/Debug/View/PatientsPage.g.cs new file mode 100644 index 0000000..b249681 --- /dev/null +++ b/obj/x86/Debug/View/PatientsPage.g.cs @@ -0,0 +1,50 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\PatientsPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "299682449C02B51BEF9550CA376111BC" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View +{ + partial class PatientsPage : + 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: // View\PatientsPage.xaml line 13 + { + this.RosterViewModel = (global::HospitalServerManager.ViewModel.RosterViewModel)(target); + } + 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/View/PatientsPage.g.i.cs b/obj/x86/Debug/View/PatientsPage.g.i.cs new file mode 100644 index 0000000..cb12ae9 --- /dev/null +++ b/obj/x86/Debug/View/PatientsPage.g.i.cs @@ -0,0 +1,43 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\PatientsPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "299682449C02B51BEF9550CA376111BC" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View +{ + partial class PatientsPage : global::Windows.UI.Xaml.Controls.Page + { + + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + private global::HospitalServerManager.ViewModel.RosterViewModel RosterViewModel; + [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:///View/PatientsPage.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/View/PatientsPage.xaml b/obj/x86/Debug/View/PatientsPage.xaml new file mode 100644 index 0000000..8525c0b --- /dev/null +++ b/obj/x86/Debug/View/PatientsPage.xaml @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/obj/x86/Debug/View/PatientsPage.xbf b/obj/x86/Debug/View/PatientsPage.xbf new file mode 100644 index 0000000..fac6ec5 Binary files /dev/null and b/obj/x86/Debug/View/PatientsPage.xbf differ diff --git a/obj/x86/Debug/View/UserControls/ColumnListView.g.cs b/obj/x86/Debug/View/UserControls/ColumnListView.g.cs new file mode 100644 index 0000000..a812ffe --- /dev/null +++ b/obj/x86/Debug/View/UserControls/ColumnListView.g.cs @@ -0,0 +1,279 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\UserControls\ColumnListView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8816074F83E5912D57314984E95026D" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View.UserControls +{ + partial class ColumnListView : + global::Windows.UI.Xaml.Controls.UserControl, + global::Windows.UI.Xaml.Markup.IComponentConnector, + global::Windows.UI.Xaml.Markup.IComponentConnector2 + { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + private static class XamlBindingSetters + { + public static void Set_Windows_UI_Xaml_Controls_TextBlock_Text(global::Windows.UI.Xaml.Controls.TextBlock obj, global::System.String value, string targetNullValue) + { + if (value == null && targetNullValue != null) + { + value = targetNullValue; + } + obj.Text = value ?? global::System.String.Empty; + } + }; + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + private class ColumnListView_obj2_Bindings : + global::Windows.UI.Xaml.IDataTemplateExtension, + global::Windows.UI.Xaml.Markup.IDataTemplateComponent, + global::Windows.UI.Xaml.Markup.IComponentConnector, + IColumnListView_Bindings + { + private global::HospitalServerManager.ViewModel.PatientViewModel dataRoot; + private bool initialized = false; + private const int NOT_PHASED = (1 << 31); + private const int DATA_CHANGED = (1 << 30); + private bool removedDataContextHandler = false; + + // Fields for each control that has bindings. + private global::System.WeakReference obj2; + private global::Windows.UI.Xaml.Controls.TextBlock obj3; + private global::Windows.UI.Xaml.Controls.TextBlock obj4; + private global::Windows.UI.Xaml.Controls.TextBlock obj5; + private global::Windows.UI.Xaml.Controls.TextBlock obj6; + private global::Windows.UI.Xaml.Controls.TextBlock obj7; + private global::Windows.UI.Xaml.Controls.TextBlock obj8; + + public ColumnListView_obj2_Bindings() + { + } + + // IComponentConnector + + public void Connect(int connectionId, global::System.Object target) + { + switch(connectionId) + { + case 2: // View\UserControls\ColumnListView.xaml line 35 + this.obj2 = new global::System.WeakReference((global::Windows.UI.Xaml.Controls.Grid)target); + break; + case 3: // View\UserControls\ColumnListView.xaml line 44 + this.obj3 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + case 4: // View\UserControls\ColumnListView.xaml line 47 + this.obj4 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + case 5: // View\UserControls\ColumnListView.xaml line 50 + this.obj5 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + case 6: // View\UserControls\ColumnListView.xaml line 52 + this.obj6 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + case 7: // View\UserControls\ColumnListView.xaml line 54 + this.obj7 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + case 8: // View\UserControls\ColumnListView.xaml line 56 + this.obj8 = (global::Windows.UI.Xaml.Controls.TextBlock)target; + break; + default: + break; + } + } + + public void DataContextChangedHandler(global::Windows.UI.Xaml.FrameworkElement sender, global::Windows.UI.Xaml.DataContextChangedEventArgs args) + { + if (this.SetDataRoot(args.NewValue)) + { + this.Update(); + } + } + + // IDataTemplateExtension + + public bool ProcessBinding(uint phase) + { + throw new global::System.NotImplementedException(); + } + + public int ProcessBindings(global::Windows.UI.Xaml.Controls.ContainerContentChangingEventArgs args) + { + int nextPhase = -1; + ProcessBindings(args.Item, args.ItemIndex, (int)args.Phase, out nextPhase); + return nextPhase; + } + + public void ResetTemplate() + { + Recycle(); + } + + // IDataTemplateComponent + + public void ProcessBindings(global::System.Object item, int itemIndex, int phase, out int nextPhase) + { + nextPhase = -1; + switch(phase) + { + case 0: + nextPhase = -1; + this.SetDataRoot(item); + if (!removedDataContextHandler) + { + removedDataContextHandler = true; + (this.obj2.Target as global::Windows.UI.Xaml.Controls.Grid).DataContextChanged -= this.DataContextChangedHandler; + } + this.initialized = true; + break; + } + this.Update_((global::HospitalServerManager.ViewModel.PatientViewModel) item, 1 << phase); + } + + public void Recycle() + { + } + + // IColumnListView_Bindings + + public void Initialize() + { + if (!this.initialized) + { + this.Update(); + } + } + + public void Update() + { + this.Update_(this.dataRoot, NOT_PHASED); + this.initialized = true; + } + + public void StopTracking() + { + } + + public void DisconnectUnloadedObject(int connectionId) + { + throw new global::System.ArgumentException("No unloadable elements to disconnect."); + } + + public bool SetDataRoot(global::System.Object newDataRoot) + { + if (newDataRoot != null) + { + this.dataRoot = (global::HospitalServerManager.ViewModel.PatientViewModel)newDataRoot; + return true; + } + return false; + } + + // Update methods for each path node used in binding steps. + private void Update_(global::HospitalServerManager.ViewModel.PatientViewModel obj, int phase) + { + if (obj != null) + { + if ((phase & (NOT_PHASED | (1 << 0))) != 0) + { + this.Update_PrimaryKey(obj.PrimaryKey, phase); + this.Update_Surname(obj.Surname, phase); + this.Update_Name(obj.Name, phase); + this.Update_BirthDate(obj.BirthDate, phase); + this.Update_PatientState(obj.PatientState, phase); + this.Update_PatientSex(obj.PatientSex, phase); + } + } + } + private void Update_PrimaryKey(global::System.String obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 44 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj3, obj, null); + } + } + private void Update_Surname(global::System.String obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 47 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj4, obj, null); + } + } + private void Update_Name(global::System.String obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 50 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj5, obj, null); + } + } + private void Update_BirthDate(global::System.DateTime obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 52 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj6, obj.ToString(), null); + } + } + private void Update_PatientState(global::System.String obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 54 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj7, obj, null); + } + } + private void Update_PatientSex(global::System.String obj, int phase) + { + if ((phase & ((1 << 0) | NOT_PHASED )) != 0) + { + // View\UserControls\ColumnListView.xaml line 56 + XamlBindingSetters.Set_Windows_UI_Xaml_Controls_TextBlock_Text(this.obj8, obj, null); + } + } + } + /// + /// 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) + { + 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; + switch(connectionId) + { + case 2: // View\UserControls\ColumnListView.xaml line 35 + { + global::Windows.UI.Xaml.Controls.Grid element2 = (global::Windows.UI.Xaml.Controls.Grid)target; + ColumnListView_obj2_Bindings bindings = new ColumnListView_obj2_Bindings(); + returnValue = bindings; + bindings.SetDataRoot(element2.DataContext); + element2.DataContextChanged += bindings.DataContextChangedHandler; + global::Windows.UI.Xaml.DataTemplate.SetExtensionInstance(element2, bindings); + global::Windows.UI.Xaml.Markup.XamlBindingHelper.SetDataTemplateComponent(element2, bindings); + } + break; + } + return returnValue; + } + } +} + diff --git a/obj/x86/Debug/View/UserControls/ColumnListView.g.i.cs b/obj/x86/Debug/View/UserControls/ColumnListView.g.i.cs new file mode 100644 index 0000000..42e6a52 --- /dev/null +++ b/obj/x86/Debug/View/UserControls/ColumnListView.g.i.cs @@ -0,0 +1,51 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\UserControls\ColumnListView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "E8816074F83E5912D57314984E95026D" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View.UserControls +{ + partial class ColumnListView : global::Windows.UI.Xaml.Controls.UserControl + { + + + [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:///View/UserControls/ColumnListView.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); + + private interface IColumnListView_Bindings + { + void Initialize(); + void Update(); + void StopTracking(); + void DisconnectUnloadedObject(int connectionId); + } +#pragma warning disable 0169 // Proactively suppress unused field warning in case Bindings is not used. + private IColumnListView_Bindings Bindings; +#pragma warning restore 0169 + } +} + + diff --git a/obj/x86/Debug/View/UserControls/ColumnListView.xaml b/obj/x86/Debug/View/UserControls/ColumnListView.xaml new file mode 100644 index 0000000..953a95d --- /dev/null +++ b/obj/x86/Debug/View/UserControls/ColumnListView.xaml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/x86/Debug/View/UserControls/ColumnListView.xbf b/obj/x86/Debug/View/UserControls/ColumnListView.xbf new file mode 100644 index 0000000..5f56726 Binary files /dev/null and b/obj/x86/Debug/View/UserControls/ColumnListView.xbf differ diff --git a/obj/x86/Debug/View/UserControls/CustomListView.g.cs b/obj/x86/Debug/View/UserControls/CustomListView.g.cs new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/View/UserControls/CustomListView.g.i.cs b/obj/x86/Debug/View/UserControls/CustomListView.g.i.cs new file mode 100644 index 0000000..d143fb8 --- /dev/null +++ b/obj/x86/Debug/View/UserControls/CustomListView.g.i.cs @@ -0,0 +1,41 @@ +#pragma checksum "C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\View\UserControls\CustomListView.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6AF310369F5CCDD798CAD38D94BC2AEB" +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager.View.UserControls +{ + partial class CustomListView : global::Windows.UI.Xaml.Controls.UserControl + { + + + [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:///View/UserControls/CustomListView.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/XamlSaveStateFile.xml b/obj/x86/Debug/XamlSaveStateFile.xml new file mode 100644 index 0000000..43e4c4c --- /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..f7f2847 --- /dev/null +++ b/obj/x86/Debug/XamlTypeInfo.g.cs @@ -0,0 +1,634 @@ +//------------------------------------------------------------------------------ +// +// 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 HospitalServerManager +{ + public partial class App : global::Windows.UI.Xaml.Markup.IXamlMetadataProvider + { + private global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlMetaDataProvider __appProvider; + private global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlMetaDataProvider _AppProvider + { + get + { + if (__appProvider == null) + { + __appProvider = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlMetaDataProvider(); + } + return __appProvider; + } + } + + /// + /// GetXamlType(Type) + /// + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(global::System.Type type) + { + return _AppProvider.GetXamlType(type); + } + + /// + /// GetXamlType(String) + /// + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlType(string fullName) + { + return _AppProvider.GetXamlType(fullName); + } + + /// + /// GetXmlnsDefinitions() + /// + public global::Windows.UI.Xaml.Markup.XmlnsDefinition[] GetXmlnsDefinitions() + { + return _AppProvider.GetXmlnsDefinitions(); + } + } +} + +namespace HospitalServerManager.HospitalServerManager_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::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider _provider = null; + + private global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider Provider + { + get + { + if (_provider == null) + { + _provider = new global::HospitalServerManager.HospitalServerManager_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 + { + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByType(global::System.Type type) + { + global::Windows.UI.Xaml.Markup.IXamlType xamlType; + lock (_xamlTypeCacheByType) + { + if (_xamlTypeCacheByType.TryGetValue(type, out xamlType)) + { + return xamlType; + } + int typeIndex = LookupTypeIndexByType(type); + if(typeIndex != -1) + { + xamlType = CreateXamlType(typeIndex); + } + if (xamlType != null) + { + _xamlTypeCacheByName.Add(xamlType.FullName, xamlType); + _xamlTypeCacheByType.Add(xamlType.UnderlyingType, xamlType); + } + } + return xamlType; + } + + public global::Windows.UI.Xaml.Markup.IXamlType GetXamlTypeByName(string typeName) + { + if (string.IsNullOrEmpty(typeName)) + { + return null; + } + global::Windows.UI.Xaml.Markup.IXamlType xamlType; + lock (_xamlTypeCacheByType) + { + if (_xamlTypeCacheByName.TryGetValue(typeName, out xamlType)) + { + return xamlType; + } + int typeIndex = LookupTypeIndexByName(typeName); + if(typeIndex != -1) + { + xamlType = CreateXamlType(typeIndex); + } + if (xamlType != null) + { + _xamlTypeCacheByName.Add(xamlType.FullName, xamlType); + _xamlTypeCacheByType.Add(xamlType.UnderlyingType, xamlType); + } + } + return xamlType; + } + + public global::Windows.UI.Xaml.Markup.IXamlMember GetMemberByLongName(string longMemberName) + { + if (string.IsNullOrEmpty(longMemberName)) + { + return null; + } + global::Windows.UI.Xaml.Markup.IXamlMember xamlMember; + lock (_xamlMembers) + { + if (_xamlMembers.TryGetValue(longMemberName, out xamlMember)) + { + return xamlMember; + } + xamlMember = CreateXamlMember(longMemberName); + if (xamlMember != null) + { + _xamlMembers.Add(longMemberName, xamlMember); + } + } + return xamlMember; + } + + global::System.Collections.Generic.Dictionary + _xamlTypeCacheByName = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.Dictionary + _xamlTypeCacheByType = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.Dictionary + _xamlMembers = new global::System.Collections.Generic.Dictionary(); + + string[] _typeNameTable = null; + global::System.Type[] _typeTable = null; + + private void InitTypeTables() + { + _typeNameTable = new string[7]; + _typeNameTable[0] = "HospitalServerManager.View.MainFrameView"; + _typeNameTable[1] = "Windows.UI.Xaml.Controls.Page"; + _typeNameTable[2] = "Windows.UI.Xaml.Controls.UserControl"; + _typeNameTable[3] = "HospitalServerManager.ViewModel.RosterViewModel"; + _typeNameTable[4] = "Object"; + _typeNameTable[5] = "HospitalServerManager.View.UserControls.ColumnListView"; + _typeNameTable[6] = "HospitalServerManager.View.PatientsPage"; + + _typeTable = new global::System.Type[7]; + _typeTable[0] = typeof(global::HospitalServerManager.View.MainFrameView); + _typeTable[1] = typeof(global::Windows.UI.Xaml.Controls.Page); + _typeTable[2] = typeof(global::Windows.UI.Xaml.Controls.UserControl); + _typeTable[3] = typeof(global::HospitalServerManager.ViewModel.RosterViewModel); + _typeTable[4] = typeof(global::System.Object); + _typeTable[5] = typeof(global::HospitalServerManager.View.UserControls.ColumnListView); + _typeTable[6] = typeof(global::HospitalServerManager.View.PatientsPage); + } + + private int LookupTypeIndexByName(string typeName) + { + if (_typeNameTable == null) + { + InitTypeTables(); + } + for (int i=0; i<_typeNameTable.Length; i++) + { + if(0 == string.CompareOrdinal(_typeNameTable[i], typeName)) + { + return i; + } + } + return -1; + } + + private int LookupTypeIndexByType(global::System.Type type) + { + if (_typeTable == null) + { + InitTypeTables(); + } + for(int i=0; i<_typeTable.Length; i++) + { + if(type == _typeTable[i]) + { + return i; + } + } + return -1; + } + + private object Activate_0_MainFrameView() { return new global::HospitalServerManager.View.MainFrameView(); } + private object Activate_3_RosterViewModel() { return new global::HospitalServerManager.ViewModel.RosterViewModel(); } + private object Activate_5_ColumnListView() { return new global::HospitalServerManager.View.UserControls.ColumnListView(); } + private object Activate_6_PatientsPage() { return new global::HospitalServerManager.View.PatientsPage(); } + + private global::Windows.UI.Xaml.Markup.IXamlType CreateXamlType(int typeIndex) + { + global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlSystemBaseType xamlType = null; + global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlUserType userType; + string typeName = _typeNameTable[typeIndex]; + global::System.Type type = _typeTable[typeIndex]; + + switch (typeIndex) + { + + case 0: // HospitalServerManager.View.MainFrameView + userType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.Controls.Page")); + userType.Activator = Activate_0_MainFrameView; + userType.SetIsLocalType(); + xamlType = userType; + break; + + case 1: // Windows.UI.Xaml.Controls.Page + xamlType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlSystemBaseType(typeName, type); + break; + + case 2: // Windows.UI.Xaml.Controls.UserControl + xamlType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlSystemBaseType(typeName, type); + break; + + case 3: // HospitalServerManager.ViewModel.RosterViewModel + userType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Object")); + userType.Activator = Activate_3_RosterViewModel; + userType.SetIsLocalType(); + xamlType = userType; + break; + + case 4: // Object + xamlType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlSystemBaseType(typeName, type); + break; + + case 5: // HospitalServerManager.View.UserControls.ColumnListView + userType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.Controls.UserControl")); + userType.Activator = Activate_5_ColumnListView; + userType.SetIsLocalType(); + xamlType = userType; + break; + + case 6: // HospitalServerManager.View.PatientsPage + userType = new global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlUserType(this, typeName, type, GetXamlTypeByName("Windows.UI.Xaml.Controls.Page")); + userType.Activator = Activate_6_PatientsPage; + userType.SetIsLocalType(); + xamlType = userType; + break; + } + return xamlType; + } + + + + private global::Windows.UI.Xaml.Markup.IXamlMember CreateXamlMember(string longMemberName) + { + global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlMember xamlMember = null; + // No Local Properties + return xamlMember; + } + } + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + internal class XamlSystemBaseType : global::Windows.UI.Xaml.Markup.IXamlType + { + string _fullName; + global::System.Type _underlyingType; + + public XamlSystemBaseType(string fullName, global::System.Type underlyingType) + { + _fullName = fullName; + _underlyingType = underlyingType; + } + + public string FullName { get { return _fullName; } } + + public global::System.Type UnderlyingType + { + get + { + return _underlyingType; + } + } + + virtual public global::Windows.UI.Xaml.Markup.IXamlType BaseType { get { throw new global::System.NotImplementedException(); } } + virtual public global::Windows.UI.Xaml.Markup.IXamlMember ContentProperty { get { throw new global::System.NotImplementedException(); } } + virtual public global::Windows.UI.Xaml.Markup.IXamlMember GetMember(string name) { throw new global::System.NotImplementedException(); } + virtual public bool IsArray { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsCollection { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsConstructible { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsDictionary { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsMarkupExtension { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsBindable { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsReturnTypeStub { get { throw new global::System.NotImplementedException(); } } + virtual public bool IsLocalType { get { throw new global::System.NotImplementedException(); } } + virtual public global::Windows.UI.Xaml.Markup.IXamlType ItemType { get { throw new global::System.NotImplementedException(); } } + virtual public global::Windows.UI.Xaml.Markup.IXamlType KeyType { get { throw new global::System.NotImplementedException(); } } + virtual public object ActivateInstance() { throw new global::System.NotImplementedException(); } + virtual public void AddToMap(object instance, object key, object item) { throw new global::System.NotImplementedException(); } + virtual public void AddToVector(object instance, object item) { throw new global::System.NotImplementedException(); } + virtual public void RunInitializer() { throw new global::System.NotImplementedException(); } + virtual public object CreateFromString(string input) { throw new global::System.NotImplementedException(); } + } + + internal delegate object Activator(); + internal delegate void AddToCollection(object instance, object item); + internal delegate void AddToDictionary(object instance, object key, object item); + internal delegate object CreateFromStringMethod(string args); + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + internal class XamlUserType : global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlSystemBaseType + { + global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider _provider; + global::Windows.UI.Xaml.Markup.IXamlType _baseType; + bool _isArray; + bool _isMarkupExtension; + bool _isBindable; + bool _isReturnTypeStub; + bool _isLocalType; + + string _contentPropertyName; + string _itemTypeName; + string _keyTypeName; + global::System.Collections.Generic.Dictionary _memberNames; + global::System.Collections.Generic.Dictionary _enumValues; + + public XamlUserType(global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider provider, string fullName, global::System.Type fullType, global::Windows.UI.Xaml.Markup.IXamlType baseType) + :base(fullName, fullType) + { + _provider = provider; + _baseType = baseType; + } + + // --- Interface methods ---- + + override public global::Windows.UI.Xaml.Markup.IXamlType BaseType { get { return _baseType; } } + override public bool IsArray { get { return _isArray; } } + override public bool IsCollection { get { return (CollectionAdd != null); } } + override public bool IsConstructible { get { return (Activator != null); } } + override public bool IsDictionary { get { return (DictionaryAdd != null); } } + override public bool IsMarkupExtension { get { return _isMarkupExtension; } } + override public bool IsBindable { get { return _isBindable; } } + override public bool IsReturnTypeStub { get { return _isReturnTypeStub; } } + override public bool IsLocalType { get { return _isLocalType; } } + + override public global::Windows.UI.Xaml.Markup.IXamlMember ContentProperty + { + get { return _provider.GetMemberByLongName(_contentPropertyName); } + } + + override public global::Windows.UI.Xaml.Markup.IXamlType ItemType + { + get { return _provider.GetXamlTypeByName(_itemTypeName); } + } + + override public global::Windows.UI.Xaml.Markup.IXamlType KeyType + { + get { return _provider.GetXamlTypeByName(_keyTypeName); } + } + + override public global::Windows.UI.Xaml.Markup.IXamlMember GetMember(string name) + { + if (_memberNames == null) + { + return null; + } + string longName; + if (_memberNames.TryGetValue(name, out longName)) + { + return _provider.GetMemberByLongName(longName); + } + return null; + } + + override public object ActivateInstance() + { + return Activator(); + } + + override public void AddToMap(object instance, object key, object item) + { + DictionaryAdd(instance, key, item); + } + + override public void AddToVector(object instance, object item) + { + CollectionAdd(instance, item); + } + + override public void RunInitializer() + { + global::System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(UnderlyingType.TypeHandle); + } + + override public object CreateFromString(string input) + { + if (CreateFromStringMethod != null) + { + return this.CreateFromStringMethod(input); + } + else if (_enumValues != null) + { + int value = 0; + + string[] valueParts = input.Split(','); + + foreach (string valuePart in valueParts) + { + object partValue; + int enumFieldValue = 0; + try + { + if (_enumValues.TryGetValue(valuePart.Trim(), out partValue)) + { + enumFieldValue = global::System.Convert.ToInt32(partValue); + } + else + { + try + { + enumFieldValue = global::System.Convert.ToInt32(valuePart.Trim()); + } + catch( global::System.FormatException ) + { + foreach( string key in _enumValues.Keys ) + { + if( string.Compare(valuePart.Trim(), key, global::System.StringComparison.OrdinalIgnoreCase) == 0 ) + { + if( _enumValues.TryGetValue(key.Trim(), out partValue) ) + { + enumFieldValue = global::System.Convert.ToInt32(partValue); + break; + } + } + } + } + } + value |= enumFieldValue; + } + catch( global::System.FormatException ) + { + throw new global::System.ArgumentException(input, FullName); + } + } + + return value; + } + throw new global::System.ArgumentException(input, FullName); + } + + // --- End of Interface methods + + public Activator Activator { get; set; } + public AddToCollection CollectionAdd { get; set; } + public AddToDictionary DictionaryAdd { get; set; } + public CreateFromStringMethod CreateFromStringMethod {get; set; } + + public void SetContentPropertyName(string contentPropertyName) + { + _contentPropertyName = contentPropertyName; + } + + public void SetIsArray() + { + _isArray = true; + } + + public void SetIsMarkupExtension() + { + _isMarkupExtension = true; + } + + public void SetIsBindable() + { + _isBindable = true; + } + + public void SetIsReturnTypeStub() + { + _isReturnTypeStub = true; + } + + public void SetIsLocalType() + { + _isLocalType = true; + } + + public void SetItemTypeName(string itemTypeName) + { + _itemTypeName = itemTypeName; + } + + public void SetKeyTypeName(string keyTypeName) + { + _keyTypeName = keyTypeName; + } + + public void AddMemberName(string shortName) + { + if(_memberNames == null) + { + _memberNames = new global::System.Collections.Generic.Dictionary(); + } + _memberNames.Add(shortName, FullName + "." + shortName); + } + + public void AddEnumValue(string name, object value) + { + if (_enumValues == null) + { + _enumValues = new global::System.Collections.Generic.Dictionary(); + } + _enumValues.Add(name, value); + } + } + + internal delegate object Getter(object instance); + internal delegate void Setter(object instance, object value); + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.17.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + internal class XamlMember : global::Windows.UI.Xaml.Markup.IXamlMember + { + global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider _provider; + string _name; + bool _isAttachable; + bool _isDependencyProperty; + bool _isReadOnly; + + string _typeName; + string _targetTypeName; + + public XamlMember(global::HospitalServerManager.HospitalServerManager_XamlTypeInfo.XamlTypeInfoProvider provider, string name, string typeName) + { + _name = name; + _typeName = typeName; + _provider = provider; + } + + public string Name { get { return _name; } } + + public global::Windows.UI.Xaml.Markup.IXamlType Type + { + get { return _provider.GetXamlTypeByName(_typeName); } + } + + public void SetTargetTypeName(string targetTypeName) + { + _targetTypeName = targetTypeName; + } + public global::Windows.UI.Xaml.Markup.IXamlType TargetType + { + get { return _provider.GetXamlTypeByName(_targetTypeName); } + } + + public void SetIsAttachable() { _isAttachable = true; } + public bool IsAttachable { get { return _isAttachable; } } + + public void SetIsDependencyProperty() { _isDependencyProperty = true; } + public bool IsDependencyProperty { get { return _isDependencyProperty; } } + + public void SetIsReadOnly() { _isReadOnly = true; } + public bool IsReadOnly { get { return _isReadOnly; } } + + public Getter Getter { get; set; } + public object GetValue(object instance) + { + if (Getter != null) + return Getter(instance); + else + throw new global::System.InvalidOperationException("GetValue"); + } + + public Setter Setter { get; set; } + public void SetValue(object instance, object value) + { + if (Setter != null) + Setter(instance, value); + else + throw new global::System.InvalidOperationException("SetValue"); + } + } +} + diff --git a/obj/x86/Debug/embed.resfiles b/obj/x86/Debug/embed.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/embed.resfiles.intermediate b/obj/x86/Debug/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..a01d08e --- /dev/null +++ b/obj/x86/Debug/filtered.layout.resfiles @@ -0,0 +1,14 @@ +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 +HospitalServerManager.xr.xml +View\MainFrameView.xbf +View\PatientsPage.xbf +View\UserControls\ColumnListView.xbf +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..a01d08e --- /dev/null +++ b/obj/x86/Debug/filtered.layout.resfiles.intermediate @@ -0,0 +1,14 @@ +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 +HospitalServerManager.xr.xml +View\MainFrameView.xbf +View\PatientsPage.xbf +View\UserControls\ColumnListView.xbf +Properties\Default.rd.xml diff --git a/obj/x86/Debug/intermediatexaml/HospitalServerManager.exe b/obj/x86/Debug/intermediatexaml/HospitalServerManager.exe new file mode 100644 index 0000000..3073992 Binary files /dev/null and b/obj/x86/Debug/intermediatexaml/HospitalServerManager.exe differ diff --git a/obj/x86/Debug/intermediatexaml/HospitalServerManager.pdb b/obj/x86/Debug/intermediatexaml/HospitalServerManager.pdb new file mode 100644 index 0000000..675a023 Binary files /dev/null and b/obj/x86/Debug/intermediatexaml/HospitalServerManager.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..eb39376 --- /dev/null +++ b/obj/x86/Debug/priconfig.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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..eb39376 --- /dev/null +++ b/obj/x86/Debug/priconfig.xml.intermediate @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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.en-us.resfiles b/obj/x86/Debug/resources.en-us.resfiles new file mode 100644 index 0000000..4346cce --- /dev/null +++ b/obj/x86/Debug/resources.en-us.resfiles @@ -0,0 +1,86 @@ +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.TypeConverter.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Console.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.SqlClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.FileVersionInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.Process.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TextWriterTraceListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TraceSource.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Drawing.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.DriveInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.Watcher.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.MemoryMappedFiles.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Pipes.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Ports.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.HttpListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Mail.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Ping.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Security.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.ServicePoint.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Context.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.TypeExtensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Resources.Writer.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Formatters.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.AccessControl.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Csp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Principal.Windows.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Thread.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Transactions.Local.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ValueTuple.SR.resw diff --git a/obj/x86/Debug/resources.en-us.resfiles.intermediate b/obj/x86/Debug/resources.en-us.resfiles.intermediate new file mode 100644 index 0000000..4346cce --- /dev/null +++ b/obj/x86/Debug/resources.en-us.resfiles.intermediate @@ -0,0 +1,86 @@ +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.CSharp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.Microsoft.VisualBasic.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Concurrent.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Immutable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.NonGeneric.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.Specialized.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Collections.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Annotations.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.EventBasedAsync.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ComponentModel.TypeConverter.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Console.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.Common.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Data.SqlClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.FileVersionInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.Process.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TextWriterTraceListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Diagnostics.TraceSource.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Drawing.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.ZipFile.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Compression.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.DriveInfo.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.Watcher.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.FileSystem.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.IsolatedStorage.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.MemoryMappedFiles.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Pipes.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.IO.Ports.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Expressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.Queryable.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Http.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.HttpListener.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Mail.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NameResolution.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.NetworkInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Ping.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Requests.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Security.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.ServicePoint.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.Sockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebClient.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebHeaderCollection.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.Client.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Net.WebSockets.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Numerics.Vectors.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ObjectModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.DataContractSerialization.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.ServiceModel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Uri.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.Linq.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Private.Xml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Context.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.DispatchProxy.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.Metadata.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Reflection.TypeExtensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Resources.Writer.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Extensions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.InteropServices.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Numerics.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Formatters.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.Serialization.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Runtime.WindowsRuntime.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.AccessControl.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Claims.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Algorithms.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Cng.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Csp.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Encoding.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.Primitives.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Cryptography.X509Certificates.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Security.Principal.Windows.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.Encoding.CodePages.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Text.RegularExpressions.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Overlapped.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Dataflow.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Tasks.Parallel.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.Thread.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Threading.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.Transactions.Local.SR.resw +C:\Users\MarcelPC\Desktop\Na studia\Informatyka\C#\Ksiazka\HospitalServerManager\HospitalServerManager\obj\x86\Debug\FxResources.System.ValueTuple.SR.resw diff --git a/obj/x86/Debug/resources.resfiles b/obj/x86/Debug/resources.resfiles new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/resources.resfiles.intermediate b/obj/x86/Debug/resources.resfiles.intermediate new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/unfiltered.layout.resfiles b/obj/x86/Debug/unfiltered.layout.resfiles new file mode 100644 index 0000000..a01d08e --- /dev/null +++ b/obj/x86/Debug/unfiltered.layout.resfiles @@ -0,0 +1,14 @@ +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 +HospitalServerManager.xr.xml +View\MainFrameView.xbf +View\PatientsPage.xbf +View\UserControls\ColumnListView.xbf +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..a01d08e --- /dev/null +++ b/obj/x86/Debug/unfiltered.layout.resfiles.intermediate @@ -0,0 +1,14 @@ +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 +HospitalServerManager.xr.xml +View\MainFrameView.xbf +View\PatientsPage.xbf +View\UserControls\ColumnListView.xbf +Properties\Default.rd.xml