diff --git a/Compatibility/App.config b/Compatibility/App.config
new file mode 100644
index 000000000..2370527cb
--- /dev/null
+++ b/Compatibility/App.config
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Compatibility/App.xaml b/Compatibility/App.xaml
new file mode 100644
index 000000000..bba22ed43
--- /dev/null
+++ b/Compatibility/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/Compatibility/App.xaml.cs b/Compatibility/App.xaml.cs
new file mode 100644
index 000000000..728204c19
--- /dev/null
+++ b/Compatibility/App.xaml.cs
@@ -0,0 +1,21 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace Wpf_AppCompat_Quirks
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Compatibility/AppCompat-Quirks.netcore.csproj b/Compatibility/AppCompat-Quirks.netcore.csproj
new file mode 100644
index 000000000..e34273dd3
--- /dev/null
+++ b/Compatibility/AppCompat-Quirks.netcore.csproj
@@ -0,0 +1,10 @@
+
+
+ netcoreapp3.0
+ WinExe
+ AppCompat_Quirks
+ true
+ app.manifest
+
+
+
\ No newline at end of file
diff --git a/Compatibility/AppContextInformation.cs b/Compatibility/AppContextInformation.cs
new file mode 100644
index 000000000..8d66be856
--- /dev/null
+++ b/Compatibility/AppContextInformation.cs
@@ -0,0 +1,14 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+namespace Wpf_AppCompat_Quirks
+{
+ public class CompatSwitchInformation
+ {
+ public string Class { get; set; }
+ public string SwitchName { get; set; }
+ public string DefaultValue { get; set; }
+ public string SettingsSource { get; set; }
+ }
+}
diff --git a/Compatibility/MainWindow.xaml b/Compatibility/MainWindow.xaml
new file mode 100644
index 000000000..f4f5951db
--- /dev/null
+++ b/Compatibility/MainWindow.xaml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Compatibility/MainWindow.xaml.cs b/Compatibility/MainWindow.xaml.cs
new file mode 100644
index 000000000..de75673ed
--- /dev/null
+++ b/Compatibility/MainWindow.xaml.cs
@@ -0,0 +1,300 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.ComponentModel;
+using System.Diagnostics;
+using System.Linq;
+using System.Reflection;
+using System.Windows;
+
+
+// runtimeconfig.template.json replaces App.Config based AppContext configuration
+// App.config is still used for WPF's old style configuration switches (BaseCompatibilityPreferences class, for e.g.)
+
+namespace Wpf_AppCompat_Quirks
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window, INotifyPropertyChanged
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ DataContext = this;
+ }
+
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ public static Type GetAppContextSwitchType(string className)
+ {
+ Type tSwitch = null;
+ switch (className)
+ {
+ case "BaseAppContextSwitches":
+ tSwitch = Assembly.Load("WindowsBase").GetType($"MS.Internal.BaseAppContextSwitches");
+ break;
+ case "AccessibilitySwitches":
+ tSwitch = Assembly.Load("WindowsBase").GetType($"System.Windows.AccessibilitySwitches");
+ break;
+ case "CoreAppContextSwitches":
+ tSwitch = Assembly.Load("PresentationCore").GetType("MS.Internal.CoreAppContextSwitches");
+ break;
+ case "FrameworkAppContextSwitches":
+ tSwitch = Assembly.Load("PresentationFramework").GetType("MS.Internal.FrameworkAppContextSwitches");
+ break;
+ case "BuildTasksAppContextSwitches":
+ tSwitch = Assembly.Load("PresentationBuildTasks").GetType("MS.Internal.BuildTasksAppContextSwitches");
+ break;
+ }
+
+ return tSwitch;
+ }
+
+ private Type GetCompatPreferenceType(string compatPreferenceClass)
+ {
+ Type tCompatPref = null;
+ switch (compatPreferenceClass)
+ {
+ case "BaseCompatibilityPreferences":
+ tCompatPref = Assembly.Load("WindowsBase").GetType($"System.Windows.BaseCompatibilityPreferences");
+ break;
+ case "CoreCompatibilityPreferences":
+ tCompatPref = Assembly.Load("PresentationCore").GetType($"System.Windows.CoreCompatibilityPreferences");
+ break;
+ case "FrameworkCompatibilityPreferences":
+ tCompatPref = Assembly.Load("PresentationFramework").GetType($"System.Windows.FrameworkCompatibilityPreferences");
+ break;
+
+ }
+ return tCompatPref;
+ }
+
+ public static bool TryGetAppContextSwitchValue(string className, string switchName, out bool switchValue)
+ {
+ switchValue = false;
+
+ Type tSwitch = GetAppContextSwitchType(className);
+
+ if (tSwitch == null)
+ {
+ return false;
+ }
+
+ var pProperty = tSwitch.GetProperty(switchName, BindingFlags.Static | BindingFlags.Public);
+ if (pProperty != null)
+ {
+ try
+ {
+ switchValue = (bool)pProperty.GetValue(null);
+ return true;
+ }
+ catch { }
+ }
+
+ return false;
+ }
+
+ private bool TryGetCompatibilityPreferenceSwitchValue(string compatPreferenceClass, string switchName, out bool switchValue)
+ {
+ switchValue = false;
+ Type tSwitch = GetCompatPreferenceType(compatPreferenceClass);
+ if (tSwitch == null)
+ {
+ return false;
+ }
+
+ var pProperty = tSwitch.GetProperty(switchName, BindingFlags.Static | BindingFlags.Public);
+ if (pProperty == null)
+ {
+ pProperty = tSwitch.GetProperty(switchName, BindingFlags.Static | BindingFlags.NonPublic);
+ }
+
+ if (pProperty != null)
+ {
+ try
+ {
+ switchValue = (bool)pProperty.GetValue(null);
+ return true;
+ }
+ catch
+ {
+ }
+ }
+
+ return false;
+ }
+
+ private bool TryGetCompatibilityPreferenceSwitchValue(string compatPreferenceClass, string switchName, out string switchString)
+ {
+ switchString = null;
+ Type tSwitch = GetCompatPreferenceType(compatPreferenceClass);
+ if (tSwitch == null)
+ {
+ return false;
+ }
+
+ var pProperty = tSwitch.GetProperty(switchName, BindingFlags.Static | BindingFlags.Public);
+ if (pProperty == null)
+ {
+ pProperty = tSwitch.GetProperty(switchName, BindingFlags.Static | BindingFlags.NonPublic);
+ }
+
+ if (pProperty != null)
+ {
+ try
+ {
+ object o = pProperty.GetValue(null);
+ if (pProperty.PropertyType == typeof(bool?))
+ {
+ bool? b = (bool?)o;
+ if (!b.HasValue)
+ {
+ switchString = "(bool?)null";
+ }
+ else
+ {
+ switchString = $"(bool?){b.Value.ToString()}";
+ }
+ return true;
+ }
+
+ switchString = o.ToString();
+ return true;
+ }
+ catch
+ {
+ }
+ }
+
+ return false;
+ }
+
+ private void Window_Loaded(object sender, RoutedEventArgs e)
+ {
+ PopulateAppContextInformation();
+ }
+
+ private void PopulateAppContextInformation()
+ {
+ string[] appContextClasses =
+ {
+ "BaseAppContextSwitches",
+ "CoreAppContextSwitches",
+ "FrameworkAppContextSwitches",
+ "AccessibilitySwitches",
+ //"BuildTasksAppContextSwitches"
+ };
+
+ foreach (var appContextClass in appContextClasses)
+ {
+ var tSwitch = GetAppContextSwitchType(appContextClass);
+ var properties = tSwitch.GetProperties();
+ foreach (var property in properties)
+ {
+ if (TryGetAppContextSwitchValue(appContextClass, property.Name, out bool switchValue))
+ {
+ AppContextSwitches.Add(
+ new CompatSwitchInformation()
+ {
+ Class = appContextClass,
+ SwitchName = property.Name,
+ DefaultValue = switchValue.ToString(),
+ SettingsSource = "runtimeconfig.template.json"
+ });
+ }
+ else
+ {
+ Debug.WriteLine(property.Name);
+ }
+ }
+ }
+
+ string[] compatibilityPreferenceClasses =
+ {
+ "CoreCompatibilityPreferences",
+ "BaseCompatibilityPreferences",
+ "FrameworkCompatibilityPreferences"
+ };
+
+ foreach (var compatPreferenceClass in compatibilityPreferenceClasses)
+ {
+ var tPref = GetCompatPreferenceType(compatPreferenceClass);
+ var properties = tPref.GetProperties().Union(tPref.GetProperties(BindingFlags.Static | BindingFlags.NonPublic)).ToList() ;
+
+ foreach (var property in properties)
+ {
+ if (TryGetCompatibilityPreferenceSwitchValue(compatPreferenceClass, property.Name, out bool switchValue))
+ {
+ CompatibilityPreferences.Add(new CompatSwitchInformation()
+ {
+ Class = compatPreferenceClass,
+ SwitchName = property.Name,
+ DefaultValue = switchValue.ToString(),
+ SettingsSource = "App.config"
+ });
+ }
+ else if (TryGetCompatibilityPreferenceSwitchValue(compatPreferenceClass, property.Name, out string switchString))
+ {
+ CompatibilityPreferences.Add(new CompatSwitchInformation()
+ {
+ Class = compatPreferenceClass,
+ SwitchName = property.Name,
+ DefaultValue = switchString,
+ SettingsSource = "App.config"
+ });
+ }
+ else
+ {
+ Debug.WriteLine(property.Name);
+ }
+ }
+ }
+ }
+
+
+
+ private ObservableCollection _appContextSwitches;
+ public ObservableCollection AppContextSwitches
+ {
+ get
+ {
+ if (_appContextSwitches == null)
+ {
+ AppContextSwitches = new ObservableCollection();
+ }
+ return _appContextSwitches;
+ }
+
+ set
+ {
+ _appContextSwitches = value;
+ PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(AppContextSwitches)));
+ }
+ }
+
+ private ObservableCollection _compatibilityPreferences;
+ public ObservableCollection CompatibilityPreferences
+ {
+ get
+ {
+ if (_compatibilityPreferences == null)
+ {
+ CompatibilityPreferences = new ObservableCollection();
+ }
+ return _compatibilityPreferences;
+ }
+
+ set
+ {
+ _compatibilityPreferences = value;
+ PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(CompatibilityPreferences)));
+ }
+ }
+ }
+}
diff --git a/Compatibility/README.md b/Compatibility/README.md
new file mode 100644
index 000000000..eb5e118f1
--- /dev/null
+++ b/Compatibility/README.md
@@ -0,0 +1,28 @@
+## .NET Core 3.0 - Applicaiton Compatibility Quirks HOWTO
+
+This sample shows how Application Compatibility quirks are enabled in a WPF application.
+
+There are two quriking infrastructures used in WPF
+
+- AppContext
+- CompatibilityPreferencs
+
+### AppContext
+
+`AppContext` based quirks are set in `runtimeconfig.template.json`. Alternatively, they can also be enabled in code. the documentation about [`System.AppContext`](https://docs.microsoft.com/en-us/dotnet/api/system.appcontext?view=netcore-3.0) provides a detailed overview of programmatic access to these quirking flags.
+
+These flags are no longer set in `App.Config` as was the practice in .NET Framework applications - instead, they should be set in `runtimeconfig.template.json`. This project shows an example [`runtimeconfig.template.json`](runtimeconfig.template.json) containing all available `AppContext` based quirks. The default values for each flag, and related documentation is also provided in this file.
+
+### `CompatibilityPreferences`
+
+WPF also uses an `App.config` based quirking system that are implemented by the following types:
+
+- `System.Windows.CoreCompatibilityPreferences`
+- `System.Windows.BaseCompatibilityPreferences`
+- `System.Windows.FrameworkComatibilityPreferences`
+
+A sample [`App.Config`](App.config) is also provided, which lists all supported flags along with their respective default values and documentation.
+
+Running this app will list all the supported flags, and show the respective *default* flag-values.
+
+
\ No newline at end of file
diff --git a/Compatibility/app.manifest b/Compatibility/app.manifest
new file mode 100644
index 000000000..5a5199025
--- /dev/null
+++ b/Compatibility/app.manifest
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PerMonitor,PerMonitorV2
+
+
+
+
+
+
+
diff --git a/Compatibility/images/screenshot.png b/Compatibility/images/screenshot.png
new file mode 100644
index 000000000..29b941ada
Binary files /dev/null and b/Compatibility/images/screenshot.png differ
diff --git a/Compatibility/runtimeconfig.template.json b/Compatibility/runtimeconfig.template.json
new file mode 100644
index 000000000..4ad710923
--- /dev/null
+++ b/Compatibility/runtimeconfig.template.json
@@ -0,0 +1,171 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+// runtimeconfig.template.json replaces App.Config based AppContext configuration
+// The following AppContext based flags are available for use in WPF Apps, and are initialized with
+// Default values as shown below
+{
+ "configProperties": {
+ /*
+ // BuildTasksAppContextSwitches
+
+ // The WPF MarkupCompiler provides compilation services for XAML markup files. In the .NET Framework 4.7.1
+ // and earlier versions, the default hash algorithm used for checksums was SHA1. Due to recent security
+ // concerns with SHA1, this default has been changed to SHA256 starting with the .NET Framework 4.7.2.
+ // This change affects all checksum generation for markup files during compilation.
+ "Switch.System.Windows.Markup.DoNotUseSha256ForMarkupCompilerChecksumAlgorithm": false,
+
+
+ // CoreAppContextSwitches
+
+ // Determines whether DPI changes occur on a per-system (a value of false) or per-monitor basis (a value of true).
+ "Switch.System.Windows.DoNotScaleForDpiChanges": false,
+
+ // Switch to enable the correct exception being thrown in ImageSourceConverter.ConvertFrom instead of NullReferenceException
+ "Switch.System.Windows.Media.ImageSourceConverter.OverrideExceptionWithNullReferenceException": false,
+
+ // When set to true, WPF will not enable the compatibility breaking bug fixes associated with
+ // features advertised by ""Switch.System.Windows.PresentationDpiCapabilityTier2""
+ // The following behavior would be turned off when this flag is set by the application:
+ // - Improvements to how HwndHost sizes child windows in response to DPI changes
+ // - Improvements to window placement during startup
+ // The following fixes would remain unaffected:
+ // - High-DPI related accessibility fixes.
+ "Switch.System.Windows.DoNotUsePresentationDpiCapabilityTier2OrGreater": false,
+
+ // This turns off the entirety of the WPF touch support, leaving WM_POINTER
+ // messages to be processed by DefWndProc(), or be handled by the application directly.
+ "Switch.System.Windows.Input.Stylus.DisableStylusAndTouchSupport": false,
+
+ // https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/mitigation-pointer-based-touch-and-stylus-support
+ // Switch to enable WPF support for the WM_POINTER based stylus/touch stack
+ "Switch.System.Windows.Input.Stylus.EnablePointerSupport": false,
+
+ // Switch to disable diagnostic features
+ "Switch.System.Windows.Diagnostics.DisableDiagnostics": false,
+
+ // Switch to allow changes during a VisualTreeChanged event
+ "Switch.System.Windows.Diagnostics.AllowChangesDuringVisualTreeChanged": false,
+
+ // Switch to disable automatic touch keyboard invocation on focus of a control
+ // This flag only works on Windows 10 1607 (RS1; Anniversary Update), Windows 10 1703 (RS2; Creators Update),
+ // and Windows 10 1709 (RS3; Fall Creators Update)
+ "Switch.System.Windows.Input.Stylus.DisableImplicitTouchKeyboardInvocation": false,
+
+ // Desktop/Interactive Window Stations:
+ // Rendering will be throttled back/stopped when no display devices are available. For e.g., when a TS
+ // session is in WTSDisconnected state, the OS may not provide any display devices in response to our enumeration.
+ //
+ // If an application would like to continue rendering in the absence of display devices (accepting that
+ // it can lead to a CPU spike), it can set
+ // to true.
+ //
+ // Service/Non-interactive Window Stations
+ // Rendering will continue by default, irrespective of the presence of display devices.Unless the WPF
+ // API's being used are short-lived (like rendering to a bitmap), it can lead to a CPU spike.
+ // If an application running inside a service would like to receive the 'default' WPF behavior,
+ // i.e., no rendering in the absence of display devices, then it should set
+ // to true
+ //
+ // In pseudo-code,
+ // IsNonInteractiveWindowStation = !Environment.UserInteractive
+ // IF DisplayDevicesNotFound() THEN
+ // IF IsNonInteractiveWindowStation THEN
+ // // We are inside a SCM service
+ // // Default = True, AppContext switch can override it to False
+ // ShouldRender = !CoreAppContextSwitches.ShouldNotRenderInNonInteractiveWindowStation
+ // ELSE
+ // // Desktop/interactive mode, including WTSDisconnected scenarios
+ // // Default = False, AppContext switch can override it to True
+ // ShouldRender = CoreAppContextSwitches.ShouldRenderEvenWhenNoDisplayDevicesAreAvailable
+ // END IF
+ // END IF"
+ "Switch.System.Windows.Media.ShouldRenderEvenWhenNoDisplayDevicesAreAvailable": false,
+ "Switch.System.Windows.Media.ShouldNotRenderInNonInteractiveWindowStation": false,
+
+ // Reserved for future use
+ "Switch.System.Windows.DoNotUsePresentationDpiCapabilityTier3OrGreater": false,
+
+ //
+ "Switch.System.Windows.AllowExternalProcessToBlockAccessToTemporaryFiles": false,
+
+ // Malicious managed objects could be placed in the clipboard lying about its format,
+ // to fix this OleConverter now restricts object deserialization in some cases.
+ // When this switch is enabled behavior falls back to deserializing without restriction.
+ "Switch.System.Windows.EnableLegacyDangerousClipboardDeserializationMode": false,
+
+ // FrameworkAppContextSwitches
+
+ // Switch to enable non-adorner based rendering of TextSelection in TextBox and PasswordBox
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-TextBox-PasswordBox-text-selection-does-not-follow-system-colors.md
+ "Switch.System.Windows.Controls.Text.UseAdornerForTextboxSelectionRendering": true,
+
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-layout-rounding-of-margins-has-changed.md
+ "Switch.MS.Internal.DoNotApplyLayoutRoundingToMarginsAndBorderThickness": false,
+
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-grid-allocation-of-space-to-star-columns.md
+ "Switch.System.Windows.Controls.Grid.StarDefinitionsCanExceedAvailableSpace": false,
+
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-tabcontrol-selectionchanged-and-selectedcontent.md
+ "Switch.System.Windows.Controls.TabControl.SelectionPropertiesCanLagBehindSelectionChangedEvent": false,
+
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-MasterDetail-ADOdata-PrimaryKey.md
+ "Switch.System.Windows.Data.DoNotUseFollowParentWhenBindingToADODataRelation": false,
+
+ // Switch to enable IList indexer hiding a custom indexer in a binding path
+ "Switch.System.Windows.Data.Binding.IListIndexerHidesCustomIndexer": false,
+
+ // Switch to enable appending the local assembly version to the Uri being set
+ // for ResourceDictionary.Source via Baml2006ReaderInternal.
+ "Switch.System.Windows.Baml2006.AppendLocalAssemblyVersionForSourceUri": false,
+
+ // Switch to enable keyboard navigation from a hyperlink to go to the wrong place
+ "Switch.System.Windows.Controls.KeyboardNavigationFromHyperlinkInItemsControlIsNotRelativeToFocusedElement": false,
+
+ // Switch to opt-out of the ItemAutomationPeer weak-reference.
+ // Setting this to true can avoid NRE crashes, but re-introduces some memory leaks
+ "Switch.System.Windows.Automation.Peers.ItemAutomationPeerKeepsItsItemAlive": false,
+
+ // BaseAppContextSwitches
+
+ // Starting .NET 4.6, ExecutionContext tracks Thread.CurrentCulture and Thread.CurrentUICulture, which would be restored
+ // to their respective previous values after a call to ExecutionContext.Run. This behavior is undesirable within the
+ // Dispatcher - various dispatcher operations can run user code that can in turn set Thread.CurrentCulture or
+ // Thread.CurrentUICulture, and we do not want those values to be overwritten with their respective previous values.
+ // To work around the new ExecutionContext behavior, we introduce CulturePreservingExecutionContext for use within
+ // Dispatcher and DispatcherOperation. WPF in .NET 4.6 & 4.6.1 shipped with buggy behavior - each DispatcherOperation
+ // ends with all modifications to culture infos being reverted.Though unlikely, if some applications targeting 4.6 or
+ // above might have taken a dependence on this bug, we provide this compatibility switch that can be enabled by the application.
+ "Switch.MS.Internal.DoNotUseCulturePreservingDispatcherOperations": false,
+
+ //PacakageDigitalSignatureManager.DefaultHashAlgorithm is now SHA256. Setting this flag will make it SHA1 as it
+ //is in legacy scenarios prior to .NET 4.7.1.
+ "Switch.MS.Internal.UseSha1AsDefaultHashAlgorithmForDigitalSignatures": false,
+
+ // Allowing developers to turn off the Invoke added by a previous code change, as there are compat issues with
+ // timing during shutdown for some applications.
+ "Switch.MS.Internal.DoNotInvokeInWeakEventTableShutdownListener": false,
+
+ // Improved the memory allocation and cleanup scheduling behavior of the weak-event pattern
+ "Switch.MS.Internal.EnableCleanupSchedulingImprovements": false,
+
+ // Enable/disable various perf and memory improvements related to WeakEvents
+ "Switch.MS.Internal.EnableWeakEventMemoryImprovements": false,
+
+ // AccessibilitySwitches
+ // https://docs.microsoft.com/en-us/dotnet/framework/whats-new/whats-new-in-accessibility
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-accessibility-improvements.MD
+ // https://github.com/microsoft/dotnet/blob/master/Documentation/compatibility/wpf-accessibility-improvements-48.md
+
+ "Switch.UseLegacyAccessibilityFeatures": false,
+ "Switch.UseLegacyAccessibilityFeatures.2": false,
+ "Switch.UseLegacyAccessibilityFeatures.3": false,
+ "Switch.UseLegacyToolTipDisplay": false,
+
+ // Guards the fix for the automation tree under a plain ItemsControl
+ // https://github.com/microsoft/dotnet/blob/master/releases/net48/dotnet48-changes.md
+ "Switch.System.Windows.Controls.ItemsControlDoesNotSupportAutomation": false
+ */
+ }
+}
diff --git a/WPFSamples.netcore.sln b/WPFSamples.netcore.sln
index 0172b39d3..7bd901de4 100644
--- a/WPFSamples.netcore.sln
+++ b/WPFSamples.netcore.sln
@@ -1,112 +1,111 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28306.52
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.28927.53
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sample Applications", "Sample Applications", "{122369C4-906B-4398-9F7D-DA33916262CF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Getting Started", "Getting Started", "{83EAA79F-7255-4D85-BAB6-A92230D66D36}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ControlsAndLayout", "Getting Started\ControlsAndLayout\ControlsAndLayout\ControlsAndLayout.netcore.csproj", "{AC167A27-1309-4A7C-842F-A971AE067C96}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ControlsAndLayout.netcore", "Getting Started\ControlsAndLayout\ControlsAndLayout\ControlsAndLayout.netcore.csproj", "{AC167A27-1309-4A7C-842F-A971AE067C96}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Concepts", "Getting Started\Concepts\Concepts.netcore.csproj", "{D3B9551D-FE81-4DD9-BCF1-5470C4DDF877}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Concepts.netcore", "Getting Started\Concepts\Concepts.netcore.csproj", "{D3B9551D-FE81-4DD9-BCF1-5470C4DDF877}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorld", "Getting Started\HelloWorld\HelloWorld.netcore.csproj", "{DDBCF377-2D29-440D-9FDB-02B4936E2D80}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorld.netcore", "Getting Started\HelloWorld\HelloWorld.netcore.csproj", "{DDBCF377-2D29-440D-9FDB-02B4936E2D80}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicLayout", "Getting Started\DynamicLayout\DynamicLayout.netcore.csproj", "{40955500-41BB-45B2-B8BC-9AFA10C879EA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicLayout.netcore", "Getting Started\DynamicLayout\DynamicLayout.netcore.csproj", "{40955500-41BB-45B2-B8BC-9AFA10C879EA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComplexLayout", "Getting Started\ComplexLayout\ComplexLayout.netcore.csproj", "{11A2B748-2F85-44B6-B390-81559C136DC4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComplexLayout.netcore", "Getting Started\ComplexLayout\ComplexLayout.netcore.csproj", "{11A2B748-2F85-44B6-B390-81559C136DC4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiPage", "Getting Started\MultiPage\MultiPage.netcore.csproj", "{8BB5C536-404D-4E91-8C2D-61D0D6494D67}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiPage.netcore", "Getting Started\MultiPage\MultiPage.netcore.csproj", "{8BB5C536-404D-4E91-8C2D-61D0D6494D67}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleLayout", "Getting Started\SimpleLayout\SimpleLayout.netcore.csproj", "{2D81B26B-2525-41EA-9CBC-A4AA3B29579C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleLayout.netcore", "Getting Started\SimpleLayout\SimpleLayout.netcore.csproj", "{2D81B26B-2525-41EA-9CBC-A4AA3B29579C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConcentricRingsDemo", "Sample Applications\ConcentricRingsDemo\ConcentricRingsDemo.netcore.csproj", "{0C7755BD-E5D1-4CB1-8271-445863408B5B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConcentricRingsDemo.netcore", "Sample Applications\ConcentricRingsDemo\ConcentricRingsDemo.netcore.csproj", "{0C7755BD-E5D1-4CB1-8271-445863408B5B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CubeAnimationDemo", "Sample Applications\CubeAnimationDemo\CubeAnimationDemo.netcore.csproj", "{8EF611EF-44AD-4871-9CF9-A80D501A1300}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CubeAnimationDemo.netcore", "Sample Applications\CubeAnimationDemo\CubeAnimationDemo.netcore.csproj", "{8EF611EF-44AD-4871-9CF9-A80D501A1300}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataBindingDemo", "Sample Applications\DataBindingDemo\DataBindingDemo.netcore.csproj", "{D56C3A49-C7A9-42E5-9C59-AF1670B08276}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataBindingDemo.netcore", "Sample Applications\DataBindingDemo\DataBindingDemo.netcore.csproj", "{D56C3A49-C7A9-42E5-9C59-AF1670B08276}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DropShadow", "Sample Applications\DropShadow\DropShadow.netcore.csproj", "{5E760E96-A59B-491D-9FDC-70587AE24240}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DropShadow.netcore", "Sample Applications\DropShadow\DropShadow.netcore.csproj", "{5E760E96-A59B-491D-9FDC-70587AE24240}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditingExaminerDemo", "Sample Applications\EditingExaminerDemo\EditingExaminerDemo.netcore.csproj", "{E689F47C-198B-4E3C-941D-81BD73D61B2C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditingExaminerDemo.netcore", "Sample Applications\EditingExaminerDemo\EditingExaminerDemo.netcore.csproj", "{E689F47C-198B-4E3C-941D-81BD73D61B2C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExpenseItDemo", "Sample Applications\ExpenseIt\ExpenseItDemo\ExpenseItDemo.netcore.csproj", "{D1729F17-99A5-45AF-AB38-72FA6ECCE609}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExpenseItDemo.netcore", "Sample Applications\ExpenseIt\ExpenseItDemo\ExpenseItDemo.netcore.csproj", "{D1729F17-99A5-45AF-AB38-72FA6ECCE609}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ExpenseIt", "ExpenseIt", "{07258053-D6F1-4D8F-B3E4-A93423EFDF78}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditBoxControlLibrary", "Sample Applications\ExpenseIt\EditBoxControlLibrary\EditBoxControlLibrary.netcore.csproj", "{558EEE03-6927-4FE6-AEB6-972769960849}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditBoxControlLibrary.netcore", "Sample Applications\ExpenseIt\EditBoxControlLibrary\EditBoxControlLibrary.netcore.csproj", "{558EEE03-6927-4FE6-AEB6-972769960849}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FontDialogDemo", "Sample Applications\FontDialog\FontDialogDemo.netcore.csproj", "{18DA881E-FE67-46E6-95E5-6FDC99331E2B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FontDialogDemo.netcore", "Sample Applications\FontDialog\FontDialogDemo.netcore.csproj", "{18DA881E-FE67-46E6-95E5-6FDC99331E2B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GeometryDesignerDemo", "Sample Applications\GeometryDesignerDemo\GeometryDesignerDemo.netcore.csproj", "{FBA69105-5C42-44A4-82E6-0BF3BC09F2A5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GeometryDesignerDemo.netcore", "Sample Applications\GeometryDesignerDemo\GeometryDesignerDemo.netcore.csproj", "{FBA69105-5C42-44A4-82E6-0BF3BC09F2A5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GraphingCalculatorDemo", "Sample Applications\GraphingCalculatorDemo\GraphingCalculatorDemo.netcore.csproj", "{1C45AF74-269B-4828-A054-6D0761304E61}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GraphingCalculatorDemo.netcore", "Sample Applications\GraphingCalculatorDemo\GraphingCalculatorDemo.netcore.csproj", "{1C45AF74-269B-4828-A054-6D0761304E61}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HexSphereDemo", "Sample Applications\HexSphereDemo\HexSphereDemo.netcore.csproj", "{48FC0038-9FDF-443C-B24B-9418C8956100}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HexSphereDemo.netcore", "Sample Applications\HexSphereDemo\HexSphereDemo.netcore.csproj", "{48FC0038-9FDF-443C-B24B-9418C8956100}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LayoutTransitionsDemo", "Sample Applications\LayoutTransitionsDemo\LayoutTransitionsDemo.netcore.csproj", "{9CB40026-7C2F-441F-B496-CDBB454AC309}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LayoutTransitionsDemo.netcore", "Sample Applications\LayoutTransitionsDemo\LayoutTransitionsDemo.netcore.csproj", "{9CB40026-7C2F-441F-B496-CDBB454AC309}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParticlesDemo", "Sample Applications\ParticlesDemo\ParticlesDemo.netcore.csproj", "{F10AB8C9-CE19-44D6-BEA6-9EBA03850664}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParticlesDemo.netcore", "Sample Applications\ParticlesDemo\ParticlesDemo.netcore.csproj", "{F10AB8C9-CE19-44D6-BEA6-9EBA03850664}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoFlipperDemo", "Sample Applications\PhotoFlipperDemo\PhotoFlipperDemo.netcore.csproj", "{769F1C36-6975-4390-8D67-9E50A42D2755}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoFlipperDemo.netcore", "Sample Applications\PhotoFlipperDemo\PhotoFlipperDemo.netcore.csproj", "{769F1C36-6975-4390-8D67-9E50A42D2755}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoStoreDemo", "Sample Applications\PhotoStoreDemo\PhotoStoreDemo.netcore.csproj", "{D6567F46-7604-4714-9785-F99341AE5C81}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoStoreDemo.netcore", "Sample Applications\PhotoStoreDemo\PhotoStoreDemo.netcore.csproj", "{D6567F46-7604-4714-9785-F99341AE5C81}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StickyNotesDemo", "Sample Applications\StickyNotesDemo\StickyNotesDemo.netcore.csproj", "{4CB08E17-0C15-4F66-8659-003D39E576BA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StickyNotesDemo.netcore", "Sample Applications\StickyNotesDemo\StickyNotesDemo.netcore.csproj", "{4CB08E17-0C15-4F66-8659-003D39E576BA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlidePuzzleDemo", "Sample Applications\SlidePuzzleDemo\SlidePuzzleDemo.netcore.csproj", "{587E93FE-3686-4AE0-88A7-2E067AB0783A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlidePuzzleDemo.netcore", "Sample Applications\SlidePuzzleDemo\SlidePuzzleDemo.netcore.csproj", "{587E93FE-3686-4AE0-88A7-2E067AB0783A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CalculatorDemo", "Sample Applications\CalculatorDemo\CalculatorDemo.netcore.csproj", "{5731865D-6685-47A7-8877-5DBAF39B54CD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CalculatorDemo.netcore", "Sample Applications\CalculatorDemo\CalculatorDemo.netcore.csproj", "{5731865D-6685-47A7-8877-5DBAF39B54CD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoViewerDemo", "Sample Applications\PhotoViewerDemo\PhotoViewerDemo.netcore.csproj", "{77372DB6-7B08-404D-B70E-69CF5ACD865C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PhotoViewerDemo.netcore", "Sample Applications\PhotoViewerDemo\PhotoViewerDemo.netcore.csproj", "{77372DB6-7B08-404D-B70E-69CF5ACD865C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VideoViewerDemo", "Sample Applications\VideoViewerDemo\VideoViewerDemo.netcore.csproj", "{439F91F2-9A8D-41EF-B9BB-D7CB2BCF3F10}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VideoViewerDemo.netcore", "Sample Applications\VideoViewerDemo\VideoViewerDemo.netcore.csproj", "{439F91F2-9A8D-41EF-B9BB-D7CB2BCF3F10}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlToXamlDemo", "Sample Applications\HtmlToXamlDemo\HtmlToXamlDemo.netcore.csproj", "{1AF5ED2C-BB8A-4B12-8CB5-8C8F2E838908}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlToXamlDemo.netcore", "Sample Applications\HtmlToXamlDemo\HtmlToXamlDemo.netcore.csproj", "{1AF5ED2C-BB8A-4B12-8CB5-8C8F2E838908}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Application Management", "Application Management", "{5BF9317D-AFE9-4ED0-93F5-95FA86FFB949}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationShutdown", "Application Management\ApplicationShutdown\ApplicationShutdown.netcore.csproj", "{545AD4E3-5805-4C93-A39D-A6674036FBCE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationShutdown.netcore", "Application Management\ApplicationShutdown\ApplicationShutdown.netcore.csproj", "{545AD4E3-5805-4C93-A39D-A6674036FBCE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeOnlyWindowsApplication", "Application Management\CodeOnlyWindowsApplication\CodeOnlyWindowsApplication.netcore.csproj", "{BCC1BA20-3117-4716-AA80-529131126FD8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeOnlyWindowsApplication.netcore", "Application Management\CodeOnlyWindowsApplication\CodeOnlyWindowsApplication.netcore.csproj", "{BCC1BA20-3117-4716-AA80-529131126FD8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExceptionHandlingSecondaryUIThread", "Application Management\ExceptionHandlingSecondaryUIThread\ExceptionHandlingSecondaryUIThread.netcore.csproj", "{382DE3A3-B718-4586-8818-F74D9ACCB96F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExceptionHandlingSecondaryUIThread.netcore", "Application Management\ExceptionHandlingSecondaryUIThread\ExceptionHandlingSecondaryUIThread.netcore.csproj", "{382DE3A3-B718-4586-8818-F74D9ACCB96F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExceptionHandlingSecondaryWorkerThread", "Application Management\ExceptionHandlingSecondaryWorkerThread\ExceptionHandlingSecondaryWorkerThread.netcore.csproj", "{D16CA908-C604-447A-BF52-71B9FE159884}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExceptionHandlingSecondaryWorkerThread.netcore", "Application Management\ExceptionHandlingSecondaryWorkerThread\ExceptionHandlingSecondaryWorkerThread.netcore.csproj", "{D16CA908-C604-447A-BF52-71B9FE159884}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessingCommandLineArguments", "Application Management\ProcessingCommandLineArguments\ProcessingCommandLineArguments.netcore.csproj", "{74AA414A-B3E4-4B9A-A457-B4CCB8B5161E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessingCommandLineArguments.netcore", "Application Management\ProcessingCommandLineArguments\ProcessingCommandLineArguments.netcore.csproj", "{74AA414A-B3E4-4B9A-A457-B4CCB8B5161E}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkinnedApplication.netcore", "Application Management\SkinnedApplication\SkinnedApplication.netcore.csproj", "{3825CEC7-BA04-4B37-81A1-5166CBF4C3FE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SkinnedApplication", "Application Management\SkinnedApplication\SkinnedApplication.netcore.csproj", "{3825CEC7-BA04-4B37-81A1-5166CBF4C3FE}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnhandledExceptionHandling", "Application Management\UnhandledExceptionHandling\UnhandledExceptionHandling.netcore.csproj", "{749E1732-D60E-446A-8B00-C53AF4C9AA73}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnhandledExceptionHandling.netcore", "Application Management\UnhandledExceptionHandling\UnhandledExceptionHandling.netcore.csproj", "{749E1732-D60E-446A-8B00-C53AF4C9AA73}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CustomApplication", "CustomApplication", "{5F15F6B3-3AD7-486A-B21F-27CE3EC2F555}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Windows", "Windows", "{168E363A-7B91-4FBF-A393-28BD29C818DA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomWindowUI", "Windows\CustomWindowUI\CustomWindowUI.netcore.csproj", "{04040E2E-50AC-4E40-9765-A9363129288A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomWindowUI.netcore", "Windows\CustomWindowUI\CustomWindowUI.netcore.csproj", "{04040E2E-50AC-4E40-9765-A9363129288A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DialogBox", "Windows\DialogBox\DialogBox.netcore.csproj", "{6501F44F-4212-4800-840A-1AD2FCB96D94}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DialogBox.netcore", "Windows\DialogBox\DialogBox.netcore.csproj", "{6501F44F-4212-4800-840A-1AD2FCB96D94}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowHiding", "Windows\WindowHiding\WindowHiding.netcore.csproj", "{73FD51E1-315D-426B-BCC9-A13B0937C5A0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowHiding.netcore", "Windows\WindowHiding\WindowHiding.netcore.csproj", "{73FD51E1-315D-426B-BCC9-A13B0937C5A0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NotificationIcon", "Windows\NotificationIcon\NotificationIcon.netcore.csproj", "{9645F8D8-C438-4302-BB7A-8F3EE0C683BE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NotificationIcon.netcore", "Windows\NotificationIcon\NotificationIcon.netcore.csproj", "{9645F8D8-C438-4302-BB7A-8F3EE0C683BE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SaveWindowState", "Windows\SaveWindowState\SaveWindowState.netcore.csproj", "{EF8EE486-013C-4D73-ADF4-0A2A4E76E5C8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SaveWindowState.netcore", "Windows\SaveWindowState\SaveWindowState.netcore.csproj", "{EF8EE486-013C-4D73-ADF4-0A2A4E76E5C8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShowWindowWithoutActivation", "Windows\ShowWindowWithoutActivation\ShowWindowWithoutActivation.netcore.csproj", "{2FF77BC2-2C9E-497E-A127-5BF76566E393}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShowWindowWithoutActivation.netcore", "Windows\ShowWindowWithoutActivation\ShowWindowWithoutActivation.netcore.csproj", "{2FF77BC2-2C9E-497E-A127-5BF76566E393}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowSizingOrder", "Windows\WindowSizingOrder\WindowSizingOrder.netcore.csproj", "{2602FB17-1FB5-4221-83DE-9F4E373F2880}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowSizingOrder.netcore", "Windows\WindowSizingOrder\WindowSizingOrder.netcore.csproj", "{2602FB17-1FB5-4221-83DE-9F4E373F2880}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wizard", "Windows\Wizard\Wizard.netcore.csproj", "{61BB4E45-2731-48F6-BE4F-B1F68D655959}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wizard.netcore", "Windows\Wizard\Wizard.netcore.csproj", "{61BB4E45-2731-48F6-BE4F-B1F68D655959}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MessageBox", "Windows\MessageBox\MessageBox.netcore.csproj", "{A7EE2890-B293-44D3-9A52-3066DE0425C9}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MessageBox.netcore", "Windows\MessageBox\MessageBox.netcore.csproj", "{A7EE2890-B293-44D3-9A52-3066DE0425C9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NonRectangularWindow", "Windows\NonRectangularWindow\NonRectangularWindow.netcore.csproj", "{35D6E1C6-D9D4-4CF6-82C9-4BDC17678974}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NonRectangularWindow.netcore", "Windows\NonRectangularWindow\NonRectangularWindow.netcore.csproj", "{35D6E1C6-D9D4-4CF6-82C9-4BDC17678974}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowActivationAndDeactivation", "Windows\WindowActivationAndDeactivation\WindowActivationAndDeactivation.netcore.csproj", "{FA3647B7-77B3-49E2-89D0-ED231F702A9C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowActivationAndDeactivation.netcore", "Windows\WindowActivationAndDeactivation\WindowActivationAndDeactivation.netcore.csproj", "{FA3647B7-77B3-49E2-89D0-ED231F702A9C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Clipboard", "Clipboard", "{509B56BF-223C-4A6C-879E-7C6AD152C057}"
EndProject
@@ -114,82 +113,81 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Data Binding", "Data Bindin
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Drag and Drop", "Drag and Drop", "{5959855D-7558-4261-9C88-349C6489FC45}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipboardSpy", "Clipboard\ClipboardSpy\ClipboardSpy.netcore.csproj", "{BB2C76A3-F18A-4F39-BCC6-57BC7C1F4BB2}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipboardViewer", "Clipboard\ClipboardViewer\ClipboardViewer.netcore.csproj", "{2506CDF0-DB03-4948-848B-F408722ABE27}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipboardSpy.netcore", "Clipboard\ClipboardSpy\ClipboardSpy.netcore.csproj", "{BB2C76A3-F18A-4F39-BCC6-57BC7C1F4BB2}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropEvents", "Drag and Drop\DragDropEvents\DragDropEvents.netcore.csproj", "{8BE025D1-C28E-4DC3-A162-7E8CB3A7330D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipboardViewer.netcore", "Clipboard\ClipboardViewer\ClipboardViewer.netcore.csproj", "{2506CDF0-DB03-4948-848B-F408722ABE27}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropObjects", "Drag and Drop\DragDropObjects\DragDropObjects.netcore.csproj", "{84BE5D05-BC87-4AFA-925B-8B9896E881EE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropEvents.netcore", "Drag and Drop\DragDropEvents\DragDropEvents.netcore.csproj", "{8BE025D1-C28E-4DC3-A162-7E8CB3A7330D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropDataFormats", "Drag and Drop\DragDropDataFormats\DragDropDataFormats.netcore.csproj", "{2BBDD9A8-9C13-4DFD-AEFB-727D26702F58}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropObjects.netcore", "Drag and Drop\DragDropObjects\DragDropObjects.netcore.csproj", "{84BE5D05-BC87-4AFA-925B-8B9896E881EE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropThumbOps", "Drag and Drop\DragDropThumbOps\DragDropThumbOps.netcore.csproj", "{5AD0F28C-8F2E-48BE-9944-93DF86A26266}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropDataFormats.netcore", "Drag and Drop\DragDropDataFormats\DragDropDataFormats.netcore.csproj", "{2BBDD9A8-9C13-4DFD-AEFB-727D26702F58}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropTextOps", "Drag and Drop\DragDropTextOps\DragDropTextOps.netcore.csproj", "{09A25481-6F0E-422D-A07D-F1F390F42592}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropThumbOps.netcore", "Drag and Drop\DragDropThumbOps\DragDropThumbOps.netcore.csproj", "{5AD0F28C-8F2E-48BE-9944-93DF86A26266}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropOpenTextFile", "Drag and Drop\DragDropOpenTextFile\DragDropOpenTextFile.netcore.csproj", "{9D3DD469-E0BC-4515-B5D6-AE527748E3EE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropTextOps.netcore", "Drag and Drop\DragDropTextOps\DragDropTextOps.netcore.csproj", "{09A25481-6F0E-422D-A07D-F1F390F42592}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DragDropOpenTextFile.netcore", "Drag and Drop\DragDropOpenTextFile\DragDropOpenTextFile.netcore.csproj", "{9D3DD469-E0BC-4515-B5D6-AE527748E3EE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindConversion", "Data Binding\BindConversion\BindConversion.netcore.csproj", "{EBF187A9-C9B1-4BA2-8F0B-5F89A90F6C79}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindConversion.netcore", "Data Binding\BindConversion\BindConversion.netcore.csproj", "{EBF187A9-C9B1-4BA2-8F0B-5F89A90F6C79}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingDPToDP", "Data Binding\BindingDPToDP\BindingDPToDP.netcore.csproj", "{1B5317EE-EDCF-44A6-BA87-E0BD80343581}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingDPToDP.netcore", "Data Binding\BindingDPToDP\BindingDPToDP.netcore.csproj", "{1B5317EE-EDCF-44A6-BA87-E0BD80343581}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingToMethod", "Data Binding\BindingToMethod\BindingToMethod.netcore.csproj", "{5ACD1710-EE71-4019-993D-20AD2915BAFB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingToMethod.netcore", "Data Binding\BindingToMethod\BindingToMethod.netcore.csproj", "{5ACD1710-EE71-4019-993D-20AD2915BAFB}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindValidation", "Data Binding\BindValidation\BindValidation.netcore.csproj", "{9F532D60-38D6-45BB-9248-4942D62C8E26}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindValidation.netcore", "Data Binding\BindValidation\BindValidation.netcore.csproj", "{9F532D60-38D6-45BB-9248-4942D62C8E26}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BusinessLayerValidation", "Data Binding\BusinessLayerValidation\BusinessLayerValidation.netcore.csproj", "{26AD57FC-D7C2-4E9D-B305-ABBCCE9043BD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BusinessLayerValidation.netcore", "Data Binding\BusinessLayerValidation\BusinessLayerValidation.netcore.csproj", "{26AD57FC-D7C2-4E9D-B305-ABBCCE9043BD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionBinding", "Data Binding\CollectionBinding\CollectionBinding.netcore.csproj", "{AB9C7480-161F-4FCD-B63B-03E24B50ABDE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionBinding.netcore", "Data Binding\CollectionBinding\CollectionBinding.netcore.csproj", "{AB9C7480-161F-4FCD-B63B-03E24B50ABDE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeOnlyBinding", "Data Binding\CodeOnlyBinding\CodeOnlyBinding.netcore.csproj", "{9B27D77A-7099-4511-B2F1-C288928C4647}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeOnlyBinding.netcore", "Data Binding\CodeOnlyBinding\CodeOnlyBinding.netcore.csproj", "{9B27D77A-7099-4511-B2F1-C288928C4647}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Colors", "Data Binding\Colors\Colors.netcore.csproj", "{86AF1D74-6991-4D22-B2D9-AF96867D4249}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Colors.netcore", "Data Binding\Colors\Colors.netcore.csproj", "{86AF1D74-6991-4D22-B2D9-AF96867D4249}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionViewSource", "Data Binding\CollectionViewSource\CollectionViewSource.netcore.csproj", "{21F0464D-8CF6-4171-B4DF-AB3F20CF0A82}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionViewSource.netcore", "Data Binding\CollectionViewSource\CollectionViewSource.netcore.csproj", "{21F0464D-8CF6-4171-B4DF-AB3F20CF0A82}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingToStringFomat", "Data Binding\DataBindingToStringFomat\BindingToStringFomat.netcore.csproj", "{769494FA-E922-411D-AB0B-978547DCA9BA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BindingToStringFomat.netcore", "Data Binding\DataBindingToStringFomat\BindingToStringFomat.netcore.csproj", "{769494FA-E922-411D-AB0B-978547DCA9BA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CompositeCollections", "Data Binding\CompositeCollections\CompositeCollections.netcore.csproj", "{7C9C4EA4-422D-489C-9199-8132951F6590}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CompositeCollections.netcore", "Data Binding\CompositeCollections\CompositeCollections.netcore.csproj", "{7C9C4EA4-422D-489C-9199-8132951F6590}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataTemplatingIntro", "Data Binding\DataTemplatingIntro\DataTemplatingIntro.netcore.csproj", "{624071C8-79E4-45F8-ACFD-1FDF132E53A8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataTemplatingIntro.netcore", "Data Binding\DataTemplatingIntro\DataTemplatingIntro.netcore.csproj", "{624071C8-79E4-45F8-ACFD-1FDF132E53A8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataTrigger", "Data Binding\DataTrigger\DataTrigger.netcore.csproj", "{A1ACB813-CFEC-4826-A986-EB5522567B2C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataTrigger.netcore", "Data Binding\DataTrigger\DataTrigger.netcore.csproj", "{A1ACB813-CFEC-4826-A986-EB5522567B2C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DirectionalBinding", "Data Binding\DirectionalBinding\DirectionalBinding.netcore.csproj", "{EFAD968C-9778-47FA-8DAD-83EDE4362341}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DirectionalBinding.netcore", "Data Binding\DirectionalBinding\DirectionalBinding.netcore.csproj", "{EFAD968C-9778-47FA-8DAD-83EDE4362341}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grouping", "Data Binding\Grouping\Grouping.netcore.csproj", "{6B027168-E37B-4507-9593-0ED58BB794C6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grouping.netcore", "Data Binding\Grouping\Grouping.netcore.csproj", "{6B027168-E37B-4507-9593-0ED58BB794C6}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HierarchicalDataTemplate", "Data Binding\HierarchicalDataTemplate\HierarchicalDataTemplate.netcore.csproj", "{94BC79FC-D70E-4FD9-8FD5-D2994CB09FDF}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HierarchicalDataTemplate.netcore", "Data Binding\HierarchicalDataTemplate\HierarchicalDataTemplate.netcore.csproj", "{94BC79FC-D70E-4FD9-8FD5-D2994CB09FDF}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Linq", "Data Binding\Linq\Linq.netcore.csproj", "{594E0220-6AF6-4D75-AB22-18E62DDCD17B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Linq.netcore", "Data Binding\Linq\Linq.netcore.csproj", "{594E0220-6AF6-4D75-AB22-18E62DDCD17B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterDetailXml", "Data Binding\MasterDetailXml\MasterDetailXml.netcore.csproj", "{E55578E0-E7FF-45EE-A89C-DC019CE2B2E4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterDetailXml.netcore", "Data Binding\MasterDetailXml\MasterDetailXml.netcore.csproj", "{E55578E0-E7FF-45EE-A89C-DC019CE2B2E4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditingCollections", "Data Binding\EditingCollections\EditingCollections.netcore.csproj", "{F0D4337C-FB06-42A4-8D48-C0577BA46D39}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EditingCollections.netcore", "Data Binding\EditingCollections\EditingCollections.netcore.csproj", "{F0D4337C-FB06-42A4-8D48-C0577BA46D39}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterDetail", "Data Binding\MasterDetail\MasterDetail.netcore.csproj", "{4543B83E-9226-4DFB-90BB-678097B814E7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterDetail.netcore", "Data Binding\MasterDetail\MasterDetail.netcore.csproj", "{4543B83E-9226-4DFB-90BB-678097B814E7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiBinding", "Data Binding\MultiBinding\MultiBinding.netcore.csproj", "{EC844DB3-F49A-4C5C-A6FC-DAA0CF93DEF1}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiBinding.netcore", "Data Binding\MultiBinding\MultiBinding.netcore.csproj", "{EC844DB3-F49A-4C5C-A6FC-DAA0CF93DEF1}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PriorityBinding", "Data Binding\PriorityBinding\PriorityBinding.netcore.csproj", "{61D6E265-268C-4AEE-A190-1C42776710BD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PriorityBinding.netcore", "Data Binding\PriorityBinding\PriorityBinding.netcore.csproj", "{61D6E265-268C-4AEE-A190-1C42776710BD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyChangeNotification", "Data Binding\PropertyChangeNotification\PropertyChangeNotification.netcore.csproj", "{B0C1EB7C-E551-43E1-802F-DE71AA3B7683}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyChangeNotification.netcore", "Data Binding\PropertyChangeNotification\PropertyChangeNotification.netcore.csproj", "{B0C1EB7C-E551-43E1-802F-DE71AA3B7683}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleBinding", "Data Binding\SimpleBinding\SimpleBinding.netcore.csproj", "{08554455-9C65-47D4-8026-823DA25A2521}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleBinding.netcore", "Data Binding\SimpleBinding\SimpleBinding.netcore.csproj", "{08554455-9C65-47D4-8026-823DA25A2521}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SortFilter", "Data Binding\SortFilter\SortFilter.netcore.csproj", "{6A12015A-EF5C-436F-9391-1CE519853301}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SortFilter.netcore", "Data Binding\SortFilter\SortFilter.netcore.csproj", "{6A12015A-EF5C-436F-9391-1CE519853301}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UpdateSource", "Data Binding\UpdateSource\UpdateSource.netcore.csproj", "{50AAF5FC-8667-47DA-BBB5-770A81BFA87C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UpdateSource.netcore", "Data Binding\UpdateSource\UpdateSource.netcore.csproj", "{50AAF5FC-8667-47DA-BBB5-770A81BFA87C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ValidateItemSample", "Data Binding\ValidateItemSample\ValidateItemSample.netcore.csproj", "{EED77E85-111F-4CEE-9212-7A4FD1C8575B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ValidateItemSample.netcore", "Data Binding\ValidateItemSample\ValidateItemSample.netcore.csproj", "{EED77E85-111F-4CEE-9212-7A4FD1C8575B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ValidateItemsInItemsControl", "Data Binding\ValidateItemsInItemsControl\ValidateItemsInItemsControl.netcore.csproj", "{D8E750D4-0E13-45EA-9530-B95F98036705}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ValidateItemsInItemsControl.netcore", "Data Binding\ValidateItemsInItemsControl\ValidateItemsInItemsControl.netcore.csproj", "{D8E750D4-0E13-45EA-9530-B95F98036705}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XmlDataSource", "Data Binding\XmlDataSource\XmlDataSource.netcore.csproj", "{EFFBD332-00A7-402D-9A02-1CFA1AEF35B7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XmlDataSource.netcore", "Data Binding\XmlDataSource\XmlDataSource.netcore.csproj", "{EFFBD332-00A7-402D-9A02-1CFA1AEF35B7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XmlnsBind", "Data Binding\XmlnsBind\XmlnsBind.netcore.csproj", "{41959C9D-100A-4AB8-AC25-B08E9EB9484A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XmlnsBind.netcore", "Data Binding\XmlnsBind\XmlnsBind.netcore.csproj", "{41959C9D-100A-4AB8-AC25-B08E9EB9484A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Accessibility", "Accessibility", "{1F188D09-3354-49E6-A618-4CE461C605CA}"
EndProject
@@ -199,42 +197,33 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documents", "Documents", "{
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Migration and Interoperability", "Migration and Interoperability", "{2071EB17-1D03-4B61-B267-2B0EB14B1258}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWfInWPF", "Migration and Interoperability\HostingWfInWPF\HostingWfInWPF.netcore.csproj", "{75E45E90-2C6F-4512-A551-C255303C436F}"
-EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWfWithVisualStyles", "Migration and Interoperability\HostingWfWithVisualStyles\HostingWfWithVisualStyles.netcore.csproj", "{6E8CC9C4-566C-43F1-8353-80D1FBFB483C}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWpfUserControlInWf", "Migration and Interoperability\HostingWpfUserControlInWf\HostingWpfUserControlInWf.netcore.csproj", "{158D6826-38D9-49B0-A6CA-A46DF7BE03E3}"
-EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyMappingWithElementHost", "Migration and Interoperability\PropertyMappingWithElementHost\PropertyMappingWithElementHost.netcore.csproj", "{B105D741-5DA2-4857-B603-932EC96A9A94}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWfInWPF.netcore", "Migration and Interoperability\HostingWfInWPF\HostingWfInWPF.netcore.csproj", "{75E45E90-2C6F-4512-A551-C255303C436F}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWfWithVisualStyles.netcore", "Migration and Interoperability\HostingWfWithVisualStyles\HostingWfWithVisualStyles.netcore.csproj", "{6E8CC9C4-566C-43F1-8353-80D1FBFB483C}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HostingWpfUserControlInWf.netcore", "Migration and Interoperability\HostingWpfUserControlInWf\HostingWpfUserControlInWf.netcore.csproj", "{158D6826-38D9-49B0-A6CA-A46DF7BE03E3}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyMappingWithElementHost.netcore", "Migration and Interoperability\PropertyMappingWithElementHost\PropertyMappingWithElementHost.netcore.csproj", "{B105D741-5DA2-4857-B603-932EC96A9A94}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AXControlInXaml", "AXControlInXaml", "{A1FA37F0-FF5F-4BC2-9B88-C391DC305E58}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HostingWpfUserControl", "HostingWpfUserControl", "{2D47BFCD-46E2-462A-AF89-E2B0B054928E}"
EndProject
-EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HWNDInWPF", "HWNDInWPF", "{E71EFD27-A815-4083-9325-7704A5108312}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hwndInWPF", "Migration and Interoperability\HWNDInWPF\hwndInWPF\hwndInWPF.vcxproj", "{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}"
EndProject
-EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Win32Clock", "Win32Clock", "{52A1BF80-DD3F-4F1A-A21A-B06DE8970AD6}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFClock.netcore", "Migration and Interoperability\Win32Clock\WPFCLOCK\WPFClock.netcore.csproj", "{7289753F-C0EF-4C91-82DA-D53F75222152}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFClock", "Migration and Interoperability\Win32Clock\WPFCLOCK\WPFClock.netcore.csproj", "{7289753F-C0EF-4C91-82DA-D53F75222152}"
-EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFControls", "Migration and Interoperability\WindowsFormsHostingWpfControl\WPFControls\WPFControls.netcore.csproj", "{27E26A5C-1333-44FF-81DC-DD4DB0BFC313}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFControls.netcore", "Migration and Interoperability\WindowsFormsHostingWpfControl\WPFControls\WPFControls.netcore.csproj", "{27E26A5C-1333-44FF-81DC-DD4DB0BFC313}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win32HostingWPFPage", "Migration and Interoperability\Win32HostingWPFPage\cpp\win32hostingwpfpage.vcxproj", "{8E4A7F4E-64A9-4313-AAD8-C0E888223A32}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WpfHostingWindowsFormsControl", "WpfHostingWindowsFormsControl", "{CCF7EF7F-EC50-40F3-9D03-16C3AB7757B4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFHostingWin32Control", "Migration and Interoperability\WPFHostingWin32Control\WPFHostingWin32Control.netcore.csproj", "{73B41952-C297-4064-AAF9-99E564B13EAF}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WPFHostingWin32Control.netcore", "Migration and Interoperability\WPFHostingWin32Control\WPFHostingWin32Control.netcore.csproj", "{73B41952-C297-4064-AAF9-99E564B13EAF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WindowsFormsHostingWPFControl", "WindowsFormsHostingWPFControl", "{A02AFB38-A24D-48D7-BBE5-A4124EA098EC}"
EndProject
@@ -242,78 +231,73 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Assets", "Assets", "{A4E982
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{455CE1DE-2222-44AC-B93B-6A40A99A3E3D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowMove", "Accessibility\WindowMove\WindowMove.netcore.csproj", "{D2D396B5-CAB8-4599-B55D-31DC7FBCDA7B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowMove.netcore", "Accessibility\WindowMove\WindowMove.netcore.csproj", "{D2D396B5-CAB8-4599-B55D-31DC7FBCDA7B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FocusTracker", "Accessibility\FocusTracker\FocusTracker.netcore.csproj", "{09BC7736-0DDC-4DBF-8CA9-BA5B85A93C8B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FocusTracker.netcore", "Accessibility\FocusTracker\FocusTracker.netcore.csproj", "{09BC7736-0DDC-4DBF-8CA9-BA5B85A93C8B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SelectionPattern", "SelectionPattern", "{10DDE912-A3E2-4887-92FA-6039634DC3E0}"
EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SelectionTarget", "Accessibility\SelectionPattern\SelectionTarget\SelectionTarget.netcore.csproj", "{0755F6C3-3FA5-4410-B0D0-4034C64CC138}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SelectionTarget.netcore", "Accessibility\SelectionPattern\SelectionTarget\SelectionTarget.netcore.csproj", "{0755F6C3-3FA5-4410-B0D0-4034C64CC138}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "InvokePattern", "InvokePattern", "{6824BB4F-E9CC-4E63-9F54-683C59C8BDC2}"
EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Target", "Accessibility\InvokePattern\Target\Target.netcore.csproj", "{D8D81CBF-C254-42D6-BBA3-5A32150B70F1}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Target.netcore", "Accessibility\InvokePattern\Target\Target.netcore.csproj", "{D8D81CBF-C254-42D6-BBA3-5A32150B70F1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FindText", "FindText", "{6DE63677-6932-4C37-A0C5-C7355862DAC9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindText", "Accessibility\FindText\FindText\FindText.netcore.csproj", "{117631D2-3687-49D6-BD15-7B9A21B4399A}"
-EndProject
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FetchTimer", "Accessibility\FetchTimer\FetchTimer.netcore.csproj", "{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindText.netcore", "Accessibility\FindText\FindText\FindText.netcore.csproj", "{117631D2-3687-49D6-BD15-7B9A21B4399A}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FetchTimer.netcore", "Accessibility\FetchTimer\FetchTimer.netcore.csproj", "{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "InsertText", "InsertText", "{BF217AE7-182B-45B3-AD6D-3E1661F6CCDF}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InsertTextTarget", "Accessibility\InsertText\InsertTextTarget\InsertTextTarget.netcore.csproj", "{22788661-2CBC-4933-B031-4817CBCE6C89}"
-EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InsertTextTarget.netcore", "Accessibility\InsertText\InsertTextTarget\InsertTextTarget.netcore.csproj", "{22788661-2CBC-4933-B031-4817CBCE6C89}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Graphics", "Graphics", "{D9F39497-ECED-4D2B-8105-77F4E3981ABE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Brushes", "Graphics\Brushes\Brushes.netcore.csproj", "{C9707878-5739-498B-A982-BEC90E63B458}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Brushes.netcore", "Graphics\Brushes\Brushes.netcore.csproj", "{C9707878-5739-498B-A982-BEC90E63B458}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrawingBrush", "Graphics\DrawingBrush\DrawingBrush.netcore.csproj", "{4E3193A6-3EDA-4EB3-8807-0B75A1F33A60}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrawingBrush.netcore", "Graphics\DrawingBrush\DrawingBrush.netcore.csproj", "{4E3193A6-3EDA-4EB3-8807-0B75A1F33A60}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageBrush", "Graphics\ImageBrush\ImageBrush.netcore.csproj", "{6D7AF134-C776-41F3-83E4-C491A384AE1B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageBrush.netcore", "Graphics\ImageBrush\ImageBrush.netcore.csproj", "{6D7AF134-C776-41F3-83E4-C491A384AE1B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpacityMasking", "Graphics\OpacityMasking\OpacityMasking.netcore.csproj", "{438961A1-EE19-4969-8B2F-792FCB84F35B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpacityMasking.netcore", "Graphics\OpacityMasking\OpacityMasking.netcore.csproj", "{438961A1-EE19-4969-8B2F-792FCB84F35B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SystemBrushesAndColors", "Graphics\SystemBrushesAndColors\SystemBrushesAndColors.netcore.csproj", "{43483715-7FD5-4238-8301-48C20BFD3E26}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SystemBrushesAndColors.netcore", "Graphics\SystemBrushesAndColors\SystemBrushesAndColors.netcore.csproj", "{43483715-7FD5-4238-8301-48C20BFD3E26}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisualBrush", "Graphics\VisualBrush\VisualBrush.netcore.csproj", "{87A59919-5264-46AD-A181-9918B038EDE1}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisualBrush.netcore", "Graphics\VisualBrush\VisualBrush.netcore.csproj", "{87A59919-5264-46AD-A181-9918B038EDE1}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipRegion", "Graphics\ClipRegion\ClipRegion.netcore.csproj", "{95F33774-9D53-46A9-B039-734A377E4DBD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClipRegion.netcore", "Graphics\ClipRegion\ClipRegion.netcore.csproj", "{95F33774-9D53-46A9-B039-734A377E4DBD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Converter", "Graphics\Converter\Converter.netcore.csproj", "{EFE6DAE7-8AF5-40E3-BC53-9698EA318C20}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Converter.netcore", "Graphics\Converter\Converter.netcore.csproj", "{EFE6DAE7-8AF5-40E3-BC53-9698EA318C20}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Point", "Graphics\Point\Point.netcore.csproj", "{08AF1B6E-1D62-47CC-AEF1-9F7BDBE883B3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Point.netcore", "Graphics\Point\Point.netcore.csproj", "{08AF1B6E-1D62-47CC-AEF1-9F7BDBE883B3}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vector", "Graphics\Vector\Vector.netcore.csproj", "{F98C891C-CED3-4589-8D50-715AA1F4F3BA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vector.netcore", "Graphics\Vector\Vector.netcore.csproj", "{F98C891C-CED3-4589-8D50-715AA1F4F3BA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShapeElements", "Graphics\ShapeElements\ShapeElements.netcore.csproj", "{EF5847E5-BF89-4D2E-8FDA-ABBCEC0EE8D7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShapeElements.netcore", "Graphics\ShapeElements\ShapeElements.netcore.csproj", "{EF5847E5-BF89-4D2E-8FDA-ABBCEC0EE8D7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShapesGallery", "Graphics\ShapesGallery\ShapesGallery.netcore.csproj", "{C87F6002-8860-4B29-94C8-F2C0B392E87A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShapesGallery.netcore", "Graphics\ShapesGallery\ShapesGallery.netcore.csproj", "{C87F6002-8860-4B29-94C8-F2C0B392E87A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "2DTransforms", "Graphics\2DTransforms\2DTransforms.netcore.csproj", "{6B9A308F-FCC3-4335-B999-B72EE21DC9BA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "2DTransforms.netcore", "Graphics\2DTransforms\2DTransforms.netcore.csproj", "{6B9A308F-FCC3-4335-B999-B72EE21DC9BA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Matrix", "Graphics\Matrix\Matrix.netcore.csproj", "{C1E39C4C-C3C1-4D86-8CC8-B1E3B66ADB0A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Matrix.netcore", "Graphics\Matrix\Matrix.netcore.csproj", "{C1E39C4C-C3C1-4D86-8CC8-B1E3B66ADB0A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BitmapMetadata", "Graphics\BitmapMetadata\BitmapMetadata.netcore.csproj", "{6239125D-9C34-46BB-84A0-229C90D98247}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BitmapMetadata.netcore", "Graphics\BitmapMetadata\BitmapMetadata.netcore.csproj", "{6239125D-9C34-46BB-84A0-229C90D98247}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BMPEncoderAndDecoder", "Graphics\BMPEncoderAndDecoder\BMPEncoderAndDecoder.netcore.csproj", "{97E611C1-B808-4E80-8B27-9F3C19CA9041}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BMPEncoderAndDecoder.netcore", "Graphics\BMPEncoderAndDecoder\BMPEncoderAndDecoder.netcore.csproj", "{97E611C1-B808-4E80-8B27-9F3C19CA9041}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GIFEncoderAndDecoder", "Graphics\GIFEncoderAndDecoder\GIFEncoderAndDecoder.netcore.csproj", "{59534261-4C37-421E-B2A6-B4234DB2B818}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GIFEncoderAndDecoder.netcore", "Graphics\GIFEncoderAndDecoder\GIFEncoderAndDecoder.netcore.csproj", "{59534261-4C37-421E-B2A6-B4234DB2B818}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageView", "Graphics\ImageView\ImageView.netcore.csproj", "{6D6156A7-7D25-44F2-9F8B-3BA2C150F3CC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageView.netcore", "Graphics\ImageView\ImageView.netcore.csproj", "{6D6156A7-7D25-44F2-9F8B-3BA2C150F3CC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JPEGEncoderAndDecoder", "Graphics\JPEGEncoderAndDecoder\JPEGEncoderAndDecoder.netcore.csproj", "{4B352DA8-7B65-4175-8ED4-BFD9E2E5694F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JPEGEncoderAndDecoder.netcore", "Graphics\JPEGEncoderAndDecoder\JPEGEncoderAndDecoder.netcore.csproj", "{4B352DA8-7B65-4175-8ED4-BFD9E2E5694F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PNGEncoderAndDecoder", "Graphics\PNGEncoderAndDecoder\PNGEncoderAndDecoder.netcore.csproj", "{C94FE03A-0517-499D-AA25-AB84159BC9F8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PNGEncoderAndDecoder.netcore", "Graphics\PNGEncoderAndDecoder\PNGEncoderAndDecoder.netcore.csproj", "{C94FE03A-0517-499D-AA25-AB84159BC9F8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TIFFEncoderAndDecoder", "Graphics\TIFFEncoderAndDecoder\TIFFEncoderAndDecoder.netcore.csproj", "{9BCFFE24-236A-49B6-8920-A82053AA7843}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TIFFEncoderAndDecoder.netcore", "Graphics\TIFFEncoderAndDecoder\TIFFEncoderAndDecoder.netcore.csproj", "{9BCFFE24-236A-49B6-8920-A82053AA7843}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WDPEncoderAndDecoder", "Graphics\WDPEncoderAndDecoder\WDPEncoderAndDecoder.netcore.csproj", "{D34FA0D1-8E97-4A4A-A1B9-572A6CB2E895}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WDPEncoderAndDecoder.netcore", "Graphics\WDPEncoderAndDecoder\WDPEncoderAndDecoder.netcore.csproj", "{D34FA0D1-8E97-4A4A-A1B9-572A6CB2E895}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Transformations", "Transformations", "{7F823EE8-C367-42BB-92A5-C02EA728A112}"
EndProject
@@ -325,11 +309,11 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AitCodec", "Graphics\AITCod
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Effects", "Effects", "{753E05A9-3C3A-44E1-A381-CF4FB3E9AEBB}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BitmapEffectsGallery", "Graphics\BitmapEffectsGallery\BitmapEffectsGallery.netcore.csproj", "{7751718D-A4F5-49C8-B40C-7330DD2206F3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BitmapEffectsGallery.netcore", "Graphics\BitmapEffectsGallery\BitmapEffectsGallery.netcore.csproj", "{7751718D-A4F5-49C8-B40C-7330DD2206F3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Geometries", "Geometries", "{3BDF5468-2EF9-4BD3-9E8B-675D03FE3B06}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Geometery", "Graphics\Geometery\Geometery.netcore.csproj", "{87466DDE-BDEF-4531-9BC3-17CFFDEF092D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Geometery.netcore", "Graphics\Geometery\Geometery.netcore.csproj", "{87466DDE-BDEF-4531-9BC3-17CFFDEF092D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Brushes Samples", "Brushes Samples", "{9CA9DB4A-FB87-43AF-AB04-F8D4C305475D}"
EndProject
@@ -339,35 +323,35 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VisualLayer", "VisualLayer"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Globalization and Localization", "Globalization and Localization", "{1E9657DF-D52C-4CC6-B8D5-B3886FC111CA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StringLocalizationSample", "Globalization and Localization\StringLocalizationSample\StringLocalizationSample.netcore.csproj", "{06C245F2-0E05-452B-81BB-316D2F57A32D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StringLocalizationSample.netcore", "Globalization and Localization\StringLocalizationSample\StringLocalizationSample.netcore.csproj", "{06C245F2-0E05-452B-81BB-316D2F57A32D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Span", "Globalization and Localization\Span\Span.netcore.csproj", "{ADD534DD-B31C-4E04-9137-50A38DE0832E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Span.netcore", "Globalization and Localization\Span\Span.netcore.csproj", "{ADD534DD-B31C-4E04-9137-50A38DE0832E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RunSpan", "Globalization and Localization\RunSpan\RunSpan.netcore.csproj", "{3F86443A-8E59-4FFB-9C40-89B14667BDE7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RunSpan.netcore", "Globalization and Localization\RunSpan\RunSpan.netcore.csproj", "{3F86443A-8E59-4FFB-9C40-89B14667BDE7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Paths", "Globalization and Localization\Paths\Paths.netcore.csproj", "{1659D9D7-818A-4D25-B788-7B2F1837FB61}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Paths.netcore", "Globalization and Localization\Paths\Paths.netcore.csproj", "{1659D9D7-818A-4D25-B788-7B2F1837FB61}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumbersMultipleLangauges", "Globalization and Localization\NumbersMultipleLangauges\NumbersMultipleLangauges.netcore.csproj", "{97DE696C-99B3-40AB-A541-23F8070633C5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumbersMultipleLangauges.netcore", "Globalization and Localization\NumbersMultipleLangauges\NumbersMultipleLangauges.netcore.csproj", "{97DE696C-99B3-40AB-A541-23F8070633C5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LTRRTL", "Globalization and Localization\LTRRTL\LTRRTL.netcore.csproj", "{AC13243C-F52B-4404-A31B-F98E5C386E47}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LTRRTL.netcore", "Globalization and Localization\LTRRTL\LTRRTL.netcore.csproj", "{AC13243C-F52B-4404-A31B-F98E5C386E47}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalizationResources", "Globalization and Localization\LocalizationResources\LocalizationResources.netcore.csproj", "{58535CF1-AFF3-43F0-B466-BC4FF3885EAC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalizationResources.netcore", "Globalization and Localization\LocalizationResources\LocalizationResources.netcore.csproj", "{58535CF1-AFF3-43F0-B466-BC4FF3885EAC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LangAttribute", "Globalization and Localization\LangAttribute\LangAttribute.netcore.csproj", "{ED9097D0-7332-4EA8-AB6A-2A89E3A08440}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LangAttribute.netcore", "Globalization and Localization\LangAttribute\LangAttribute.netcore.csproj", "{ED9097D0-7332-4EA8-AB6A-2A89E3A08440}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Image", "Globalization and Localization\Image\Image.netcore.csproj", "{DA7E72D8-FB81-410D-B70B-2F920BA610A0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Image.netcore", "Globalization and Localization\Image\Image.netcore.csproj", "{DA7E72D8-FB81-410D-B70B-2F920BA610A0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Gradient", "Globalization and Localization\Gradient\Gradient.netcore.csproj", "{9C2457C8-9563-49AE-BDAE-DD1B1D894700}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Gradient.netcore", "Globalization and Localization\Gradient\Gradient.netcore.csproj", "{9C2457C8-9563-49AE-BDAE-DD1B1D894700}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GlobalizationRunDialog", "Globalization and Localization\GlobalizationRunDialog\GlobalizationRunDialog.netcore.csproj", "{DEEE1D3C-CAC6-408B-92FA-3E09B3755FB5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GlobalizationRunDialog.netcore", "Globalization and Localization\GlobalizationRunDialog\GlobalizationRunDialog.netcore.csproj", "{DEEE1D3C-CAC6-408B-92FA-3E09B3755FB5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GlobalizationHomepage", "Globalization and Localization\GlobalizationHomepage\GlobalizationHomepage.netcore.csproj", "{68F9A99F-532B-4EEA-B4FE-13126A5F22BA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GlobalizationHomepage.netcore", "Globalization and Localization\GlobalizationHomepage\GlobalizationHomepage.netcore.csproj", "{68F9A99F-532B-4EEA-B4FE-13126A5F22BA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDirection", "Globalization and Localization\FlowDirection\FlowDirection.netcore.csproj", "{2B8D230C-F57C-493E-A724-1507D3F04366}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDirection.netcore", "Globalization and Localization\FlowDirection\FlowDirection.netcore.csproj", "{2B8D230C-F57C-493E-A724-1507D3F04366}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BAML Loc", "BAML Loc", "{BDE31406-3BAA-4EEF-B67A-DFE3D636D366}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocApp", "Globalization and Localization\BAML Loc\LocApp\LocApp.netcore.csproj", "{64F31BAE-196A-4C63-97F3-860F7685F3E6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocApp.netcore", "Globalization and Localization\BAML Loc\LocApp\LocApp.netcore.csproj", "{64F31BAE-196A-4C63-97F3-860F7685F3E6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Elements", "Elements", "{31169629-79F4-4F2C-B5F1-86C58CD41B1F}"
EndProject
@@ -377,151 +361,151 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Logical and Visual Tree", "
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Properties", "Properties", "{23D33D85-012D-465F-A845-9DF0181CF846}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OverridingLogicalTree", "Element Tree\OverridingLogicalTree\OverridingLogicalTree.netcore.csproj", "{25C7567C-0704-4D45-A2CD-76C99A2D9947}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OverridingLogicalTree.netcore", "Element Tree\OverridingLogicalTree\OverridingLogicalTree.netcore.csproj", "{25C7567C-0704-4D45-A2CD-76C99A2D9947}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SearchingForElement", "Element Tree\SearchingForElement\SearchingForElement.netcore.csproj", "{F6BC2B08-009A-44CA-A5C0-7B6B067D293C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SearchingForElement.netcore", "Element Tree\SearchingForElement\SearchingForElement.netcore.csproj", "{F6BC2B08-009A-44CA-A5C0-7B6B067D293C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomClassesWithDP", "Properties\CustomClassesWithDP\CustomClassesWithDP.netcore.csproj", "{BC20B827-CD59-45EF-B55B-B85C69435580}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomClassesWithDP.netcore", "Properties\CustomClassesWithDP\CustomClassesWithDP.netcore.csproj", "{BC20B827-CD59-45EF-B55B-B85C69435580}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestoringDefaultValues", "Properties\RestoringDefaultValues\RestoringDefaultValues.netcore.csproj", "{537B9AA5-91D9-478A-B010-3DAC78F67DCF}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RestoringDefaultValues.netcore", "Properties\RestoringDefaultValues\RestoringDefaultValues.netcore.csproj", "{537B9AA5-91D9-478A-B010-3DAC78F67DCF}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Callbacks", "Properties\Callbacks\Callbacks.netcore.csproj", "{AEAEEC69-9547-4D4B-94E9-CB3D3C620E13}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Callbacks.netcore", "Properties\Callbacks\Callbacks.netcore.csproj", "{AEAEEC69-9547-4D4B-94E9-CB3D3C620E13}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Input and Commands", "Input and Commands", "{2F93AB3B-CD06-4D8D-95A6-8E4594E10DAD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resources", "Resources", "{D5D5E944-7E50-46DB-A406-F96DCD3E63D8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationResources", "Resources\ApplicationResources\ApplicationResources.netcore.csproj", "{2F51B6EF-1F3B-4E85-93A3-37926B770100}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationResources.netcore", "Resources\ApplicationResources\ApplicationResources.netcore.csproj", "{2F51B6EF-1F3B-4E85-93A3-37926B770100}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DefiningResources", "Resources\DefiningResources\DefiningResources.netcore.csproj", "{A2683BE0-B2F7-4FC4-B83D-140259A9D3C8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DefiningResources.netcore", "Resources\DefiningResources\DefiningResources.netcore.csproj", "{A2683BE0-B2F7-4FC4-B83D-140259A9D3C8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MergedResources", "Resources\MergedResources\MergedResources.netcore.csproj", "{77B42053-782D-445C-B068-1539579DB282}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MergedResources.netcore", "Resources\MergedResources\MergedResources.netcore.csproj", "{77B42053-782D-445C-B068-1539579DB282}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Threading", "Threading", "{40CED083-6ED2-4E06-B2E4-927047CFFF15}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiThreadingWebBrowser", "Threading\MultiThreadingWebBrowser\MultiThreadingWebBrowser.netcore.csproj", "{E2D6CCD2-AE2B-45BF-84B3-D1EF38B290D5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiThreadingWebBrowser.netcore", "Threading\MultiThreadingWebBrowser\MultiThreadingWebBrowser.netcore.csproj", "{E2D6CCD2-AE2B-45BF-84B3-D1EF38B290D5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SingleThreadedApplication", "Threading\SingleThreadedApplication\SingleThreadedApplication.netcore.csproj", "{09DBA36D-0A98-4F38-AB42-805CAB424F1B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SingleThreadedApplication.netcore", "Threading\SingleThreadedApplication\SingleThreadedApplication.netcore.csproj", "{09DBA36D-0A98-4F38-AB42-805CAB424F1B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingDispatcher", "Threading\UsingDispatcher\UsingDispatcher.netcore.csproj", "{B1793F96-D67A-4E16-A87D-C7FE88899EF6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingDispatcher.netcore", "Threading\UsingDispatcher\UsingDispatcher.netcore.csproj", "{B1793F96-D67A-4E16-A87D-C7FE88899EF6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Styles and Templates", "Styles and Templates", "{F56DB86E-388C-48D0-989D-24911A5A1FE4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntroToStylingAndTemplating", "Styles & Templates\IntroToStylingAndTemplating\IntroToStylingAndTemplating.netcore.csproj", "{9A0D825F-45FB-439C-A57D-E206B4918C95}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntroToStylingAndTemplating.netcore", "Styles & Templates\IntroToStylingAndTemplating\IntroToStylingAndTemplating.netcore.csproj", "{9A0D825F-45FB-439C-A57D-E206B4918C95}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventTriggers", "Styles & Templates\EventTriggers\EventTriggers.netcore.csproj", "{E30A1BE4-EB9C-466A-861A-C71BA8D5B019}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventTriggers.netcore", "Styles & Templates\EventTriggers\EventTriggers.netcore.csproj", "{E30A1BE4-EB9C-466A-861A-C71BA8D5B019}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContentControlStyle", "Styles & Templates\ContentControlStyle\ContentControlStyle.netcore.csproj", "{431A0845-C890-411B-82D3-DD2CECC36ACF}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContentControlStyle.netcore", "Styles & Templates\ContentControlStyle\ContentControlStyle.netcore.csproj", "{431A0845-C890-411B-82D3-DD2CECC36ACF}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingElementsInTemplates", "Styles & Templates\FindingElementsInTemplates\FindingElementsInTemplates.netcore.csproj", "{EC2A7EB9-1F25-4534-83EB-3E7A072E5899}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingElementsInTemplates.netcore", "Styles & Templates\FindingElementsInTemplates\FindingElementsInTemplates.netcore.csproj", "{EC2A7EB9-1F25-4534-83EB-3E7A072E5899}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlternatingAppearanceOfItems", "Styles & Templates\AlternatingAppearanceOfItems\AlternatingAppearanceOfItems.netcore.csproj", "{46D66569-3E63-470C-9469-289B5A0D12D4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlternatingAppearanceOfItems.netcore", "Styles & Templates\AlternatingAppearanceOfItems\AlternatingAppearanceOfItems.netcore.csproj", "{46D66569-3E63-470C-9469-289B5A0D12D4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentMerge", "Documents\Fixed Documents\DocumentMerge\DocumentMerge.netcore.csproj", "{B0E897DD-6BAF-4B86-A4E5-C936BAD15805}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentMerge.netcore", "Documents\Fixed Documents\DocumentMerge\DocumentMerge.netcore.csproj", "{B0E897DD-6BAF-4B86-A4E5-C936BAD15805}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentSerialization", "Documents\Fixed Documents\DocumentSerialization\DocumentSerialization.netcore.csproj", "{D4D2367D-5E0C-4048-933A-AE637BAB45B3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentSerialization.netcore", "Documents\Fixed Documents\DocumentSerialization\DocumentSerialization.netcore.csproj", "{D4D2367D-5E0C-4048-933A-AE637BAB45B3}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentStructure", "Documents\Fixed Documents\DocumentStructure\DocumentStructure.netcore.csproj", "{3EFC4DFB-3B2B-44DB-96BA-6ACC94031043}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentStructure.netcore", "Documents\Fixed Documents\DocumentStructure\DocumentStructure.netcore.csproj", "{3EFC4DFB-3B2B-44DB-96BA-6ACC94031043}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Fixed Documents", "Fixed Documents", "{D56D925A-9931-4A04-BD68-E54485B0F00F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Flow Content", "Flow Content", "{6225B80E-436F-4DA9-97EE-241969E81EE8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableRows", "Documents\Flow Content\TableRows\TableRows.netcore.csproj", "{6AFC5EDC-E5D1-4720-A9A2-A35CC9B499E0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableRows.netcore", "Documents\Flow Content\TableRows\TableRows.netcore.csproj", "{6AFC5EDC-E5D1-4720-A9A2-A35CC9B499E0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableBuilder", "Documents\Flow Content\TableBuilder\TableBuilder.netcore.csproj", "{C3D421A3-A570-4F37-9490-E1B9CDAFABDB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableBuilder.netcore", "Documents\Flow Content\TableBuilder\TableBuilder.netcore.csproj", "{C3D421A3-A570-4F37-9490-E1B9CDAFABDB}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TabularData", "Documents\Flow Content\TabularData\TabularData.netcore.csproj", "{0A62BC41-6B20-4989-8094-63762196FCF1}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TabularData.netcore", "Documents\Flow Content\TabularData\TabularData.netcore.csproj", "{0A62BC41-6B20-4989-8094-63762196FCF1}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowContentElements", "Documents\Flow Content\FlowContentElements\FlowContentElements.netcore.csproj", "{1E819CBA-DB6B-43A9-8384-C9BF6169BD62}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowContentElements.netcore", "Documents\Flow Content\FlowContentElements\FlowContentElements.netcore.csproj", "{1E819CBA-DB6B-43A9-8384-C9BF6169BD62}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowContentProperty", "Documents\Flow Content\FlowContentProperty\FlowContentProperty.netcore.csproj", "{9BB351D8-DAA1-48BB-9F3D-719839544A81}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowContentProperty.netcore", "Documents\Flow Content\FlowContentProperty\FlowContentProperty.netcore.csproj", "{9BB351D8-DAA1-48BB-9F3D-719839544A81}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDocumentNewsClient", "Documents\Flow Content\FlowDocumentNewsClient\FlowDocumentNewsClient.netcore.csproj", "{5336F594-A582-405D-8C6D-A4C9B47A0B5E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDocumentNewsClient.netcore", "Documents\Flow Content\FlowDocumentNewsClient\FlowDocumentNewsClient.netcore.csproj", "{5336F594-A582-405D-8C6D-A4C9B47A0B5E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDocumentProperties", "Documents\Flow Content\FlowDocumentProperties\FlowDocumentProperties.netcore.csproj", "{32A3F655-6667-4896-8C0D-E2EA6BD739D5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowDocumentProperties.netcore", "Documents\Flow Content\FlowDocumentProperties\FlowDocumentProperties.netcore.csproj", "{32A3F655-6667-4896-8C0D-E2EA6BD739D5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FontProperties", "Documents\Flow Content\FontProperties\FontProperties.netcore.csproj", "{944D4BC9-6F86-4374-8394-739F32BFCD8C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FontProperties.netcore", "Documents\Flow Content\FontProperties\FontProperties.netcore.csproj", "{944D4BC9-6F86-4374-8394-739F32BFCD8C}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParagraphAndHyphenation", "Documents\Flow Content\ParagraphAndHyphenation\ParagraphAndHyphenation.netcore.csproj", "{5F5987B3-1D89-4E77-971F-6C0EE6565676}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParagraphAndHyphenation.netcore", "Documents\Flow Content\ParagraphAndHyphenation\ParagraphAndHyphenation.netcore.csproj", "{5F5987B3-1D89-4E77-971F-6C0EE6565676}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TextWrapProperty", "Documents\Flow Content\TextWrapProperty\TextWrapProperty.netcore.csproj", "{23A9BDBD-7716-4B03-B395-709ADCCD5983}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TextWrapProperty.netcore", "Documents\Flow Content\TextWrapProperty\TextWrapProperty.netcore.csproj", "{23A9BDBD-7716-4B03-B395-709ADCCD5983}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Annotations", "Annotations", "{076D93D1-076A-4ADD-8D23-64446CB1F18B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnnotationsStyling", "Documents\Annotations\AnnotationsStyling\AnnotationsStyling.netcore.csproj", "{E13DE02E-6368-4921-AFE8-FE8619B5274D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnnotationsStyling.netcore", "Documents\Annotations\AnnotationsStyling\AnnotationsStyling.netcore.csproj", "{E13DE02E-6368-4921-AFE8-FE8619B5274D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnnotatedDocumentViewer", "Documents\Annotations\AnnotatedDocumentViewer\AnnotatedDocumentViewer.netcore.csproj", "{2F0211FA-742F-436C-949B-D96B6BA2B9BE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnnotatedDocumentViewer.netcore", "Documents\Annotations\AnnotatedDocumentViewer\AnnotatedDocumentViewer.netcore.csproj", "{2F0211FA-742F-436C-949B-D96B6BA2B9BE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContextMenuOpening", "Elements\ContextMenuOpening\ContextMenuOpening.netcore.csproj", "{09342EA5-3677-427C-8F70-2055E96B99CD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ContextMenuOpening.netcore", "Elements\ContextMenuOpening\ContextMenuOpening.netcore.csproj", "{09342EA5-3677-427C-8F70-2055E96B99CD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingElementInPanel", "Elements\FindingElementInPanel\FindingElementInPanel.netcore.csproj", "{C0FF53DF-A711-47C7-98F3-E86162C3C5C2}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingElementInPanel.netcore", "Elements\FindingElementInPanel\FindingElementInPanel.netcore.csproj", "{C0FF53DF-A711-47C7-98F3-E86162C3C5C2}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FocusVisualStyle", "Elements\FocusVisualStyle\FocusVisualStyle.netcore.csproj", "{5DA19A03-2CDB-49E0-AEA6-D91DF864C6AA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FocusVisualStyle.netcore", "Elements\FocusVisualStyle\FocusVisualStyle.netcore.csproj", "{5DA19A03-2CDB-49E0-AEA6-D91DF864C6AA}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HeightProperties", "Elements\HeightProperties\HeightProperties.netcore.csproj", "{E5DF5A14-B4DE-46D4-ADE4-3C5BAC700519}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HeightProperties.netcore", "Elements\HeightProperties\HeightProperties.netcore.csproj", "{E5DF5A14-B4DE-46D4-ADE4-3C5BAC700519}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LoadedEvent", "Elements\LoadedEvent\LoadedEvent.netcore.csproj", "{132B6CE0-4262-4AFB-ACFD-3FAF95978253}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LoadedEvent.netcore", "Elements\LoadedEvent\LoadedEvent.netcore.csproj", "{132B6CE0-4262-4AFB-ACFD-3FAF95978253}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SettingMargins", "Elements\SettingMargins\SettingMargins.netcore.csproj", "{F7A6E73A-7C3F-4E64-BD4C-A6F7DD5ED7A3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SettingMargins.netcore", "Elements\SettingMargins\SettingMargins.netcore.csproj", "{F7A6E73A-7C3F-4E64-BD4C-A6F7DD5ED7A3}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThicknessConverter", "Elements\ThicknessConverter\ThicknessConverter.netcore.csproj", "{EF311600-0BD6-493C-A744-2E1843E47E7B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThicknessConverter.netcore", "Elements\ThicknessConverter\ThicknessConverter.netcore.csproj", "{EF311600-0BD6-493C-A744-2E1843E47E7B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingElements", "Elements\UsingElements\UsingElements.netcore.csproj", "{88071B1D-E73F-4234-AC49-FADB01363EBB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingElements.netcore", "Elements\UsingElements\UsingElements.netcore.csproj", "{88071B1D-E73F-4234-AC49-FADB01363EBB}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisibiltyChanges", "Elements\VisibiltyChanges\VisibiltyChanges.netcore.csproj", "{811B87B8-7B14-4271-9436-5F580DF0C3B2}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisibiltyChanges.netcore", "Elements\VisibiltyChanges\VisibiltyChanges.netcore.csproj", "{811B87B8-7B14-4271-9436-5F580DF0C3B2}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WidthProperties", "Elements\WidthProperties\WidthProperties.netcore.csproj", "{E65CBCB6-ECA8-4DBF-A61B-86B12E71FDE6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WidthProperties.netcore", "Elements\WidthProperties\WidthProperties.netcore.csproj", "{E65CBCB6-ECA8-4DBF-A61B-86B12E71FDE6}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoutedEventHandling", "Events\RoutedEventHandling\RoutedEventHandling.netcore.csproj", "{BAA8A6D4-01CE-464E-A0FA-420A4C584D8E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoutedEventHandling.netcore", "Events\RoutedEventHandling\RoutedEventHandling.netcore.csproj", "{BAA8A6D4-01CE-464E-A0FA-420A4C584D8E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingSourceElement", "Events\FindingSourceElement\FindingSourceElement.netcore.csproj", "{233450E5-851A-4047-A9B1-FB9941A62854}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindingSourceElement.netcore", "Events\FindingSourceElement\FindingSourceElement.netcore.csproj", "{233450E5-851A-4047-A9B1-FB9941A62854}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomRoutedEvents", "Events\CustomRoutedEvents\CustomRoutedEvents.netcore.csproj", "{38351A72-B5A7-4EAB-8E8D-BEE3C2C16D78}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomRoutedEvents.netcore", "Events\CustomRoutedEvents\CustomRoutedEvents.netcore.csproj", "{38351A72-B5A7-4EAB-8E8D-BEE3C2C16D78}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AddingEventHandler", "Events\AddingEventHandler\AddingEventHandler.netcore.csproj", "{11C09980-EF76-44D5-AE72-21E4C5DC85EC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AddingEventHandler.netcore", "Events\AddingEventHandler\AddingEventHandler.netcore.csproj", "{11C09980-EF76-44D5-AE72-21E4C5DC85EC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnimationExamples", "Animation\AnimationExamples\AnimationExamples.netcore.csproj", "{E230228F-54C2-4929-BD65-21E67E08B3E7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnimationExamples.netcore", "Animation\AnimationExamples\AnimationExamples.netcore.csproj", "{E230228F-54C2-4929-BD65-21E67E08B3E7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnimationTiming", "Animation\AnimationTiming\AnimationTiming.netcore.csproj", "{D885137D-4590-42ED-9CF4-5D6C94F62E51}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnimationTiming.netcore", "Animation\AnimationTiming\AnimationTiming.netcore.csproj", "{D885137D-4590-42ED-9CF4-5D6C94F62E51}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomAnimation", "Animation\CustomAnimation\CustomAnimation.netcore.csproj", "{1A9044D7-C2EE-4F0F-9285-8BA0AF4DC3D5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomAnimation.netcore", "Animation\CustomAnimation\CustomAnimation.netcore.csproj", "{1A9044D7-C2EE-4F0F-9285-8BA0AF4DC3D5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KeyFrameAnimation", "Animation\KeyFrameAnimation\KeyFrameAnimation.netcore.csproj", "{4193AFCC-D5BC-45B7-B21B-C4A25C37A700}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KeyFrameAnimation.netcore", "Animation\KeyFrameAnimation\KeyFrameAnimation.netcore.csproj", "{4193AFCC-D5BC-45B7-B21B-C4A25C37A700}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KeySplineAnimations", "Animation\KeySplineAnimations\KeySplineAnimations.netcore.csproj", "{10943E68-65D8-4BB6-B527-FB7A15F1F08A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KeySplineAnimations.netcore", "Animation\KeySplineAnimations\KeySplineAnimations.netcore.csproj", "{10943E68-65D8-4BB6-B527-FB7A15F1F08A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalAnimations", "Animation\LocalAnimations\LocalAnimations.netcore.csproj", "{25060FB8-91AA-48E8-967D-DC44240F434B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalAnimations.netcore", "Animation\LocalAnimations\LocalAnimations.netcore.csproj", "{25060FB8-91AA-48E8-967D-DC44240F434B}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpacityAnimation", "Animation\OpacityAnimation\OpacityAnimation.netcore.csproj", "{9555DE9A-C478-4445-B1D9-B6808CADA904}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpacityAnimation.netcore", "Animation\OpacityAnimation\OpacityAnimation.netcore.csproj", "{9555DE9A-C478-4445-B1D9-B6808CADA904}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PathAnimations", "Animation\PathAnimations\PathAnimations.netcore.csproj", "{FFA153CA-8819-4E30-83E1-E1F140128997}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PathAnimations.netcore", "Animation\PathAnimations\PathAnimations.netcore.csproj", "{FFA153CA-8819-4E30-83E1-E1F140128997}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Per-FrameAnimation", "Animation\Per-FrameAnimation\Per-FrameAnimation.netcore.csproj", "{20D23173-AF06-4C80-A69F-122C4FD8193F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Per-FrameAnimation.netcore", "Animation\Per-FrameAnimation\Per-FrameAnimation.netcore.csproj", "{20D23173-AF06-4C80-A69F-122C4FD8193F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyAnimation", "Animation\PropertyAnimation\PropertyAnimation.netcore.csproj", "{160DE6CE-6511-4F82-B8C9-349C59DE0C85}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PropertyAnimation.netcore", "Animation\PropertyAnimation\PropertyAnimation.netcore.csproj", "{160DE6CE-6511-4F82-B8C9-349C59DE0C85}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TargetValues", "Animation\TargetValues\TargetValues.netcore.csproj", "{6C73DA30-ABAD-440E-90B4-CDDB8C4D052D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TargetValues.netcore", "Animation\TargetValues\TargetValues.netcore.csproj", "{6C73DA30-ABAD-440E-90B4-CDDB8C4D052D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CaptureUnCaptureMouse", "Input and Commands\CaptureUnCaptureMouse\CaptureUnCaptureMouse.netcore.csproj", "{439627DE-B924-437B-9491-498F86030AB4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CaptureUnCaptureMouse.netcore", "Input and Commands\CaptureUnCaptureMouse\CaptureUnCaptureMouse.netcore.csproj", "{439627DE-B924-437B-9491-498F86030AB4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgrammaticFocusControl", "Input and Commands\ProgrammaticFocusControl\ProgrammaticFocusControl.netcore.csproj", "{A5E236AC-7FB4-466C-9E05-6644FAF76072}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgrammaticFocusControl.netcore", "Input and Commands\ProgrammaticFocusControl\ProgrammaticFocusControl.netcore.csproj", "{A5E236AC-7FB4-466C-9E05-6644FAF76072}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommandSourceControlUsingSystemTimer", "Input and Commands\CommandSourceControlUsingSystemTimer\CommandSourceControlUsingSystemTimer.netcore.csproj", "{D0018A16-F28C-4023-A823-4EE06F08413F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommandSourceControlUsingSystemTimer.netcore", "Input and Commands\CommandSourceControlUsingSystemTimer\CommandSourceControlUsingSystemTimer.netcore.csproj", "{D0018A16-F28C-4023-A823-4EE06F08413F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommandSourceControlWithDispatcherTimer", "Input and Commands\CommandSourceControlWithDispatcherTimer\CommandSourceControlWithDispatcherTimer.netcore.csproj", "{108564DE-9304-4AC5-AC62-DF7D335A36F0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommandSourceControlWithDispatcherTimer.netcore", "Input and Commands\CommandSourceControlWithDispatcherTimer\CommandSourceControlWithDispatcherTimer.netcore.csproj", "{108564DE-9304-4AC5-AC62-DF7D335A36F0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CursorType", "Input and Commands\CursorType\CursorType.netcore.csproj", "{AE9F7AC3-5080-4D3F-8B80-23CF953DE360}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CursorType.netcore", "Input and Commands\CursorType\CursorType.netcore.csproj", "{AE9F7AC3-5080-4D3F-8B80-23CF953DE360}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CompositionTarget", "Visual Layer\CompositionTarget\CompositionTarget.netcore.csproj", "{BCC7F017-0D02-46DF-891C-FCC2A1BBF46E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CompositionTarget.netcore", "Visual Layer\CompositionTarget\CompositionTarget.netcore.csproj", "{BCC7F017-0D02-46DF-891C-FCC2A1BBF46E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrawingVisual", "Visual Layer\DrawingVisual\DrawingVisual.netcore.csproj", "{9BF35AE6-1AA0-4DC8-88F2-4365A6B51E13}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrawingVisual.netcore", "Visual Layer\DrawingVisual\DrawingVisual.netcore.csproj", "{9BF35AE6-1AA0-4DC8-88F2-4365A6B51E13}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisualsHitTesting", "Visual Layer\VisualsHitTesting\VisualsHitTesting.netcore.csproj", "{76B02080-C991-4A7E-9BB3-7AF9FFDBF6AD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VisualsHitTesting.netcore", "Visual Layer\VisualsHitTesting\VisualsHitTesting.netcore.csproj", "{76B02080-C991-4A7E-9BB3-7AF9FFDBF6AD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MediaGallery", "Speech and Media\MediaGallery\MediaGallery.netcore.csproj", "{1028A97F-B4CE-4D46-A73F-AB075355B2FD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MediaGallery.netcore", "Speech and Media\MediaGallery\MediaGallery.netcore.csproj", "{1028A97F-B4CE-4D46-A73F-AB075355B2FD}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingSpeech", "Speech and Media\UsingSpeech\UsingSpeech.netcore.csproj", "{7A8F578F-002A-4548-849E-E91640929128}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsingSpeech.netcore", "Speech and Media\UsingSpeech\UsingSpeech.netcore.csproj", "{7A8F578F-002A-4548-849E-E91640929128}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1114A46F-2963-4B4C-8756-DD517011FBF7}"
ProjectSection(SolutionItems) = preProject
@@ -529,18 +513,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomApplicationClass", "Application Management\CustomApplication\CustomApplicationClass\CustomApplicationClass.netcore.csproj", "{DF1BF5B2-38D8-47B4-9565-2122B982E3A9}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomApplicationClass.netcore", "Application Management\CustomApplication\CustomApplicationClass\CustomApplicationClass.netcore.csproj", "{DF1BF5B2-38D8-47B4-9565-2122B982E3A9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomApplicationClient", "Application Management\CustomApplication\CustomApplicationClient\CustomApplicationClient.netcore.csproj", "{2E41B158-06CB-4F09-B2A8-67394C3FD22A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomApplicationClient.netcore", "Application Management\CustomApplication\CustomApplicationClient\CustomApplicationClient.netcore.csproj", "{2E41B158-06CB-4F09-B2A8-67394C3FD22A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PerMonitorDPI", "PerMonitorDPI", "{B420065D-BD33-4129-8981-7CC055957988}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TextFormatting", "PerMonitorDPI\TextFormatting\TextFormatting.netcore.csproj", "{AFDE9CE4-2CCF-4932-BD12-1AC8531DCBD7}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TextFormatting.netcore", "PerMonitorDPI\TextFormatting\TextFormatting.netcore.csproj", "{AFDE9CE4-2CCF-4932-BD12-1AC8531DCBD7}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageScaling.netcore", "PerMonitorDPI\ImageScaling\ImageScaling.netcore.csproj", "{3F1F5361-C67A-45D7-87E6-9F6C676919D5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageScaling", "PerMonitorDPI\ImageScaling\ImageScaling.netcore.csproj", "{3F1F5361-C67A-45D7-87E6-9F6C676919D5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FormattedTextExample.netcore", "PerMonitorDPI\FormattedTextExample\FormattedTextExample.netcore.csproj", "{B8190D70-464C-497C-892D-7D2309F4CFA7}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FormattedTextExample", "PerMonitorDPI\FormattedTextExample\FormattedTextExample.netcore.csproj", "{B8190D70-464C-497C-892D-7D2309F4CFA7}"
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Compatibility", "Compatibility", "{0920F19C-8764-4631-9BFB-EBE611B99FC7}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AppCompat-Quirks.netcore", "Compatibility\AppCompat-Quirks.netcore.csproj", "{6C033AE8-7897-4466-A0F0-49B3B2B79CAA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -1208,26 +1195,6 @@ Global
{74AA414A-B3E4-4B9A-A457-B4CCB8B5161E}.Release|Win32.Build.0 = Release|Any CPU
{74AA414A-B3E4-4B9A-A457-B4CCB8B5161E}.Release|x64.ActiveCfg = Release|Any CPU
{74AA414A-B3E4-4B9A-A457-B4CCB8B5161E}.Release|x64.Build.0 = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|ARM.Build.0 = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|Win32.Build.0 = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|x64.ActiveCfg = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Debug|x64.Build.0 = Debug|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Any CPU.Build.0 = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|ARM.ActiveCfg = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|ARM.Build.0 = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Win32.ActiveCfg = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|Win32.Build.0 = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|x64.ActiveCfg = Release|Any CPU
- {C7389A9B-5758-4BB9-9C81-9A3AEBC168F1}.Release|x64.Build.0 = Release|Any CPU
{3825CEC7-BA04-4B37-81A1-5166CBF4C3FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3825CEC7-BA04-4B37-81A1-5166CBF4C3FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3825CEC7-BA04-4B37-81A1-5166CBF4C3FE}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -1648,26 +1615,6 @@ Global
{9D3DD469-E0BC-4515-B5D6-AE527748E3EE}.Release|Win32.Build.0 = Release|Any CPU
{9D3DD469-E0BC-4515-B5D6-AE527748E3EE}.Release|x64.ActiveCfg = Release|Any CPU
{9D3DD469-E0BC-4515-B5D6-AE527748E3EE}.Release|x64.Build.0 = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|ARM.Build.0 = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|Win32.Build.0 = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|x64.ActiveCfg = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Debug|x64.Build.0 = Debug|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Any CPU.Build.0 = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|ARM.ActiveCfg = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|ARM.Build.0 = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Win32.ActiveCfg = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|Win32.Build.0 = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|x64.ActiveCfg = Release|Any CPU
- {99929DE3-C459-403B-B35D-F9E7545AB764}.Release|x64.Build.0 = Release|Any CPU
{EBF187A9-C9B1-4BA2-8F0B-5F89A90F6C79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EBF187A9-C9B1-4BA2-8F0B-5F89A90F6C79}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EBF187A9-C9B1-4BA2-8F0B-5F89A90F6C79}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2288,26 +2235,6 @@ Global
{75E45E90-2C6F-4512-A551-C255303C436F}.Release|Win32.Build.0 = Release|Any CPU
{75E45E90-2C6F-4512-A551-C255303C436F}.Release|x64.ActiveCfg = Release|Any CPU
{75E45E90-2C6F-4512-A551-C255303C436F}.Release|x64.Build.0 = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|ARM.Build.0 = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|Win32.Build.0 = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|x64.ActiveCfg = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Debug|x64.Build.0 = Debug|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Any CPU.Build.0 = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|ARM.ActiveCfg = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|ARM.Build.0 = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Win32.ActiveCfg = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|Win32.Build.0 = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|x64.ActiveCfg = Release|Any CPU
- {41335A5D-D497-4FBC-9FB9-15880E73613C}.Release|x64.Build.0 = Release|Any CPU
{6E8CC9C4-566C-43F1-8353-80D1FBFB483C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6E8CC9C4-566C-43F1-8353-80D1FBFB483C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E8CC9C4-566C-43F1-8353-80D1FBFB483C}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2344,26 +2271,6 @@ Global
{158D6826-38D9-49B0-A6CA-A46DF7BE03E3}.Release|Win32.ActiveCfg = Release|Any CPU
{158D6826-38D9-49B0-A6CA-A46DF7BE03E3}.Release|Win32.Build.0 = Release|Any CPU
{158D6826-38D9-49B0-A6CA-A46DF7BE03E3}.Release|x64.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|ARM.Build.0 = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|Win32.Build.0 = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|x64.ActiveCfg = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Debug|x64.Build.0 = Debug|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Any CPU.Build.0 = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|ARM.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|ARM.Build.0 = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Win32.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|Win32.Build.0 = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|x64.ActiveCfg = Release|Any CPU
- {1D45B0A8-DEF6-4E46-811D-F16592D71A74}.Release|x64.Build.0 = Release|Any CPU
{B105D741-5DA2-4857-B603-932EC96A9A94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B105D741-5DA2-4857-B603-932EC96A9A94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B105D741-5DA2-4857-B603-932EC96A9A94}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2384,82 +2291,6 @@ Global
{B105D741-5DA2-4857-B603-932EC96A9A94}.Release|Win32.Build.0 = Release|Any CPU
{B105D741-5DA2-4857-B603-932EC96A9A94}.Release|x64.ActiveCfg = Release|Any CPU
{B105D741-5DA2-4857-B603-932EC96A9A94}.Release|x64.Build.0 = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|ARM.Build.0 = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|Win32.Build.0 = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|x64.ActiveCfg = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Debug|x64.Build.0 = Debug|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Any CPU.Build.0 = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|ARM.ActiveCfg = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|ARM.Build.0 = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Win32.ActiveCfg = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|Win32.Build.0 = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|x64.ActiveCfg = Release|Any CPU
- {4E5AEC78-877B-4D62-AF2E-AE94CCB194FB}.Release|x64.Build.0 = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|ARM.Build.0 = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|Win32.Build.0 = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|x64.ActiveCfg = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Debug|x64.Build.0 = Debug|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Any CPU.Build.0 = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|ARM.ActiveCfg = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|ARM.Build.0 = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Win32.ActiveCfg = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|Win32.Build.0 = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|x64.ActiveCfg = Release|Any CPU
- {09440E06-5074-4C1D-96F7-72E1A4B2D2A1}.Release|x64.Build.0 = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|ARM.Build.0 = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|Win32.Build.0 = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|x64.ActiveCfg = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Debug|x64.Build.0 = Debug|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Any CPU.Build.0 = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|ARM.ActiveCfg = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|ARM.Build.0 = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Win32.ActiveCfg = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|Win32.Build.0 = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|x64.ActiveCfg = Release|Any CPU
- {54D3EA0D-B26B-4D98-A72C-042B1B152EC4}.Release|x64.Build.0 = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|Win32.Build.0 = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Debug|x64.ActiveCfg = Debug|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Any CPU.Build.0 = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|ARM.ActiveCfg = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Win32.ActiveCfg = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|Win32.Build.0 = Release|Any CPU
- {B6555C55-1AB9-426D-A415-555776FA2ACB}.Release|x64.ActiveCfg = Release|Any CPU
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Debug|Any CPU.ActiveCfg = Debug|Win32
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Debug|ARM.ActiveCfg = Debug|Win32
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
@@ -2474,34 +2305,6 @@ Global
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Release|Win32.ActiveCfg = Release|Win32
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Release|Win32.Build.0 = Release|Win32
{138FAB00-1FAE-4A24-8F47-6D7CE86BF82F}.Release|x64.ActiveCfg = Release|Win32
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Debug|x64.ActiveCfg = Debug|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|Any CPU.Build.0 = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|ARM.ActiveCfg = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|Win32.ActiveCfg = Release|Any CPU
- {962664BD-E5D2-4BAB-9C9D-5FE0F4A5A7C3}.Release|x64.ActiveCfg = Release|Any CPU
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|Any CPU.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|ARM.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|Mixed Platforms.Build.0 = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|Win32.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|Win32.Build.0 = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Debug|x64.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|Any CPU.ActiveCfg = Release|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|ARM.ActiveCfg = Release|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|Mixed Platforms.ActiveCfg = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|Mixed Platforms.Build.0 = Debug|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|Win32.ActiveCfg = Release|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|Win32.Build.0 = Release|Win32
- {8625A303-646D-4D87-BC14-29CD4D079CD9}.Release|x64.ActiveCfg = Release|Win32
{7289753F-C0EF-4C91-82DA-D53F75222152}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7289753F-C0EF-4C91-82DA-D53F75222152}.Debug|ARM.ActiveCfg = Debug|Any CPU
{7289753F-C0EF-4C91-82DA-D53F75222152}.Debug|ARM.Build.0 = Debug|Any CPU
@@ -2519,26 +2322,6 @@ Global
{7289753F-C0EF-4C91-82DA-D53F75222152}.Release|Win32.ActiveCfg = Debug|Any CPU
{7289753F-C0EF-4C91-82DA-D53F75222152}.Release|x64.ActiveCfg = Debug|Any CPU
{7289753F-C0EF-4C91-82DA-D53F75222152}.Release|x64.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|ARM.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|Win32.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|x64.ActiveCfg = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Debug|x64.Build.0 = Debug|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Any CPU.Build.0 = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|ARM.ActiveCfg = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|ARM.Build.0 = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Win32.ActiveCfg = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|Win32.Build.0 = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|x64.ActiveCfg = Release|Any CPU
- {23C37C5F-B124-48B6-A0F5-6183351FF8CF}.Release|x64.Build.0 = Release|Any CPU
{27E26A5C-1333-44FF-81DC-DD4DB0BFC313}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27E26A5C-1333-44FF-81DC-DD4DB0BFC313}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27E26A5C-1333-44FF-81DC-DD4DB0BFC313}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2633,26 +2416,6 @@ Global
{09BC7736-0DDC-4DBF-8CA9-BA5B85A93C8B}.Release|Win32.Build.0 = Release|Any CPU
{09BC7736-0DDC-4DBF-8CA9-BA5B85A93C8B}.Release|x64.ActiveCfg = Release|Any CPU
{09BC7736-0DDC-4DBF-8CA9-BA5B85A93C8B}.Release|x64.Build.0 = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|ARM.Build.0 = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|Win32.Build.0 = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|x64.ActiveCfg = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Debug|x64.Build.0 = Debug|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Any CPU.Build.0 = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|ARM.ActiveCfg = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|ARM.Build.0 = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Win32.ActiveCfg = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|Win32.Build.0 = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|x64.ActiveCfg = Release|Any CPU
- {BBF9A28B-B615-40F1-97BE-B52042F4B0F7}.Release|x64.Build.0 = Release|Any CPU
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2673,26 +2436,6 @@ Global
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Release|Win32.Build.0 = Release|Any CPU
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Release|x64.ActiveCfg = Release|Any CPU
{0755F6C3-3FA5-4410-B0D0-4034C64CC138}.Release|x64.Build.0 = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|ARM.Build.0 = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|Win32.Build.0 = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|x64.ActiveCfg = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Debug|x64.Build.0 = Debug|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Any CPU.Build.0 = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|ARM.ActiveCfg = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|ARM.Build.0 = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Win32.ActiveCfg = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|Win32.Build.0 = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|x64.ActiveCfg = Release|Any CPU
- {F587C78A-A345-4DB9-A86D-C186BEBBD1F9}.Release|x64.Build.0 = Release|Any CPU
{D8D81CBF-C254-42D6-BBA3-5A32150B70F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8D81CBF-C254-42D6-BBA3-5A32150B70F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8D81CBF-C254-42D6-BBA3-5A32150B70F1}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2733,26 +2476,6 @@ Global
{117631D2-3687-49D6-BD15-7B9A21B4399A}.Release|Win32.Build.0 = Release|Any CPU
{117631D2-3687-49D6-BD15-7B9A21B4399A}.Release|x64.ActiveCfg = Release|Any CPU
{117631D2-3687-49D6-BD15-7B9A21B4399A}.Release|x64.Build.0 = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|ARM.Build.0 = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|Win32.Build.0 = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|x64.ActiveCfg = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Debug|x64.Build.0 = Debug|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Any CPU.Build.0 = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|ARM.ActiveCfg = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|ARM.Build.0 = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Win32.ActiveCfg = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|Win32.Build.0 = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|x64.ActiveCfg = Release|Any CPU
- {647FA8AF-1B65-4205-B3A7-1D3599F31489}.Release|x64.Build.0 = Release|Any CPU
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2773,26 +2496,6 @@ Global
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Release|Win32.Build.0 = Release|Any CPU
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Release|x64.ActiveCfg = Release|Any CPU
{ED2C7FF2-A9C0-44C9-8154-877F82B2E58A}.Release|x64.Build.0 = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|ARM.Build.0 = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|Win32.Build.0 = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|x64.ActiveCfg = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Debug|x64.Build.0 = Debug|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Any CPU.Build.0 = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|ARM.ActiveCfg = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|ARM.Build.0 = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Win32.ActiveCfg = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|Win32.Build.0 = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|x64.ActiveCfg = Release|Any CPU
- {4C023B7C-6340-42FB-9F33-12951A12BF67}.Release|x64.Build.0 = Release|Any CPU
{22788661-2CBC-4933-B031-4817CBCE6C89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22788661-2CBC-4933-B031-4817CBCE6C89}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22788661-2CBC-4933-B031-4817CBCE6C89}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -2813,26 +2516,6 @@ Global
{22788661-2CBC-4933-B031-4817CBCE6C89}.Release|Win32.Build.0 = Release|Any CPU
{22788661-2CBC-4933-B031-4817CBCE6C89}.Release|x64.ActiveCfg = Release|Any CPU
{22788661-2CBC-4933-B031-4817CBCE6C89}.Release|x64.Build.0 = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|ARM.Build.0 = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|Win32.Build.0 = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|x64.ActiveCfg = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Debug|x64.Build.0 = Debug|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Any CPU.Build.0 = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|ARM.ActiveCfg = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|ARM.Build.0 = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Win32.ActiveCfg = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|Win32.Build.0 = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|x64.ActiveCfg = Release|Any CPU
- {D08560E7-A174-4FD3-8B85-09F74E2D5AFA}.Release|x64.Build.0 = Release|Any CPU
{C9707878-5739-498B-A982-BEC90E63B458}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9707878-5739-498B-A982-BEC90E63B458}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9707878-5739-498B-A982-BEC90E63B458}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -5027,26 +4710,26 @@ Global
{B8190D70-464C-497C-892D-7D2309F4CFA7}.Release|Win32.Build.0 = Release|Any CPU
{B8190D70-464C-497C-892D-7D2309F4CFA7}.Release|x64.ActiveCfg = Release|Any CPU
{B8190D70-464C-497C-892D-7D2309F4CFA7}.Release|x64.Build.0 = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|ARM.ActiveCfg = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|ARM.Build.0 = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|Win32.Build.0 = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|x64.ActiveCfg = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Debug|x64.Build.0 = Debug|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Any CPU.Build.0 = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|ARM.ActiveCfg = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|ARM.Build.0 = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Win32.ActiveCfg = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|Win32.Build.0 = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|x64.ActiveCfg = Release|Any CPU
- {4DAB61F2-E195-4E61-8E29-12D4FCACDF6B}.Release|x64.Build.0 = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|ARM.Build.0 = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Win32.ActiveCfg = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|Win32.Build.0 = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Debug|x64.Build.0 = Debug|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|ARM.ActiveCfg = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|ARM.Build.0 = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Win32.ActiveCfg = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|Win32.Build.0 = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|x64.ActiveCfg = Release|Any CPU
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -5306,6 +4989,8 @@ Global
{AFDE9CE4-2CCF-4932-BD12-1AC8531DCBD7} = {B420065D-BD33-4129-8981-7CC055957988}
{3F1F5361-C67A-45D7-87E6-9F6C676919D5} = {B420065D-BD33-4129-8981-7CC055957988}
{B8190D70-464C-497C-892D-7D2309F4CFA7} = {B420065D-BD33-4129-8981-7CC055957988}
+ {0920F19C-8764-4631-9BFB-EBE611B99FC7} = {455CE1DE-2222-44AC-B93B-6A40A99A3E3D}
+ {6C033AE8-7897-4466-A0F0-49B3B2B79CAA} = {0920F19C-8764-4631-9BFB-EBE611B99FC7}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {5999CD15-1B95-49B3-AD12-5FDC10B2FBAD}