diff --git a/MFDSettingsManager/Configuration/MFDConfigurationSection.cs b/MFDSettingsManager/Configuration/MFDConfigurationSection.cs index c6d8e33..7b549b0 100644 --- a/MFDSettingsManager/Configuration/MFDConfigurationSection.cs +++ b/MFDSettingsManager/Configuration/MFDConfigurationSection.cs @@ -46,10 +46,20 @@ public static MFDConfigurationSection GetConfig(ILog logger, string fullPathtoCo currentConfiguration = ConfigurationManager.OpenMappedExeConfiguration(exeFileMap, ConfigurationUserLevel.None); } - var configSection = (MFDConfigurationSection)currentConfiguration.GetSection("MFDSettings"); - configSection.Logger = logger; - configSection.IsDataDirty = false; - return configSection ?? new MFDConfigurationSection(); + try + { + var configSection = (MFDConfigurationSection)currentConfiguration.GetSection("MFDSettings"); + configSection.Logger = logger; + configSection.IsDataDirty = false; + return configSection ?? new MFDConfigurationSection(); + } + catch (System.Exception ex) + { + logger.Error($"Unable to load the configuration due to errors.", ex); + } + + return null; + } /// diff --git a/MFDSettingsManager/Extensions/ConfigurationSectionExtensions.cs b/MFDSettingsManager/Extensions/ConfigurationSectionExtensions.cs index abb0d6b..1ffcb76 100644 --- a/MFDSettingsManager/Extensions/ConfigurationSectionExtensions.cs +++ b/MFDSettingsManager/Extensions/ConfigurationSectionExtensions.cs @@ -18,6 +18,10 @@ public static class ConfigurationSectionExtensions /// public static ModulesConfiguration ToModel(this MFDConfigurationSection section, ILog logger) { + if(section == null) + { + return null; + } var model = ConfigSectionModelMapper.MapFromConfigurationSection(section); model.Logger = logger; return model; diff --git a/MFDSettingsManager/Mappers/ConfigSectionModelMapper.cs b/MFDSettingsManager/Mappers/ConfigSectionModelMapper.cs index 39ac41b..92770ed 100644 --- a/MFDSettingsManager/Mappers/ConfigSectionModelMapper.cs +++ b/MFDSettingsManager/Mappers/ConfigSectionModelMapper.cs @@ -19,6 +19,11 @@ public class ConfigSectionModelMapper /// internal static ModulesConfiguration MapFromConfigurationSection(MFDConfigurationSection section) { + if(section == null) + { + return null; + } + var logger = section.Logger; var logSep = new string('-', 160); diff --git a/MFDisplay/ConfigurationWindow.xaml.cs b/MFDisplay/ConfigurationWindow.xaml.cs index 224e0ea..52bd42f 100644 --- a/MFDisplay/ConfigurationWindow.xaml.cs +++ b/MFDisplay/ConfigurationWindow.xaml.cs @@ -12,6 +12,7 @@ using System.Windows.Forms; using System.Windows.Input; using System.Windows.Media; +using Application = System.Windows.Application; using MenuItem = System.Windows.Controls.MenuItem; using MessageBox = System.Windows.MessageBox; @@ -69,38 +70,47 @@ private void TxtFilePath_TextChanged(object sender, TextChangedEventArgs e) private void Window_Loaded(object sender, RoutedEventArgs e) { txtFilePath.TextChanged += TxtFilePath_TextChanged; - LoadConfig(); + if(!LoadConfig()) + { + ((MFDisplayApp)Application.Current).ShowConfigurationError(this); + Close(); + } } private void LoadConfigurationSectionAsModel() { var configSection = MFDConfigurationSection.GetConfig(Logger); - Config = configSection.ToModel(Logger); + Config = configSection?.ToModel(Logger); } - private void LoadConfig() + private bool LoadConfig() { LoadConfigurationSectionAsModel(); - cbModules.ItemsSource = Config.Modules; + if(Config == null) + { + return false; + } + cbModules.ItemsSource = Config?.Modules; cbModules.DisplayMemberPath = "DisplayName"; cbModules.SelectedValuePath = "ModuleName"; - cbDefaultModule.ItemsSource = Config.Modules; + cbDefaultModule.ItemsSource = Config?.Modules; cbDefaultModule.DisplayMemberPath = "DisplayName"; cbDefaultModule.SelectedValuePath = "ModuleName"; - txtFilePath.Text = Config.FilePath; + txtFilePath.Text = Config?.FilePath; chkIsValidPath.IsChecked = IsValidConfig; - chkSaveClips.IsChecked = Config.SaveClips; + chkSaveClips.IsChecked = Config?.SaveClips; - if (!string.IsNullOrEmpty(Config.DefaultConfig)) + if (!string.IsNullOrEmpty(Config?.DefaultConfig)) { - cbModules.SelectedValue = Config.DefaultConfig; - cbDefaultModule.SelectedValue = Config.DefaultConfig; + cbModules.SelectedValue = Config?.DefaultConfig; + cbDefaultModule.SelectedValue = Config?.DefaultConfig; ModuleChanged(); } IsDataDirty = false; + return true; } @@ -241,7 +251,7 @@ private void PreviewClick(object sender, RoutedEventArgs e) SizeToContent = SizeToContent.WidthAndHeight, WindowStyle = WindowStyle.None, Owner = this, - FilePath = Path.Combine(Config.FilePath, config.ModuleName), + FilePath = Config.FilePath, BorderThickness = new Thickness(5.0F), AllowsTransparency = false }; diff --git a/MFDisplay/MFDisplay.csproj.user b/MFDisplay/MFDisplay.csproj.user index 8d1f8ac..7a55b2a 100644 --- a/MFDisplay/MFDisplay.csproj.user +++ b/MFDisplay/MFDisplay.csproj.user @@ -14,6 +14,7 @@ false - -mod C-101 + + \ No newline at end of file diff --git a/MFDisplay/MFDisplayApp.xaml.cs b/MFDisplay/MFDisplayApp.xaml.cs index 745ba70..0d2b878 100644 --- a/MFDisplay/MFDisplayApp.xaml.cs +++ b/MFDisplay/MFDisplayApp.xaml.cs @@ -7,10 +7,8 @@ using System; using System.Collections.Generic; using System.IO; -using System.Linq; using System.Reflection; using System.Windows; -using System.Windows.Media; namespace MFDisplay { @@ -82,6 +80,23 @@ static MFDisplayApp() XmlConfigurator.Configure(); } + /// + /// Reports on Configuration errors + /// + /// Parent Window + internal void ShowConfigurationError(Window parent = null) + { + var logPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"Vyper Industries\MFD4CTS\status.log"); + if(parent != null) + { + MessageBox.Show(parent, $"Unable to load the configuration. Please check the log at {logPath} for details.", "Error in Configuration", MessageBoxButton.OK, MessageBoxImage.Error); + } + else + { + MessageBox.Show($"Unable to load the configuration. Please check the log at {logPath} for details.", "Error in Configuration", MessageBoxButton.OK, MessageBoxImage.Error); + } + } + /// /// Executed when the application starts @@ -100,8 +115,16 @@ protected override void OnStartup(StartupEventArgs e) Logger = LogManager.GetLogger("MFD4CTS"); var assmLocation = Assembly.GetExecutingAssembly().Location; var sectionConfig = MFDConfigurationSection.GetConfig(Logger); + + if(sectionConfig == null) + { + ShowConfigurationError(); + Shutdown(5); + return; + } + Configuration = sectionConfig.ToModel(Logger); - while (!Directory.Exists(Configuration.FilePath)) + while (!Directory.Exists(Configuration?.FilePath)) { var configWindow = new ConfigurationWindow() { @@ -111,9 +134,9 @@ protected override void OnStartup(StartupEventArgs e) configWindow.ShowDialog(); sectionConfig = MFDConfigurationSection.GetConfig(Logger); Configuration = sectionConfig.ToModel(Logger); - if (!Directory.Exists(Configuration.FilePath)) + if (!Directory.Exists(Configuration?.FilePath)) { - var msgResult = MessageBox.Show($"{Configuration.FilePath} is not a valid path. Do you wish to try another path?", "Invalid Path Configuration", MessageBoxButton.YesNo, MessageBoxImage.Hand); + var msgResult = MessageBox.Show($"{Configuration?.FilePath} is not a valid path. Do you wish to try another path?", "Invalid Path Configuration", MessageBoxButton.YesNo, MessageBoxImage.Hand); if(msgResult != MessageBoxResult.Yes) { break; @@ -121,7 +144,7 @@ protected override void OnStartup(StartupEventArgs e) } } - if (!Directory.Exists(Configuration.FilePath)) + if (!Directory.Exists(Configuration?.FilePath)) { Shutdown(2); } diff --git a/MFDisplay/MainWindow.xaml.cs b/MFDisplay/MainWindow.xaml.cs index a6321b2..2333f7b 100644 --- a/MFDisplay/MainWindow.xaml.cs +++ b/MFDisplay/MainWindow.xaml.cs @@ -103,7 +103,7 @@ public void CreateMFDs() { Logger = Logger, Configuration = config, - FilePath = Path.Combine(Config.FilePath, SelectedModule.ModuleName) + FilePath = Config.FilePath }; newmfdWindow.Show(); if (newmfdWindow.IsMFDLoaded) @@ -214,7 +214,8 @@ private void CbModules_Loaded(object sender, RoutedEventArgs e) { Logger.Info($"Loading the requested configuration {PassedModule}..."); } - cbModules.SelectedValue = PassedModule ?? Config.DefaultConfig; + var selectedModule = PassedModule ?? Config.DefaultConfig; + cbModules.SelectedValue = selectedModule; } } diff --git a/MFDisplay/Properties/AssemblyInfo.cs b/MFDisplay/Properties/AssemblyInfo.cs index 75efcbc..896a243 100644 --- a/MFDisplay/Properties/AssemblyInfo.cs +++ b/MFDisplay/Properties/AssemblyInfo.cs @@ -51,5 +51,5 @@ // 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("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] diff --git a/MFDisplay/mfdsettings.config b/MFDisplay/mfdsettings.config index f522b9d..162faea 100644 --- a/MFDisplay/mfdsettings.config +++ b/MFDisplay/mfdsettings.config @@ -37,63 +37,104 @@ --> + saveClips="false" + filePath="F:\CTS\" + defaultConfig="FA-18CHV"> + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - + + + + + + + + + - + - + + - + - - - - - - - + + + + + - - + - - - - - + - + - - - - - - + + + + + + - + - - + + diff --git a/Setup/Setup.vdproj b/Setup/Setup.vdproj index 5f29800..d7ea171 100644 --- a/Setup/Setup.vdproj +++ b/Setup/Setup.vdproj @@ -27,13 +27,13 @@ } "Entry" { - "MsmKey" = "8:_05B98066D084A614AEB902C0E05F25B5" + "MsmKey" = "8:_04158AEC7430987976E9BDDBA9526695" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_09685492CDE26C38A87FA3A8C1D49728" + "MsmKey" = "8:_05B98066D084A614AEB902C0E05F25B5" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -45,12 +45,6 @@ } "Entry" { - "MsmKey" = "8:_117DDEC295AFB90E487F3E7D8CA9D2F1" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_12667BFBA8DD73F577EBA94AE6C92980" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" @@ -81,37 +75,31 @@ } "Entry" { - "MsmKey" = "8:_209E2AA6011E4E7CB4B257595E4398B3" + "MsmKey" = "8:_20833998ABDA30FD94ED717067CE827C" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_223721B34312DAF17E2C1E2339045035" + "MsmKey" = "8:_2428EC1839BD921B39D432E76AB5E090" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_256C9AA5AF6F1A1B56DE24A1920B67E1" + "MsmKey" = "8:_27FCAD2C5509C6EB7CA938441327C39F" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2851B831A73928BDC946DC5F831EDAC4" + "MsmKey" = "8:_2977C6C169D14C223BFC1F4696ECB306" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_2851B831A73928BDC946DC5F831EDAC4" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2977C6C169D14C223BFC1F4696ECB306" + "MsmKey" = "8:_29D9673708FF65193F6DB30B2C00F007" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -141,19 +129,31 @@ } "Entry" { - "MsmKey" = "8:_327BE9A101B135C3905769B598332915" + "MsmKey" = "8:_36C04D0737AC713685A423FB24861E01" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_36033C1482D0951F89472EDCCCE577A4" + "MsmKey" = "8:_3D1AE5D0E004D927CC85B4A971194BEE" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3D1AE5D0E004D927CC85B4A971194BEE" + "MsmKey" = "8:_3E5DE29E006BF22E484D130A7DD0D69B" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_41512415409B655DC15AF5F4A406DACF" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_420085F726AD3063A95497631A821CF2" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -165,6 +165,24 @@ } "Entry" { + "MsmKey" = "8:_47A2C9A50E451067160359F4DAEEED66" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_492FCD50D1EF2E895558AB33CBD6CC9C" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_4AC7A8CC7F7E038FA25A09C05DCA2562" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_554FFED1E65AF205EBDEAB006FFC5A94" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" @@ -178,7 +196,13 @@ "Entry" { "MsmKey" = "8:_5580EC5EAB0133686C75E4E8A11FA0F7" - "OwnerKey" = "8:_327BE9A101B135C3905769B598332915" + "OwnerKey" = "8:_69EC5B1E46BAEA64BBB82093ABDC13FA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_558F1FE79CC4115B9A73DD5E0E12E87A" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -202,7 +226,7 @@ "Entry" { "MsmKey" = "8:_65560EFEB5E34D666CCF1B16341568A8" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -214,18 +238,18 @@ "Entry" { "MsmKey" = "8:_68010B1FDA73F29F0BF98B62C0D96FCE" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6D530E4E6DA20FD6A5A8C956689169DE" + "MsmKey" = "8:_69EC5B1E46BAEA64BBB82093ABDC13FA" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6E2238B32E1FCBBF2E0AD73976337CF6" + "MsmKey" = "8:_6D530E4E6DA20FD6A5A8C956689169DE" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -237,13 +261,13 @@ } "Entry" { - "MsmKey" = "8:_6F436449A2BF55DC9AD61A6AC92E5D0A" + "MsmKey" = "8:_6F7BEA2D28ADF6841A54352C4DD84590" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_6F7BEA2D28ADF6841A54352C4DD84590" + "MsmKey" = "8:_71B3326F4231A7F57C64FC38DDAB258F" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -255,163 +279,163 @@ } "Entry" { - "MsmKey" = "8:_777DC689C0F163A29CEFE6F80BB979FE" + "MsmKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_782FCDBC9A5E9B0B36E06DF322CE0B68" + "MsmKey" = "8:_77663FECED9937A87409C8F84507C9B2" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A5706EDD071BEEEFAB43A1EEA0BFE35" + "MsmKey" = "8:_782FCDBC9A5E9B0B36E06DF322CE0B68" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7A5706EDD071BEEEFAB43A1EEA0BFE35" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "MsmKey" = "8:_85736D4FBD03130F65E11C5C8AF0A3C2" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7DEEA384806125832B2C659F0A5B68A0" + "MsmKey" = "8:_883879762DA2568E4E45CE4B7C9CA989" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7FE17C145386F7E2DBE7C71E4F66AA08" + "MsmKey" = "8:_899B16AC084CE3D512E7A18D39CCD2AD" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_83EC349ADF0B60C8510AAAB7A550A531" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_96F0F6C8787F40D385286407F0F5279C" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_83EC349ADF0B60C8510AAAB7A550A531" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "MsmKey" = "8:_9771474991B9240FD807E5C2B343F63F" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_85736D4FBD03130F65E11C5C8AF0A3C2" + "MsmKey" = "8:_985AAC973DA39DB409760254FAD4844C" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_872DE738F6A304AD629A654EC2EACAF5" - "OwnerKey" = "8:_7DEEA384806125832B2C659F0A5B68A0" + "MsmKey" = "8:_99E1F01CCD5D98C93BAF4E89B9E055E7" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_872DE738F6A304AD629A654EC2EACAF5" - "OwnerKey" = "8:_96F0F6C8787F40D385286407F0F5279C" + "MsmKey" = "8:_9AD3AF95B9C13B0360F50BE1170777DE" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_872DE738F6A304AD629A654EC2EACAF5" + "MsmKey" = "8:_9E601D85A4D79B276E2ADC5E1A3089E0" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_87398681B13780149F2F77178A080DA5" + "MsmKey" = "8:_9FB6EA5D9BC345CE807BCE8028AAA43D" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_8B9C35BAF7B1AC4E99AE5A5ACC61BF04" + "MsmKey" = "8:_A11126528F05DA72AFDF6E9B424E6749" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_949E3933719D757FC122B3E245A44EFE" + "MsmKey" = "8:_A33D6F2C0F16E13E95E30BDE505AB0E7" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_96F0F6C8787F40D385286407F0F5279C" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_A43EC06E9D0609D8BED6EBE07FEDC52C" + "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9771474991B9240FD807E5C2B343F63F" + "MsmKey" = "8:_A5E1D5AEEE892AA305E1328DFB656A91" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_985AAC973DA39DB409760254FAD4844C" + "MsmKey" = "8:_A8586DB2264882B260D39D8AF7B10D02" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_99E1F01CCD5D98C93BAF4E89B9E055E7" + "MsmKey" = "8:_AA8B49ED13D8349B50B85F0D8570991B" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9E601D85A4D79B276E2ADC5E1A3089E0" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_AB65652537850FC6BC2B48D9E8329D0C" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A01E2BCCACB0E1A389E05A11D406C127" + "MsmKey" = "8:_AF239025B667938EDD88CA0E80FD278A" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A33D6F2C0F16E13E95E30BDE505AB0E7" + "MsmKey" = "8:_B0C70F9F5EED6345F7AAE8C94B2F1E63" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A3E09AAFD79E6505AB6B75B8B2DFC9B0" + "MsmKey" = "8:_B389A783C699140A4598C1FD3A1BEFA3" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A43EC06E9D0609D8BED6EBE07FEDC52C" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_BD3F74E44222EBFA495607BAEBD814E5" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_A8586DB2264882B260D39D8AF7B10D02" + "MsmKey" = "8:_BDF83E27DD29C28EA6EC045A290E62E2" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA8B49ED13D8349B50B85F0D8570991B" + "MsmKey" = "8:_C06371E7F47B0CF2E96E302A8FDF3FAB" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AF239025B667938EDD88CA0E80FD278A" + "MsmKey" = "8:_C6572BE9FEECB056A4C1F675F538C270" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -429,12 +453,6 @@ } "Entry" { - "MsmKey" = "8:_CBC4A8AC3455569D35169DB3E76E2032" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_CC4DD7DE711A99E9E5C0EA599DDFB8AE" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" @@ -454,7 +472,7 @@ "Entry" { "MsmKey" = "8:_D31D7AF54A7814B701440DF4B6A941B2" - "OwnerKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "OwnerKey" = "8:_76C510C0BA16FAD27A33ECED3F98FE67" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -465,7 +483,7 @@ } "Entry" { - "MsmKey" = "8:_DCB806C34BABF14B10DC9D27E92C18E3" + "MsmKey" = "8:_E4836EA20F480A80002F2BA77DCEF5B2" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } @@ -477,260 +495,260 @@ } "Entry" { - "MsmKey" = "8:_E5DC91D5AD400DE67DF107E2433F2592" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_E622E4BEB9710A7FC19F45F44832CD81" + "OwnerKey" = "8:_B389A783C699140A4598C1FD3A1BEFA3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_ECA7F935AD9E8AC722B7BB4EF3F03627" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_E622E4BEB9710A7FC19F45F44832CD81" + "OwnerKey" = "8:_96F0F6C8787F40D385286407F0F5279C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F2B257AC4265D3D536AC2372CA244990" + "MsmKey" = "8:_E622E4BEB9710A7FC19F45F44832CD81" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F39289FF0C522D6D2C1E879109771D1D" + "MsmKey" = "8:_ECA7F935AD9E8AC722B7BB4EF3F03627" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F51B757563E6F51B4D56B025601F5993" + "MsmKey" = "8:_F2B257AC4265D3D536AC2372CA244990" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FAA7C947191EC051249B57F67F0978E9" + "MsmKey" = "8:_F39289FF0C522D6D2C1E879109771D1D" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FC62BB103FE5EDC10D6CD29FCF468F7C" + "MsmKey" = "8:_F51B757563E6F51B4D56B025601F5993" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FCDD64CBD912120BA14C57FD32920941" + "MsmKey" = "8:_FF9A015B59308D4F52AB4D71FA9A4E39" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FCE3170E4499B60551847BB75F47C053" + "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FEAC4D04B30C0817978A150EED498A02" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_96F0F6C8787F40D385286407F0F5279C" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FF9A015B59308D4F52AB4D71FA9A4E39" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_C9EE0F80E73A0D85EF92B0346C02680A" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5C490CFEF632485FA4C4D957379F7C4F" + "OwnerKey" = "8:_20833998ABDA30FD94ED717067CE827C" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_96F0F6C8787F40D385286407F0F5279C" + "OwnerKey" = "8:_420085F726AD3063A95497631A821CF2" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C9EE0F80E73A0D85EF92B0346C02680A" + "OwnerKey" = "8:_04158AEC7430987976E9BDDBA9526695" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CBC4A8AC3455569D35169DB3E76E2032" + "OwnerKey" = "8:_883879762DA2568E4E45CE4B7C9CA989" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_256C9AA5AF6F1A1B56DE24A1920B67E1" + "OwnerKey" = "8:_71B3326F4231A7F57C64FC38DDAB258F" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_09685492CDE26C38A87FA3A8C1D49728" + "OwnerKey" = "8:_47A2C9A50E451067160359F4DAEEED66" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_949E3933719D757FC122B3E245A44EFE" + "OwnerKey" = "8:_D31D7AF54A7814B701440DF4B6A941B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A01E2BCCACB0E1A389E05A11D406C127" + "OwnerKey" = "8:_AB65652537850FC6BC2B48D9E8329D0C" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FCE3170E4499B60551847BB75F47C053" + "OwnerKey" = "8:_BD3F74E44222EBFA495607BAEBD814E5" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D31D7AF54A7814B701440DF4B6A941B2" + "OwnerKey" = "8:_9AD3AF95B9C13B0360F50BE1170777DE" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_83EC349ADF0B60C8510AAAB7A550A531" + "OwnerKey" = "8:_27FCAD2C5509C6EB7CA938441327C39F" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_777DC689C0F163A29CEFE6F80BB979FE" + "OwnerKey" = "8:_29D9673708FF65193F6DB30B2C00F007" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7A5706EDD071BEEEFAB43A1EEA0BFE35" + "OwnerKey" = "8:_C6572BE9FEECB056A4C1F675F538C270" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2851B831A73928BDC946DC5F831EDAC4" + "OwnerKey" = "8:_4AC7A8CC7F7E038FA25A09C05DCA2562" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_223721B34312DAF17E2C1E2339045035" + "OwnerKey" = "8:_A5E1D5AEEE892AA305E1328DFB656A91" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FEAC4D04B30C0817978A150EED498A02" + "OwnerKey" = "8:_492FCD50D1EF2E895558AB33CBD6CC9C" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A3E09AAFD79E6505AB6B75B8B2DFC9B0" + "OwnerKey" = "8:_2428EC1839BD921B39D432E76AB5E090" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_36033C1482D0951F89472EDCCCE577A4" + "OwnerKey" = "8:_3E5DE29E006BF22E484D130A7DD0D69B" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FC62BB103FE5EDC10D6CD29FCF468F7C" + "OwnerKey" = "8:_A11126528F05DA72AFDF6E9B424E6749" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6E2238B32E1FCBBF2E0AD73976337CF6" + "OwnerKey" = "8:_899B16AC084CE3D512E7A18D39CCD2AD" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_327BE9A101B135C3905769B598332915" + "OwnerKey" = "8:_69EC5B1E46BAEA64BBB82093ABDC13FA" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_87398681B13780149F2F77178A080DA5" + "OwnerKey" = "8:_B0C70F9F5EED6345F7AAE8C94B2F1E63" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E5DC91D5AD400DE67DF107E2433F2592" + "OwnerKey" = "8:_E4836EA20F480A80002F2BA77DCEF5B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7FE17C145386F7E2DBE7C71E4F66AA08" + "OwnerKey" = "8:_C06371E7F47B0CF2E96E302A8FDF3FAB" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FAA7C947191EC051249B57F67F0978E9" + "OwnerKey" = "8:_BDF83E27DD29C28EA6EC045A290E62E2" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_209E2AA6011E4E7CB4B257595E4398B3" + "OwnerKey" = "8:_77663FECED9937A87409C8F84507C9B2" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_117DDEC295AFB90E487F3E7D8CA9D2F1" + "OwnerKey" = "8:_558F1FE79CC4115B9A73DD5E0E12E87A" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6F436449A2BF55DC9AD61A6AC92E5D0A" + "OwnerKey" = "8:_41512415409B655DC15AF5F4A406DACF" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8B9C35BAF7B1AC4E99AE5A5ACC61BF04" + "OwnerKey" = "8:_36C04D0737AC713685A423FB24861E01" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FCDD64CBD912120BA14C57FD32920941" + "OwnerKey" = "8:_9FB6EA5D9BC345CE807BCE8028AAA43D" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7DEEA384806125832B2C659F0A5B68A0" + "OwnerKey" = "8:_B389A783C699140A4598C1FD3A1BEFA3" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_872DE738F6A304AD629A654EC2EACAF5" + "OwnerKey" = "8:_E622E4BEB9710A7FC19F45F44832CD81" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -1160,20 +1178,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_05B98066D084A614AEB902C0E05F25B5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04158AEC7430987976E9BDDBA9526695" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.1.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_05B98066D084A614AEB902C0E05F25B5" + "_04158AEC7430987976E9BDDBA9526695" { - "Name" = "8:System.ComponentModel.EventBasedAsync.dll" + "Name" = "8:System.Security.Cryptography.X509Certificates.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" + "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1191,20 +1209,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_09685492CDE26C38A87FA3A8C1D49728" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_05B98066D084A614AEB902C0E05F25B5" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.1.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_09685492CDE26C38A87FA3A8C1D49728" + "_05B98066D084A614AEB902C0E05F25B5" { - "Name" = "8:System.Security.Cryptography.X509Certificates.dll" + "Name" = "8:System.ComponentModel.EventBasedAsync.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" + "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1253,37 +1271,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_117DDEC295AFB90E487F3E7D8CA9D2F1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.1.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_117DDEC295AFB90E487F3E7D8CA9D2F1" - { - "Name" = "8:System.Console.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Console.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12667BFBA8DD73F577EBA94AE6C92980" { "AssemblyRegister" = "3:1" @@ -1439,20 +1426,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_209E2AA6011E4E7CB4B257595E4398B3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_20833998ABDA30FD94ED717067CE827C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=4.0.3.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_209E2AA6011E4E7CB4B257595E4398B3" + "_20833998ABDA30FD94ED717067CE827C" { - "Name" = "8:System.Diagnostics.DiagnosticSource.dll" + "Name" = "8:System.Xml.ReaderWriter.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.DiagnosticSource.dll" + "SourcePath" = "8:System.Xml.ReaderWriter.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1470,20 +1457,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_223721B34312DAF17E2C1E2339045035" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2428EC1839BD921B39D432E76AB5E090" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_223721B34312DAF17E2C1E2339045035" + "_2428EC1839BD921B39D432E76AB5E090" { - "Name" = "8:System.Net.Sockets.dll" + "Name" = "8:System.Linq.Expressions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Sockets.dll" + "SourcePath" = "8:System.Linq.Expressions.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1501,20 +1488,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_256C9AA5AF6F1A1B56DE24A1920B67E1" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27FCAD2C5509C6EB7CA938441327C39F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_256C9AA5AF6F1A1B56DE24A1920B67E1" + "_27FCAD2C5509C6EB7CA938441327C39F" { - "Name" = "8:System.Text.RegularExpressions.dll" + "Name" = "8:System.Runtime.InteropServices.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.RegularExpressions.dll" + "SourcePath" = "8:System.Runtime.InteropServices.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1532,20 +1519,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2851B831A73928BDC946DC5F831EDAC4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2977C6C169D14C223BFC1F4696ECB306" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_2851B831A73928BDC946DC5F831EDAC4" + "_2977C6C169D14C223BFC1F4696ECB306" { - "Name" = "8:System.Reflection.dll" + "Name" = "8:System.ObjectModel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.dll" + "SourcePath" = "8:System.ObjectModel.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1563,20 +1550,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2977C6C169D14C223BFC1F4696ECB306" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_29D9673708FF65193F6DB30B2C00F007" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_2977C6C169D14C223BFC1F4696ECB306" + "_29D9673708FF65193F6DB30B2C00F007" { - "Name" = "8:System.ObjectModel.dll" + "Name" = "8:System.Runtime.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ObjectModel.dll" + "SourcePath" = "8:System.Runtime.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1707,20 +1694,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_327BE9A101B135C3905769B598332915" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36C04D0737AC713685A423FB24861E01" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" "ScatterAssemblies" { - "_327BE9A101B135C3905769B598332915" + "_36C04D0737AC713685A423FB24861E01" { - "Name" = "8:System.IO.Compression.ZipFile.dll" + "Name" = "8:Newtonsoft.Json.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.ZipFile.dll" + "SourcePath" = "8:Newtonsoft.Json.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1738,20 +1725,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36033C1482D0951F89472EDCCCE577A4" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3D1AE5D0E004D927CC85B4A971194BEE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_36033C1482D0951F89472EDCCCE577A4" + "_3D1AE5D0E004D927CC85B4A971194BEE" { - "Name" = "8:System.Linq.dll" + "Name" = "8:System.Text.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.dll" + "SourcePath" = "8:System.Text.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1769,20 +1756,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3D1AE5D0E004D927CC85B4A971194BEE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3E5DE29E006BF22E484D130A7DD0D69B" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_3D1AE5D0E004D927CC85B4A971194BEE" + "_3E5DE29E006BF22E484D130A7DD0D69B" { - "Name" = "8:System.Text.Encoding.dll" + "Name" = "8:System.Linq.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Text.Encoding.dll" + "SourcePath" = "8:System.Linq.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1800,20 +1787,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_430CA9450BB4BF2D5A4F66AEA3C1A60A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41512415409B655DC15AF5F4A406DACF" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_430CA9450BB4BF2D5A4F66AEA3C1A60A" + "_41512415409B655DC15AF5F4A406DACF" { - "Name" = "8:System.Dynamic.Runtime.dll" + "Name" = "8:System.AppContext.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Dynamic.Runtime.dll" + "SourcePath" = "8:System.AppContext.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1831,20 +1818,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_554FFED1E65AF205EBDEAB006FFC5A94" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_420085F726AD3063A95497631A821CF2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_554FFED1E65AF205EBDEAB006FFC5A94" + "_420085F726AD3063A95497631A821CF2" { - "Name" = "8:System.Threading.dll" + "Name" = "8:System.Text.RegularExpressions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.dll" + "SourcePath" = "8:System.Text.RegularExpressions.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1862,20 +1849,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5580EC5EAB0133686C75E4E8A11FA0F7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_430CA9450BB4BF2D5A4F66AEA3C1A60A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" + "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_5580EC5EAB0133686C75E4E8A11FA0F7" + "_430CA9450BB4BF2D5A4F66AEA3C1A60A" { - "Name" = "8:System.IO.Compression.FileSystem.dll" + "Name" = "8:System.Dynamic.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.FileSystem.dll" + "SourcePath" = "8:System.Dynamic.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1893,20 +1880,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A7CF31747E1A193DE789B12FEBF2252" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_47A2C9A50E451067160359F4DAEEED66" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_5A7CF31747E1A193DE789B12FEBF2252" + "_47A2C9A50E451067160359F4DAEEED66" { - "Name" = "8:System.Linq.Parallel.dll" + "Name" = "8:System.Security.Cryptography.Algorithms.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.Parallel.dll" + "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1924,20 +1911,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_65560EFEB5E34D666CCF1B16341568A8" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_492FCD50D1EF2E895558AB33CBD6CC9C" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_65560EFEB5E34D666CCF1B16341568A8" + "_492FCD50D1EF2E895558AB33CBD6CC9C" { - "Name" = "8:System.Reflection.Extensions.dll" + "Name" = "8:System.Net.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Extensions.dll" + "SourcePath" = "8:System.Net.Http.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1955,20 +1942,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_68010B1FDA73F29F0BF98B62C0D96FCE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4AC7A8CC7F7E038FA25A09C05DCA2562" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_68010B1FDA73F29F0BF98B62C0D96FCE" + "_4AC7A8CC7F7E038FA25A09C05DCA2562" { - "Name" = "8:System.Resources.ResourceManager.dll" + "Name" = "8:System.Reflection.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Resources.ResourceManager.dll" + "SourcePath" = "8:System.Reflection.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -1986,20 +1973,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D530E4E6DA20FD6A5A8C956689169DE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_554FFED1E65AF205EBDEAB006FFC5A94" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_6D530E4E6DA20FD6A5A8C956689169DE" + "_554FFED1E65AF205EBDEAB006FFC5A94" { - "Name" = "8:System.Xml.XmlSerializer.dll" + "Name" = "8:System.Threading.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XmlSerializer.dll" + "SourcePath" = "8:System.Threading.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2017,20 +2004,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E2238B32E1FCBBF2E0AD73976337CF6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5580EC5EAB0133686C75E4E8A11FA0F7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" "ScatterAssemblies" { - "_6E2238B32E1FCBBF2E0AD73976337CF6" + "_5580EC5EAB0133686C75E4E8A11FA0F7" { - "Name" = "8:System.IO.FileSystem.dll" + "Name" = "8:System.IO.Compression.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.FileSystem.dll" + "SourcePath" = "8:System.IO.Compression.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2048,20 +2035,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6EA1062112274075E60F8369C07D692A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_558F1FE79CC4115B9A73DD5E0E12E87A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.1.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_6EA1062112274075E60F8369C07D692A" + "_558F1FE79CC4115B9A73DD5E0E12E87A" { - "Name" = "8:System.Reflection.Emit.ILGeneration.dll" + "Name" = "8:System.Console.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" + "SourcePath" = "8:System.Console.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2079,20 +2066,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F436449A2BF55DC9AD61A6AC92E5D0A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A7CF31747E1A193DE789B12FEBF2252" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_6F436449A2BF55DC9AD61A6AC92E5D0A" + "_5A7CF31747E1A193DE789B12FEBF2252" { - "Name" = "8:System.AppContext.dll" + "Name" = "8:System.Linq.Parallel.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.AppContext.dll" + "SourcePath" = "8:System.Linq.Parallel.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2110,20 +2097,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F7BEA2D28ADF6841A54352C4DD84590" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_65560EFEB5E34D666CCF1B16341568A8" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_6F7BEA2D28ADF6841A54352C4DD84590" + "_65560EFEB5E34D666CCF1B16341568A8" { - "Name" = "8:System.Reflection.Primitives.dll" + "Name" = "8:System.Reflection.Extensions.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Reflection.Primitives.dll" + "SourcePath" = "8:System.Reflection.Extensions.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2141,10 +2128,21 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74E1B3E1D6B64347A3A68537D3B9C1FA" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_68010B1FDA73F29F0BF98B62C0D96FCE" { - "SourcePath" = "8:..\\MFDisplay\\Images\\Vyper_FC.png" - "TargetName" = "8:Vyper_FC.png" + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "ScatterAssemblies" + { + "_68010B1FDA73F29F0BF98B62C0D96FCE" + { + "Name" = "8:System.Resources.ResourceManager.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Resources.ResourceManager.dll" + "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" "Condition" = "8:" @@ -2157,24 +2155,24 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:FALSE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_777DC689C0F163A29CEFE6F80BB979FE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_69EC5B1E46BAEA64BBB82093ABDC13FA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_777DC689C0F163A29CEFE6F80BB979FE" + "_69EC5B1E46BAEA64BBB82093ABDC13FA" { - "Name" = "8:System.Runtime.Extensions.dll" + "Name" = "8:System.IO.Compression.ZipFile.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Extensions.dll" + "SourcePath" = "8:System.IO.Compression.ZipFile.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2192,20 +2190,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_782FCDBC9A5E9B0B36E06DF322CE0B68" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D530E4E6DA20FD6A5A8C956689169DE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_782FCDBC9A5E9B0B36E06DF322CE0B68" + "_6D530E4E6DA20FD6A5A8C956689169DE" { - "Name" = "8:System.Collections.dll" + "Name" = "8:System.Xml.XmlSerializer.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Collections.dll" + "SourcePath" = "8:System.Xml.XmlSerializer.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2223,20 +2221,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A5706EDD071BEEEFAB43A1EEA0BFE35" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6EA1062112274075E60F8369C07D692A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_7A5706EDD071BEEEFAB43A1EEA0BFE35" + "_6EA1062112274075E60F8369C07D692A" { - "Name" = "8:System.Runtime.dll" + "Name" = "8:System.Reflection.Emit.ILGeneration.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.dll" + "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2254,20 +2252,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7DEEA384806125832B2C659F0A5B68A0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F7BEA2D28ADF6841A54352C4DD84590" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:MFDSettingsManager, Version=2.0.0.0, Culture=neutral, processorArchitecture=x86" + "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_7DEEA384806125832B2C659F0A5B68A0" + "_6F7BEA2D28ADF6841A54352C4DD84590" { - "Name" = "8:MFDSettingsManager.dll" + "Name" = "8:System.Reflection.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:MFDSettingsManager.dll" + "SourcePath" = "8:System.Reflection.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2285,20 +2283,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7FE17C145386F7E2DBE7C71E4F66AA08" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71B3326F4231A7F57C64FC38DDAB258F" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7FE17C145386F7E2DBE7C71E4F66AA08" + "_71B3326F4231A7F57C64FC38DDAB258F" { - "Name" = "8:System.Globalization.Calendars.dll" + "Name" = "8:System.Security.Cryptography.Encoding.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.Calendars.dll" + "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2316,20 +2314,40 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_83EC349ADF0B60C8510AAAB7A550A531" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74E1B3E1D6B64347A3A68537D3B9C1FA" + { + "SourcePath" = "8:..\\MFDisplay\\Images\\Vyper_FC.png" + "TargetName" = "8:Vyper_FC.png" + "Tag" = "8:" + "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:TRUE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76C510C0BA16FAD27A33ECED3F98FE67" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_83EC349ADF0B60C8510AAAB7A550A531" + "_76C510C0BA16FAD27A33ECED3F98FE67" { - "Name" = "8:System.Runtime.InteropServices.dll" + "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.dll" + "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2347,20 +2365,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85736D4FBD03130F65E11C5C8AF0A3C2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_77663FECED9937A87409C8F84507C9B2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=4.0.3.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" "ScatterAssemblies" { - "_85736D4FBD03130F65E11C5C8AF0A3C2" + "_77663FECED9937A87409C8F84507C9B2" { - "Name" = "8:System.ServiceModel.Http.dll" + "Name" = "8:System.Diagnostics.DiagnosticSource.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ServiceModel.Http.dll" + "SourcePath" = "8:System.Diagnostics.DiagnosticSource.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2378,20 +2396,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_872DE738F6A304AD629A654EC2EACAF5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_782FCDBC9A5E9B0B36E06DF322CE0B68" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_872DE738F6A304AD629A654EC2EACAF5" + "_782FCDBC9A5E9B0B36E06DF322CE0B68" { - "Name" = "8:log4net.dll" + "Name" = "8:System.Collections.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:log4net.dll" + "SourcePath" = "8:System.Collections.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2409,20 +2427,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87398681B13780149F2F77178A080DA5" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85736D4FBD03130F65E11C5C8AF0A3C2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_87398681B13780149F2F77178A080DA5" + "_85736D4FBD03130F65E11C5C8AF0A3C2" { - "Name" = "8:System.IO.Compression.dll" + "Name" = "8:System.ServiceModel.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.dll" + "SourcePath" = "8:System.ServiceModel.Http.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2440,20 +2458,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B9C35BAF7B1AC4E99AE5A5ACC61BF04" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_883879762DA2568E4E45CE4B7C9CA989" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_8B9C35BAF7B1AC4E99AE5A5ACC61BF04" + "_883879762DA2568E4E45CE4B7C9CA989" { - "Name" = "8:Newtonsoft.Json.dll" + "Name" = "8:System.Security.Cryptography.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Newtonsoft.Json.dll" + "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2471,20 +2489,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_949E3933719D757FC122B3E245A44EFE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_899B16AC084CE3D512E7A18D39CCD2AD" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_949E3933719D757FC122B3E245A44EFE" + "_899B16AC084CE3D512E7A18D39CCD2AD" { - "Name" = "8:System.Security.Cryptography.Primitives.dll" + "Name" = "8:System.IO.FileSystem.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" + "SourcePath" = "8:System.IO.FileSystem.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2595,6 +2613,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9AD3AF95B9C13B0360F50BE1170777DE" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_9AD3AF95B9C13B0360F50BE1170777DE" + { + "Name" = "8:System.Reflection.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Reflection.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9E601D85A4D79B276E2ADC5E1A3089E0" { "AssemblyRegister" = "3:1" @@ -2626,20 +2675,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A01E2BCCACB0E1A389E05A11D406C127" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9FB6EA5D9BC345CE807BCE8028AAA43D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A01E2BCCACB0E1A389E05A11D406C127" + "_9FB6EA5D9BC345CE807BCE8028AAA43D" { - "Name" = "8:System.Security.Cryptography.Encoding.dll" + "Name" = "8:Microsoft.Win32.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" + "SourcePath" = "8:Microsoft.Win32.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2657,20 +2706,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A33D6F2C0F16E13E95E30BDE505AB0E7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A11126528F05DA72AFDF6E9B424E6749" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_A33D6F2C0F16E13E95E30BDE505AB0E7" + "_A11126528F05DA72AFDF6E9B424E6749" { - "Name" = "8:System.Net.Requests.dll" + "Name" = "8:System.IO.FileSystem.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Requests.dll" + "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2688,20 +2737,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A3E09AAFD79E6505AB6B75B8B2DFC9B0" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A33D6F2C0F16E13E95E30BDE505AB0E7" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_A3E09AAFD79E6505AB6B75B8B2DFC9B0" + "_A33D6F2C0F16E13E95E30BDE505AB0E7" { - "Name" = "8:System.Linq.Expressions.dll" + "Name" = "8:System.Net.Requests.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Linq.Expressions.dll" + "SourcePath" = "8:System.Net.Requests.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2750,6 +2799,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A5E1D5AEEE892AA305E1328DFB656A91" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_A5E1D5AEEE892AA305E1328DFB656A91" + { + "Name" = "8:System.Net.Sockets.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Net.Sockets.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A8586DB2264882B260D39D8AF7B10D02" { "AssemblyRegister" = "3:1" @@ -2812,6 +2892,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AB65652537850FC6BC2B48D9E8329D0C" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_AB65652537850FC6BC2B48D9E8329D0C" + { + "Name" = "8:System.Runtime.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Runtime.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AF239025B667938EDD88CA0E80FD278A" { "AssemblyRegister" = "3:1" @@ -2843,20 +2954,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C9EE0F80E73A0D85EF92B0346C02680A" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B0C70F9F5EED6345F7AAE8C94B2F1E63" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_C9EE0F80E73A0D85EF92B0346C02680A" + "_B0C70F9F5EED6345F7AAE8C94B2F1E63" { - "Name" = "8:System.Net.Http.dll" + "Name" = "8:System.IO.Compression.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Http.dll" + "SourcePath" = "8:System.IO.Compression.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2874,20 +2985,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB3050F76789012814D8359CB7E22781" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B389A783C699140A4598C1FD3A1BEFA3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:MFDSettingsManager, Version=2.0.0.0, Culture=neutral, processorArchitecture=x86" "ScatterAssemblies" { - "_CB3050F76789012814D8359CB7E22781" + "_B389A783C699140A4598C1FD3A1BEFA3" { - "Name" = "8:System.Globalization.dll" + "Name" = "8:MFDSettingsManager.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Globalization.dll" + "SourcePath" = "8:MFDSettingsManager.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2905,20 +3016,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CBC4A8AC3455569D35169DB3E76E2032" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD3F74E44222EBFA495607BAEBD814E5" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CBC4A8AC3455569D35169DB3E76E2032" + "_BD3F74E44222EBFA495607BAEBD814E5" { - "Name" = "8:System.Xml.ReaderWriter.dll" + "Name" = "8:System.Runtime.InteropServices.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.ReaderWriter.dll" + "SourcePath" = "8:System.Runtime.InteropServices.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2936,20 +3047,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CC4DD7DE711A99E9E5C0EA599DDFB8AE" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDF83E27DD29C28EA6EC045A290E62E2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CC4DD7DE711A99E9E5C0EA599DDFB8AE" + "_BDF83E27DD29C28EA6EC045A290E62E2" { - "Name" = "8:System.Diagnostics.Contracts.dll" + "Name" = "8:System.Diagnostics.Tracing.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Contracts.dll" + "SourcePath" = "8:System.Diagnostics.Tracing.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2967,20 +3078,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF3D8EFF7C4B1921148AAC6D603212F3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C06371E7F47B0CF2E96E302A8FDF3FAB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_CF3D8EFF7C4B1921148AAC6D603212F3" + "_C06371E7F47B0CF2E96E302A8FDF3FAB" { - "Name" = "8:System.Net.Primitives.dll" + "Name" = "8:System.Globalization.Calendars.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Primitives.dll" + "SourcePath" = "8:System.Globalization.Calendars.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -2998,20 +3109,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0EB9B09672445E62A943D7F6286B6FB" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C6572BE9FEECB056A4C1F675F538C270" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_D0EB9B09672445E62A943D7F6286B6FB" + "_C6572BE9FEECB056A4C1F675F538C270" { - "Name" = "8:System.Runtime.Handles.dll" + "Name" = "8:System.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.Handles.dll" + "SourcePath" = "8:System.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3029,20 +3140,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D31D7AF54A7814B701440DF4B6A941B2" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C9EE0F80E73A0D85EF92B0346C02680A" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_D31D7AF54A7814B701440DF4B6A941B2" + "_C9EE0F80E73A0D85EF92B0346C02680A" { - "Name" = "8:System.Threading.dll" + "Name" = "8:System.Net.Http.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Threading.dll" + "SourcePath" = "8:System.Net.Http.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3060,20 +3171,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D954613435CD8042036DE5F0012ECC1B" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CB3050F76789012814D8359CB7E22781" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_D954613435CD8042036DE5F0012ECC1B" + "_CB3050F76789012814D8359CB7E22781" { - "Name" = "8:System.IO.Compression.dll" + "Name" = "8:System.Globalization.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.Compression.dll" + "SourcePath" = "8:System.Globalization.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3091,20 +3202,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DCB806C34BABF14B10DC9D27E92C18E3" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CC4DD7DE711A99E9E5C0EA599DDFB8AE" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_DCB806C34BABF14B10DC9D27E92C18E3" + "_CC4DD7DE711A99E9E5C0EA599DDFB8AE" { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "Name" = "8:System.Diagnostics.Contracts.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" + "SourcePath" = "8:System.Diagnostics.Contracts.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3122,20 +3233,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E4F1D83679DEC5510E296DE420B77D01" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF3D8EFF7C4B1921148AAC6D603212F3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_E4F1D83679DEC5510E296DE420B77D01" + "_CF3D8EFF7C4B1921148AAC6D603212F3" { - "Name" = "8:System.Diagnostics.Tools.dll" + "Name" = "8:System.Net.Primitives.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Tools.dll" + "SourcePath" = "8:System.Net.Primitives.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3153,20 +3264,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5DC91D5AD400DE67DF107E2433F2592" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0EB9B09672445E62A943D7F6286B6FB" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_E5DC91D5AD400DE67DF107E2433F2592" + "_D0EB9B09672445E62A943D7F6286B6FB" { - "Name" = "8:System.IO.dll" + "Name" = "8:System.Runtime.Handles.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.dll" + "SourcePath" = "8:System.Runtime.Handles.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3184,20 +3295,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECA7F935AD9E8AC722B7BB4EF3F03627" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D31D7AF54A7814B701440DF4B6A941B2" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_ECA7F935AD9E8AC722B7BB4EF3F03627" + "_D31D7AF54A7814B701440DF4B6A941B2" { - "Name" = "8:System.Net.NetworkInformation.dll" + "Name" = "8:System.Threading.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.NetworkInformation.dll" + "SourcePath" = "8:System.Threading.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3215,20 +3326,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2B257AC4265D3D536AC2372CA244990" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D954613435CD8042036DE5F0012ECC1B" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyIsInGAC" = "11:TRUE" + "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F2B257AC4265D3D536AC2372CA244990" + "_D954613435CD8042036DE5F0012ECC1B" { - "Name" = "8:System.ServiceModel.NetTcp.dll" + "Name" = "8:System.IO.Compression.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.ServiceModel.NetTcp.dll" + "SourcePath" = "8:System.IO.Compression.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3246,20 +3357,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F39289FF0C522D6D2C1E879109771D1D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E4836EA20F480A80002F2BA77DCEF5B2" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_F39289FF0C522D6D2C1E879109771D1D" + "_E4836EA20F480A80002F2BA77DCEF5B2" { - "Name" = "8:System.Xml.XDocument.dll" + "Name" = "8:System.IO.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Xml.XDocument.dll" + "SourcePath" = "8:System.IO.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3277,20 +3388,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F51B757563E6F51B4D56B025601F5993" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E4F1D83679DEC5510E296DE420B77D01" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_F51B757563E6F51B4D56B025601F5993" + "_E4F1D83679DEC5510E296DE420B77D01" { - "Name" = "8:System.Diagnostics.Debug.dll" + "Name" = "8:System.Diagnostics.Tools.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Debug.dll" + "SourcePath" = "8:System.Diagnostics.Tools.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3308,20 +3419,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FAA7C947191EC051249B57F67F0978E9" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E622E4BEB9710A7FC19F45F44832CD81" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL" "ScatterAssemblies" { - "_FAA7C947191EC051249B57F67F0978E9" + "_E622E4BEB9710A7FC19F45F44832CD81" { - "Name" = "8:System.Diagnostics.Tracing.dll" + "Name" = "8:log4net.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Diagnostics.Tracing.dll" + "SourcePath" = "8:log4net.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3339,20 +3450,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FC62BB103FE5EDC10D6CD29FCF468F7C" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECA7F935AD9E8AC722B7BB4EF3F03627" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_FC62BB103FE5EDC10D6CD29FCF468F7C" + "_ECA7F935AD9E8AC722B7BB4EF3F03627" { - "Name" = "8:System.IO.FileSystem.Primitives.dll" + "Name" = "8:System.Net.NetworkInformation.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" + "SourcePath" = "8:System.Net.NetworkInformation.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3370,20 +3481,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FCDD64CBD912120BA14C57FD32920941" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2B257AC4265D3D536AC2372CA244990" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_FCDD64CBD912120BA14C57FD32920941" + "_F2B257AC4265D3D536AC2372CA244990" { - "Name" = "8:Microsoft.Win32.Primitives.dll" + "Name" = "8:System.ServiceModel.NetTcp.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Win32.Primitives.dll" + "SourcePath" = "8:System.ServiceModel.NetTcp.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3401,20 +3512,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FCE3170E4499B60551847BB75F47C053" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F39289FF0C522D6D2C1E879109771D1D" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_FCE3170E4499B60551847BB75F47C053" + "_F39289FF0C522D6D2C1E879109771D1D" { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" + "Name" = "8:System.Xml.XDocument.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" + "SourcePath" = "8:System.Xml.XDocument.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3432,20 +3543,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FEAC4D04B30C0817978A150EED498A02" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F51B757563E6F51B4D56B025601F5993" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_FEAC4D04B30C0817978A150EED498A02" + "_F51B757563E6F51B4D56B025601F5993" { - "Name" = "8:System.Net.Http.dll" + "Name" = "8:System.Diagnostics.Debug.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Net.Http.dll" + "SourcePath" = "8:System.Diagnostics.Debug.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_1E1F1E7898AD453989E7B4684362A4DE" @@ -3605,15 +3716,15 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:MFD4CTS" - "ProductCode" = "8:{03237851-D5A4-420E-B6F2-37871330FAB6}" - "PackageCode" = "8:{E1446536-9869-47F6-A058-2F5FD8AEA749}" + "ProductCode" = "8:{37B3F3B7-D09C-4916-8DF5-51B1DCFFB83A}" + "PackageCode" = "8:{F9D79410-32ED-4CA4-BE2B-229AE1EFB962}" "UpgradeCode" = "8:{684D58BF-80C4-4679-8A57-A5856787407F}" "AspNetVersion" = "8:4.0.30319.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:TRUE" - "ProductVersion" = "8:2.0.1" + "ProductVersion" = "8:2.1.0" "Manufacturer" = "8:Vyper Industries" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:https://github.com/ScottyMac52/MFDisplay/issues"