accidental blowout of the project files

This commit is contained in:
Daniel Clark
2021-02-15 12:21:59 +00:00
parent 49169b1044
commit 36259ccb6b
52 changed files with 313 additions and 189 deletions
@@ -1,6 +1,6 @@
using Microsoft.Windows.Sdk;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions
namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
internal class ExecutionMode
{
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Media.Imaging;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions
namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
public static class ImageSourceExtensions
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions
namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
public static class OperatingSystemExtensions
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions

namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
public enum OperatingSystemVersion : int
{
@@ -1,7 +1,7 @@
using Microsoft.Windows.Sdk;
using Windows.Foundation;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions
namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
internal static class RECTExtensions
{
@@ -1,6 +1,6 @@
using Microsoft.Win32;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Extensions
namespace TheXamlGuy.NotificationFlyout.Common.Extensions
{
public static class RegistryKeyExtensions
{
@@ -1,6 +1,6 @@
using Microsoft.Windows.Sdk;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal class CursorHelper
{
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public partial class NotificationIconHelper
{
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public partial class NotificationIconHelper : IDisposable, IWndProcHandler
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class NotificationIconInvokedEventArgs : EventArgs
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers

namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public enum PointerButton
{
@@ -3,7 +3,7 @@ using System;
using System.Runtime.InteropServices;
using Windows.Foundation;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class Screen
{
@@ -2,7 +2,7 @@
using System.Runtime.InteropServices;
using Windows.Foundation;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public static class SystemInformationHelper
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class SystemPersonalisationChangedEventArgs : EventArgs
{
@@ -1,9 +1,9 @@
using Microsoft.Win32;
using TheXamlGuy.NotificationFlyout.Shared.UI.Extensions;
using System;
using TheXamlGuy.NotificationFlyout.Common.Extensions;
using Windows.UI.ViewManagement;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class SystemPersonalisationHelper : IWndProcHandler
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers

namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public enum SystemTheme
{
@@ -2,7 +2,7 @@
using System;
using System.Runtime.InteropServices;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public partial class TaskbarHelper
{
@@ -1,8 +1,8 @@
using TheXamlGuy.NotificationFlyout.Shared.UI.Extensions;
using System;
using System;
using System.Runtime.InteropServices;
using TheXamlGuy.NotificationFlyout.Common.Extensions;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public partial class TaskbarHelper : IWndProcHandler
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers

namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public enum TaskbarPosition
{
@@ -1,6 +1,6 @@
using Windows.Foundation;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public struct TaskbarState
{
@@ -1,7 +1,7 @@
using Microsoft.Windows.Sdk;
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class WindowHelper
{
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal partial class WndProcHelper
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal partial class WndProcHelper : IDisposable
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal class WndProcHelperMessageEventArgs : EventArgs
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers

namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal enum WndProcMessages
{
@@ -0,0 +1,5 @@
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("TheXamlGuy.NotificationFlyout.Wpf.UI")]
[assembly: InternalsVisibleTo("TheXamlGuy.NotificationFlyout.Wpf.UI.Extensions")]
[assembly: InternalsVisibleTo("TheXamlGuy.NotificationFlyout.Wpf.UI.Controls")]
@@ -0,0 +1,25 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Company>TheXamlGuy</Company>
<Authors>TheXamlGuy</Authors>
<Product>NotificationFlyout</Product>
<Version>1.0.0</Version>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" />
<PackageReference Include="Microsoft.Win32.Registry" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.1.319-beta">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Drawing.Common" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="System.Memory" Version="4.5.4" />
</ItemGroup>
</Project>
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public interface IWndProcHandler
{
@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal interface IWndProcHandlerCollection : IList<WndProcHandlerReference>
{
@@ -1,4 +1,5 @@
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers

namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public interface IWndProcHandlerSubscriber
{
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal class WndProcHandlerCollection : List<WndProcHandlerReference>, IWndProcHandlerCollection
{
@@ -1,6 +1,6 @@
using System;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
internal class WndProcHandlerReference
{
@@ -1,7 +1,7 @@
using System;
using System.Linq;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class WndProcHandlerSubscriber : IWndProcHandlerSubscriber
{
@@ -1,7 +1,7 @@
using System;
using System.Linq;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class WndProcListener
{
@@ -0,0 +1,29 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;uap10.0.19041</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Company>TheXamlGuy</Company>
<Authors>TheXamlGuy</Authors>
<Product>NotificationFlyout</Product>
<Version>1.0.0</Version>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" />
<PackageReference Include="Microsoft.Win32.Registry" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.1.319-beta">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Drawing.Common" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="System.Memory" Version="4.5.4" />
</ItemGroup>
<PropertyGroup>
<EnableTypeInfoReflection>false</EnableTypeInfoReflection>
<EnableXBindDiagnostics>false</EnableXBindDiagnostics>
</PropertyGroup>
</Project>
@@ -13,17 +13,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" />
<PackageReference Include="Microsoft.Win32.Registry" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.1.319-beta">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Drawing.Common" Version="6.0.0-preview.1.21102.12" />
<PackageReference Include="System.Memory" Version="4.5.4" />
</ItemGroup>
<PropertyGroup>
<EnableTypeInfoReflection>false</EnableTypeInfoReflection>
<EnableXBindDiagnostics>false</EnableXBindDiagnostics>
</PropertyGroup>
</Project>
@@ -1,25 +1,17 @@
using TheXamlGuy.NotificationFlyout.Shared.UI.Helpers;
using Windows.UI.Xaml;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace TheXamlGuy.NotificationFlyout.Uwp.UI.Controls
{
public class NotificationFlyoutPresenter : ContentControl
{
private SystemPersonalisationHelper _systemPersonalisationHelper;
public NotificationFlyoutPresenter()
{
DefaultStyleKey = typeof(NotificationFlyoutPresenter);
_systemPersonalisationHelper = SystemPersonalisationHelper.Current;
_systemPersonalisationHelper.ThemeChanged += OnThemeChanged;
}
protected override void OnApplyTemplate() => UpdateThemeVisualStates(false);
// protected override void OnApplyTemplate() => UpdateThemeVisualStates(false);
private void OnThemeChanged(object sender, SystemPersonalisationChangedEventArgs args) => UpdateThemeVisualStates(true);
private void UpdateThemeVisualStates(bool useTransition) => VisualStateManager.GoToState(this, _systemPersonalisationHelper.IsColorPrevalence ? "ColorPrevalenceTheme" : "DefaultTheme", useTransition);
// private void UpdateThemeVisualStates(bool useTransition) => VisualStateManager.GoToState(this, _systemPersonalisationHelper.IsColorPrevalence ? "ColorPrevalenceTheme" : "DefaultTheme", useTransition);
}
}
@@ -14,7 +14,7 @@
</PropertyGroup>
<ItemGroup>
<Page Include="NotificationFlyoutContextMenuFlyoutHost\NotificationFlyoutContextMenuFlyoutHost.xaml">
<Page Include="NotificationFlyoutHost\NotificationFlyoutContextMenuFlyoutHost.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
@@ -2,6 +2,6 @@
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ms-appx:///TheXamlGuy.NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutHost/NotificationFlyoutHost.xaml" />
<ResourceDictionary Source="ms-appx:///TheXamlGuy.NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutPresenter/NotificationFlyoutPresenter.xaml" />
<ResourceDictionary Source="ms-appx:///TheXamlGuy.NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutContextMenuFlyoutHost/NotificationFlyoutContextMenuFlyoutHost.xaml" />
<ResourceDictionary Source="ms-appx:///TheXamlGuy.NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutHost/NotificationFlyoutContextMenuFlyoutHost.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
@@ -1,4 +1,4 @@
using TheXamlGuy.NotificationFlyout.Shared.UI.Helpers;
using TheXamlGuy.NotificationFlyout.Common.Helpers;
using System.Windows;
using System.Windows.Markup;
using TheXamlGuy.NotificationFlyout.Shared.UI;
@@ -1,5 +1,5 @@
using TheXamlGuy.NotificationFlyout.Uwp.UI.Controls;
using TheXamlGuy.NotificationFlyout.Shared.UI.Helpers;
using TheXamlGuy.NotificationFlyout.Common.Helpers;
using TheXamlGuy.NotificationFlyout.Wpf.UI.Extensions;
using System;
@@ -1,12 +1,10 @@
using TheXamlGuy.NotificationFlyout.Shared.UI.Extensions;
using TheXamlGuy.NotificationFlyout.Shared.UI.Helpers;
using TheXamlGuy.NotificationFlyout.Common.Extensions;
using TheXamlGuy.NotificationFlyout.Common.Helpers;
using TheXamlGuy.NotificationFlyout.Uwp.UI.Controls;
using TheXamlGuy.NotificationFlyout.Wpf.UI.Extensions;
using System;
using System.Windows;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Controls;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace TheXamlGuy.NotificationFlyout.Wpf.UI.Controls
@@ -22,7 +22,6 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TheXamlGuy.NotificationFlyout.Shared.UI\TheXamlGuy.NotificationFlyout.Shared.UI.csproj" />
<ProjectReference Include="..\TheXamlGuy.NotificationFlyout.Uwp.UI.Controls\TheXamlGuy.NotificationFlyout.Uwp.UI.Controls.csproj" />
<ProjectReference Include="..\TheXamlGuy.NotificationFlyout.Wpf.UI\TheXamlGuy.NotificationFlyout.Wpf.UI.csproj" />
</ItemGroup>
@@ -19,6 +19,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TheXamlGuy.NotificationFlyout.Common\TheXamlGuy.NotificationFlyout.Common.csproj" />
<ProjectReference Include="..\TheXamlGuy.NotificationFlyout.Shared.UI\TheXamlGuy.NotificationFlyout.Shared.UI.csproj" />
</ItemGroup>
+74 -10
View File
@@ -8,54 +8,118 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
global.json = global.json
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TheXamlGuy.NotificationFlyout.Shared.UI", "TheXamlGuy.NotificationFlyout.Shared.UI\TheXamlGuy.NotificationFlyout.Shared.UI.csproj", "{DBC9BB92-49C7-4900-AB47-E9E66089CD56}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TheXamlGuy.NotificationFlyout.Uwp.UI.Controls", "TheXamlGuy.NotificationFlyout.Uwp.UI.Controls\TheXamlGuy.NotificationFlyout.Uwp.UI.Controls.csproj", "{354F67A7-3699-4CCE-A49B-91DA70C98BF3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TheXamlGuy.NotificationFlyout.Wpf.UI", "TheXamlGuy.NotificationFlyout.Wpf.UI\TheXamlGuy.NotificationFlyout.Wpf.UI.csproj", "{EC20A0A9-CBCB-4357-846A-AA497BB02836}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TheXamlGuy.NotificationFlyout.Wpf.UI.Controls", "TheXamlGuy.NotificationFlyout.Wpf.UI.Controls\TheXamlGuy.NotificationFlyout.Wpf.UI.Controls.csproj", "{3205F101-E5F3-4B57-B0BB-33693F906B77}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheXamlGuy.NotificationFlyout.Shared.UI", "TheXamlGuy.NotificationFlyout.Shared.UI\TheXamlGuy.NotificationFlyout.Shared.UI.csproj", "{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheXamlGuy.NotificationFlyout.Common", "TheXamlGuy.NotificationFlyout.Common\TheXamlGuy.NotificationFlyout.Common.csproj", "{4F05A3D6-DBBC-4921-97BA-6843925CD74B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Debug|Any CPU.ActiveCfg = Debug|x64
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Debug|Any CPU.Build.0 = Debug|x64
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Debug|x64.ActiveCfg = Debug|x64
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Debug|x64.Build.0 = Debug|x64
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Release|Any CPU.Build.0 = Release|Any CPU
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Release|x64.ActiveCfg = Release|x64
{DBC9BB92-49C7-4900-AB47-E9E66089CD56}.Release|x64.Build.0 = Release|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|Any CPU.ActiveCfg = Debug|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|Any CPU.Build.0 = Debug|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|ARM.ActiveCfg = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|ARM.Build.0 = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|ARM64.Build.0 = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|x64.ActiveCfg = Debug|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|x64.Build.0 = Debug|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|x86.ActiveCfg = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Debug|x86.Build.0 = Debug|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|Any CPU.Build.0 = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|ARM.ActiveCfg = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|ARM.Build.0 = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|ARM64.ActiveCfg = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|ARM64.Build.0 = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|x64.ActiveCfg = Release|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|x64.Build.0 = Release|x64
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|x86.ActiveCfg = Release|Any CPU
{354F67A7-3699-4CCE-A49B-91DA70C98BF3}.Release|x86.Build.0 = Release|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|Any CPU.ActiveCfg = Debug|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|Any CPU.Build.0 = Debug|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|ARM.ActiveCfg = Debug|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|x64.ActiveCfg = Debug|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|x64.Build.0 = Debug|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Debug|x86.ActiveCfg = Debug|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|Any CPU.Build.0 = Release|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|ARM.ActiveCfg = Release|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|ARM64.ActiveCfg = Release|Any CPU
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|x64.ActiveCfg = Release|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|x64.Build.0 = Release|x64
{EC20A0A9-CBCB-4357-846A-AA497BB02836}.Release|x86.ActiveCfg = Release|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|Any CPU.ActiveCfg = Debug|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|Any CPU.Build.0 = Debug|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|ARM.ActiveCfg = Debug|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|x64.ActiveCfg = Debug|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|x64.Build.0 = Debug|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Debug|x86.ActiveCfg = Debug|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|Any CPU.Build.0 = Release|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|ARM.ActiveCfg = Release|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|ARM64.ActiveCfg = Release|Any CPU
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|x64.ActiveCfg = Release|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|x64.Build.0 = Release|x64
{3205F101-E5F3-4B57-B0BB-33693F906B77}.Release|x86.ActiveCfg = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|ARM.ActiveCfg = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|ARM.Build.0 = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|ARM64.Build.0 = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|x64.ActiveCfg = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|x64.Build.0 = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|x86.ActiveCfg = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Debug|x86.Build.0 = Debug|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|Any CPU.Build.0 = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|ARM.ActiveCfg = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|ARM.Build.0 = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|ARM64.ActiveCfg = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|ARM64.Build.0 = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|x64.ActiveCfg = Release|x64
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|x64.Build.0 = Release|x64
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|x86.ActiveCfg = Release|Any CPU
{341F9830-BB2F-4A2F-A81A-3DBAF307B4EF}.Release|x86.Build.0 = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|ARM.ActiveCfg = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|ARM.Build.0 = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|ARM64.Build.0 = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|x64.ActiveCfg = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|x64.Build.0 = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|x86.ActiveCfg = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Debug|x86.Build.0 = Debug|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|Any CPU.Build.0 = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|ARM.ActiveCfg = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|ARM.Build.0 = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|ARM64.ActiveCfg = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|ARM64.Build.0 = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|x64.ActiveCfg = Release|x64
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|x64.Build.0 = Release|x64
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|x86.ActiveCfg = Release|Any CPU
{4F05A3D6-DBBC-4921-97BA-6843925CD74B}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE