diff --git a/Application/App.xaml.cs b/Application/App.xaml.cs
index e916c1c..e17ff0c 100644
--- a/Application/App.xaml.cs
+++ b/Application/App.xaml.cs
@@ -1,12 +1,12 @@
-using CKaczor.GenericSettingsProvider;
-using CKaczor.Wpf.Application;
-using FeedCenter.Data;
-using FeedCenter.Properties;
-using Serilog;
-using System;
+using System;
using System.IO;
using System.Linq;
using System.Windows.Threading;
+using ChrisKaczor.Wpf.Application;
+using ChrisKaczor.GenericSettingsProvider;
+using FeedCenter.Data;
+using FeedCenter.Properties;
+using Serilog;
namespace FeedCenter
{
@@ -26,6 +26,8 @@ namespace FeedCenter
}
// ReSharper restore ConvertPropertyToExpressionBody
+ public static string Name => FeedCenter.Properties.Resources.ApplicationName;
+
[STAThread]
public static void Main()
{
@@ -45,13 +47,15 @@ namespace FeedCenter
{
// Set the path
LegacyDatabase.DatabasePath = SystemConfiguration.DataDirectory;
- LegacyDatabase.DatabaseFile = Path.Combine(SystemConfiguration.DataDirectory, Settings.Default.DatabaseFile_Legacy);
+ LegacyDatabase.DatabaseFile = Path.Combine(SystemConfiguration.DataDirectory,
+ Settings.Default.DatabaseFile_Legacy);
Database.DatabasePath = SystemConfiguration.DataDirectory;
Database.DatabaseFile = Path.Combine(SystemConfiguration.DataDirectory, Settings.Default.DatabaseFile);
// Get the generic provider
- var genericProvider = (GenericSettingsProvider) Settings.Default.Providers[nameof(GenericSettingsProvider)];
+ var genericProvider =
+ (GenericSettingsProvider) Settings.Default.Providers[nameof(GenericSettingsProvider)];
if (genericProvider == null)
return;
@@ -69,7 +73,8 @@ namespace FeedCenter
.Enrich.WithThreadId()
.WriteTo.Console()
.WriteTo.File(
- Path.Join(SystemConfiguration.UserSettingsPath, $"{FeedCenter.Properties.Resources.ApplicationName}_.txt"),
+ Path.Join(SystemConfiguration.UserSettingsPath,
+ $"{FeedCenter.Properties.Resources.ApplicationName}_.txt"),
rollingInterval: RollingInterval.Day, retainedFileCountLimit: 5,
outputTemplate: "[{Timestamp:u} - {ThreadId} - {Level:u3}] {Message:lj}{NewLine}{Exception}")
.CreateLogger();
@@ -79,7 +84,8 @@ namespace FeedCenter
Log.Logger.Information("Command line arguments:");
- foreach (var arg in Environment.GetCommandLineArgs().Select((value, index) => (Value: value, Index: index)))
+ foreach (var arg in Environment.GetCommandLineArgs()
+ .Select((value, index) => (Value: value, Index: index)))
Log.Logger.Information("\tArg {0}: {1}", arg.Index, arg.Value);
Current.DispatcherUnhandledException += HandleCurrentDispatcherUnhandledException;
@@ -117,11 +123,10 @@ namespace FeedCenter
Log.Logger.Error((Exception) e.ExceptionObject, "Exception");
}
- private static void HandleCurrentDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
+ private static void HandleCurrentDispatcherUnhandledException(object sender,
+ DispatcherUnhandledExceptionEventArgs e)
{
Log.Logger.Error(e.Exception, "Exception");
}
-
- public static string Name => FeedCenter.Properties.Resources.ApplicationName;
}
}
\ No newline at end of file
diff --git a/Application/FeedCenter.csproj b/Application/FeedCenter.csproj
index 1940fc3..2786575 100644
--- a/Application/FeedCenter.csproj
+++ b/Application/FeedCenter.csproj
@@ -125,19 +125,19 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Application/FeedChooserWindow.xaml b/Application/FeedChooserWindow.xaml
index 5f6d992..25fafef 100644
--- a/Application/FeedChooserWindow.xaml
+++ b/Application/FeedChooserWindow.xaml
@@ -4,7 +4,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:my="clr-namespace:FeedCenter.Properties"
- xmlns:controlBox="clr-namespace:CKaczor.Wpf.Windows;assembly=Wpf.Windows.ControlBox"
+ xmlns:controlBox="clr-namespace:ChrisKaczor.Wpf.Windows;assembly=Wpf.Windows.ControlBox"
mc:Ignorable="d"
Title="{x:Static my:Resources.FeedChooserWindow}"
Height="247.297"
diff --git a/Application/FeedErrorWindow.xaml b/Application/FeedErrorWindow.xaml
index b777968..9ee56b2 100644
--- a/Application/FeedErrorWindow.xaml
+++ b/Application/FeedErrorWindow.xaml
@@ -1,8 +1,8 @@
_feedList;
- private Feed _currentFeed;
public MainWindow()
{
InitializeComponent();
}
- protected override async void OnClosed(EventArgs e)
- {
- base.OnClosed(e);
-
- await SingleInstance.Stop();
- }
-
public void Dispose()
{
_mainTimer?.Dispose();
@@ -42,6 +34,13 @@ namespace FeedCenter
GC.SuppressFinalize(this);
}
+ protected override async void OnClosed(EventArgs e)
+ {
+ base.OnClosed(e);
+
+ await SingleInstance.Stop();
+ }
+
public async void Initialize()
{
// Setup the update handler
@@ -54,7 +53,9 @@ namespace FeedCenter
LoadWindowSettings();
// Set the foreground color to something that can be seen
- LinkTextList.Foreground = (System.Drawing.SystemColors.Desktop.GetBrightness() < 0.5) ? Brushes.White : Brushes.Black;
+ LinkTextList.Foreground = (System.Drawing.SystemColors.Desktop.GetBrightness() < 0.5)
+ ? Brushes.White
+ : Brushes.Black;
HeaderLabel.Foreground = LinkTextList.Foreground;
// Create the background worker that does the actual reading
@@ -141,6 +142,50 @@ namespace FeedCenter
#endregion
+ #region Database helpers
+
+ private void ResetDatabase()
+ {
+ // Get the ID of the current feed
+ var currentId = _currentFeed?.Id ?? Guid.Empty;
+
+ // Create a new database object
+ _database.Refresh();
+
+ _feedList = _currentCategory == null
+ ? _database.Feeds
+ : _database.Feeds.Where(feed => feed.Category.Id == _currentCategory.Id);
+
+ UpdateToolbarButtonState();
+
+ // Get a list of feeds ordered by name
+ var feedList = _feedList.OrderBy(f => f.Name).ToList();
+
+ // First try to find the current feed by ID to see if it is still there
+ var newIndex = feedList.FindIndex(f => f.Id == currentId);
+
+ if (newIndex == -1)
+ {
+ // The current feed isn't there anymore so see if we can find a feed at the old index
+ if (feedList.ElementAtOrDefault(_feedIndex) != null)
+ newIndex = _feedIndex;
+
+ // If there is no feed at the old location then give up and go back to the start
+ if (newIndex == -1 && feedList.Count > 0)
+ newIndex = 0;
+ }
+
+ // Set the current index to the new index
+ _feedIndex = newIndex;
+
+ // Re-get the current feed
+ _currentFeed = (_feedIndex == -1
+ ? null
+ : _feedList.OrderBy(feed => feed.Name).AsEnumerable().ElementAt(_feedIndex));
+ }
+
+ #endregion
+
#region Feed display
private void UpdateToolbarButtonState()
@@ -163,11 +208,15 @@ namespace FeedCenter
private void InitializeDisplay()
{
// Get the last category (defaulting to none)
- _currentCategory = _database.Categories.FirstOrDefault(category => category.Id.ToString() == Settings.Default.LastCategoryID);
+ _currentCategory =
+ _database.Categories.FirstOrDefault(category =>
+ category.Id.ToString() == Settings.Default.LastCategoryID);
DisplayCategory();
// Get the current feed list to match the category
- _feedList = _currentCategory == null ? _database.Feeds : _database.Feeds.Where(feed => feed.Category.Id == _currentCategory.Id);
+ _feedList = _currentCategory == null
+ ? _database.Feeds
+ : _database.Feeds.Where(feed => feed.Category.Id == _currentCategory.Id);
UpdateToolbarButtonState();
@@ -377,45 +426,5 @@ namespace FeedCenter
}
#endregion
-
- #region Database helpers
-
- private void ResetDatabase()
- {
- // Get the ID of the current feed
- var currentId = _currentFeed?.Id ?? Guid.Empty;
-
- // Create a new database object
- _database.Refresh();
-
- _feedList = _currentCategory == null ? _database.Feeds : _database.Feeds.Where(feed => feed.Category.Id == _currentCategory.Id);
-
- UpdateToolbarButtonState();
-
- // Get a list of feeds ordered by name
- var feedList = _feedList.OrderBy(f => f.Name).ToList();
-
- // First try to find the current feed by ID to see if it is still there
- var newIndex = feedList.FindIndex(f => f.Id == currentId);
-
- if (newIndex == -1)
- {
- // The current feed isn't there anymore so see if we can find a feed at the old index
- if (feedList.ElementAtOrDefault(_feedIndex) != null)
- newIndex = _feedIndex;
-
- // If there is no feed at the old location then give up and go back to the start
- if (newIndex == -1 && feedList.Count > 0)
- newIndex = 0;
- }
-
- // Set the current index to the new index
- _feedIndex = newIndex;
-
- // Re-get the current feed
- _currentFeed = (_feedIndex == -1 ? null : _feedList.OrderBy(feed => feed.Name).AsEnumerable().ElementAt(_feedIndex));
- }
-
- #endregion
}
}
\ No newline at end of file
diff --git a/Application/MainWindow/Toolbar.cs b/Application/MainWindow/Toolbar.cs
index 7d45ff9..cf2ba87 100644
--- a/Application/MainWindow/Toolbar.cs
+++ b/Application/MainWindow/Toolbar.cs
@@ -1,4 +1,4 @@
-using CKaczor.InstalledBrowsers;
+using ChrisKaczor.InstalledBrowsers;
using FeedCenter.Options;
using FeedCenter.Properties;
using System.IO;
diff --git a/Application/MainWindow/UpdateHandler.cs b/Application/MainWindow/UpdateHandler.cs
index 920658d..1e9abe4 100644
--- a/Application/MainWindow/UpdateHandler.cs
+++ b/Application/MainWindow/UpdateHandler.cs
@@ -1,4 +1,4 @@
-using CKaczor.ApplicationUpdate;
+using ChrisKaczor.ApplicationUpdate;
using FeedCenter.Properties;
using System.Windows;
diff --git a/Application/Options/AboutOptionsPanel.xaml.cs b/Application/Options/AboutOptionsPanel.xaml.cs
index ee7cfa3..3d08e24 100644
--- a/Application/Options/AboutOptionsPanel.xaml.cs
+++ b/Application/Options/AboutOptionsPanel.xaml.cs
@@ -1,4 +1,4 @@
-using CKaczor.ApplicationUpdate;
+using ChrisKaczor.ApplicationUpdate;
using System.Reflection;
namespace FeedCenter.Options
diff --git a/Application/Options/BulkFeedWindow.xaml b/Application/Options/BulkFeedWindow.xaml
index 4d040c3..e31aefd 100644
--- a/Application/Options/BulkFeedWindow.xaml
+++ b/Application/Options/BulkFeedWindow.xaml
@@ -6,7 +6,7 @@
Width="500"
xmlns:my="clr-namespace:FeedCenter.Properties"
xmlns:feedCenter="clr-namespace:FeedCenter"
- xmlns:controls="clr-namespace:CKaczor.Wpf.Controls;assembly=Wpf.Controls.Link"
+ xmlns:controls="clr-namespace:ChrisKaczor.Wpf.Controls;assembly=Wpf.Controls.Link"
WindowStartupLocation="CenterOwner"
Icon="/FeedCenter;component/Resources/Application.ico"
FocusManager.FocusedElement="{Binding ElementName=FeedLinkFilterText}">
diff --git a/Application/Options/CategoryWindow.xaml b/Application/Options/CategoryWindow.xaml
index 59b9890..eea8dfe 100644
--- a/Application/Options/CategoryWindow.xaml
+++ b/Application/Options/CategoryWindow.xaml
@@ -6,8 +6,8 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:validation="clr-namespace:CKaczor.Wpf.Validation;assembly=Wpf.Validation"
- xmlns:controls="clr-namespace:CKaczor.Wpf.Windows;assembly=Wpf.Windows.ControlBox"
+ xmlns:validation="clr-namespace:ChrisKaczor.Wpf.Validation;assembly=Wpf.Validation"
+ xmlns:controls="clr-namespace:ChrisKaczor.Wpf.Windows;assembly=Wpf.Windows.ControlBox"
d:DataContext="{d:DesignInstance Type=feedCenter:Category}"
Title="CategoryWindow"
Width="300"
diff --git a/Application/Options/CategoryWindow.xaml.cs b/Application/Options/CategoryWindow.xaml.cs
index ec1c42b..ac24a83 100644
--- a/Application/Options/CategoryWindow.xaml.cs
+++ b/Application/Options/CategoryWindow.xaml.cs
@@ -1,4 +1,4 @@
-using CKaczor.Wpf.Validation;
+using ChrisKaczor.Wpf.Validation;
using System.Windows;
namespace FeedCenter.Options
diff --git a/Application/Options/FeedWindow.xaml b/Application/Options/FeedWindow.xaml
index 028f222..8fd68f4 100644
--- a/Application/Options/FeedWindow.xaml
+++ b/Application/Options/FeedWindow.xaml
@@ -6,7 +6,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
d:DataContext="{d:DesignInstance Type=feedCenter:Feed}"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:validation="clr-namespace:CKaczor.Wpf.Validation;assembly=Wpf.Validation"
+ xmlns:validation="clr-namespace:ChrisKaczor.Wpf.Validation;assembly=Wpf.Validation"
mc:Ignorable="d"
Title="FeedWindow"
Height="300"
diff --git a/Application/Options/FeedWindow.xaml.cs b/Application/Options/FeedWindow.xaml.cs
index 2c3989c..33856b8 100644
--- a/Application/Options/FeedWindow.xaml.cs
+++ b/Application/Options/FeedWindow.xaml.cs
@@ -1,4 +1,4 @@
-using CKaczor.Wpf.Validation;
+using ChrisKaczor.Wpf.Validation;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
diff --git a/Application/Options/FeedsOptionsPanel.xaml b/Application/Options/FeedsOptionsPanel.xaml
index 3ec3a4b..10b41f6 100644
--- a/Application/Options/FeedsOptionsPanel.xaml
+++ b/Application/Options/FeedsOptionsPanel.xaml
@@ -5,7 +5,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:options="clr-namespace:FeedCenter.Options"
xmlns:properties="clr-namespace:FeedCenter.Properties"
- xmlns:controls="clr-namespace:CKaczor.Wpf.Controls;assembly=Wpf.Controls.Link"
+ xmlns:controls="clr-namespace:ChrisKaczor.Wpf.Controls;assembly=Wpf.Controls.Link"
mc:Ignorable="d"
d:DesignHeight="311"
d:DesignWidth="425">
diff --git a/Application/Options/GeneralOptionsPanel.xaml.cs b/Application/Options/GeneralOptionsPanel.xaml.cs
index a86ef9e..cee6517 100644
--- a/Application/Options/GeneralOptionsPanel.xaml.cs
+++ b/Application/Options/GeneralOptionsPanel.xaml.cs
@@ -1,9 +1,9 @@
-using CKaczor.InstalledBrowsers;
-using CKaczor.Wpf.Application;
-using CKaczor.Wpf.Validation;
-using System.Collections.Generic;
+using System.Collections.Generic;
using System.Windows.Controls;
using System.Windows.Data;
+using ChrisKaczor.Wpf.Application;
+using ChrisKaczor.InstalledBrowsers;
+using ChrisKaczor.Wpf.Validation;
internal class UserAgentItem
{
@@ -20,6 +20,8 @@ namespace FeedCenter.Options
InitializeComponent();
}
+ public override string CategoryName => Properties.Resources.optionCategoryGeneral;
+
public override void LoadPanel(FeedCenterEntities database)
{
base.LoadPanel(database);
@@ -56,8 +58,6 @@ namespace FeedCenter.Options
this.UpdateAllSources(expressions);
}
- public override string CategoryName => Properties.Resources.optionCategoryGeneral;
-
private static void LoadBrowserComboBox(ComboBox comboBox, string selected)
{
comboBox.SelectedIndex = 0;
diff --git a/Application/Options/UpdateOptionsPanel.xaml.cs b/Application/Options/UpdateOptionsPanel.xaml.cs
index f397a8d..ee36223 100644
--- a/Application/Options/UpdateOptionsPanel.xaml.cs
+++ b/Application/Options/UpdateOptionsPanel.xaml.cs
@@ -1,4 +1,4 @@
-using CKaczor.ApplicationUpdate;
+using ChrisKaczor.ApplicationUpdate;
namespace FeedCenter.Options
{
diff --git a/Application/Properties/Settings.Designer.cs b/Application/Properties/Settings.Designer.cs
index 0f48d7f..9b3bfcc 100644
--- a/Application/Properties/Settings.Designer.cs
+++ b/Application/Properties/Settings.Designer.cs
@@ -24,7 +24,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool WindowLocked {
@@ -37,7 +37,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0,0")]
public global::System.Windows.Size WindowSize {
@@ -50,7 +50,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0,0")]
public global::System.Windows.Point WindowLocation {
@@ -111,7 +111,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("00:01:00")]
public global::System.TimeSpan FeedScrollInterval {
@@ -124,7 +124,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("00:30:00")]
public global::System.TimeSpan FeedCheckInterval {
@@ -137,7 +137,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool DisplayEmptyFeeds {
@@ -150,7 +150,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.DateTime LastVersionCheck {
get {
@@ -171,7 +171,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool StartWithWindows {
@@ -196,7 +196,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Bottom")]
public global::System.Windows.Controls.Dock ToolbarLocation {
@@ -209,7 +209,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("500")]
public int OpenAllSleepInterval {
@@ -222,7 +222,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string Browser {
@@ -235,7 +235,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1500")]
public int OpenAllSleepIntervalFirst {
@@ -248,7 +248,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Normal")]
public global::FeedCenter.Options.MultipleLineDisplay MultipleLineDisplay {
@@ -282,7 +282,7 @@ namespace FeedCenter.Properties {
}
[global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Configuration.SettingsProviderAttribute(typeof(CKaczor.GenericSettingsProvider.GenericSettingsProvider))]
+ [global::System.Configuration.SettingsProviderAttribute(typeof(ChrisKaczor.GenericSettingsProvider.GenericSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string DefaultUserAgent {
diff --git a/Application/Properties/Settings.settings b/Application/Properties/Settings.settings
index e662fcb..08f6ebc 100644
--- a/Application/Properties/Settings.settings
+++ b/Application/Properties/Settings.settings
@@ -2,13 +2,13 @@
-
+
False
-
+
0,0
-
+
0,0
@@ -26,40 +26,40 @@
5000
-
+
00:01:00
-
+
00:30:00
-
+
True
-
+
01:00:00
-
+
False
True
-
+
Bottom
-
+
500
-
+
-
+
1500
-
+
Normal
@@ -68,7 +68,7 @@
-
+
diff --git a/Application/SplashWindow.xaml.cs b/Application/SplashWindow.xaml.cs
index eee972e..88d4deb 100644
--- a/Application/SplashWindow.xaml.cs
+++ b/Application/SplashWindow.xaml.cs
@@ -1,4 +1,4 @@
-using CKaczor.ApplicationUpdate;
+using ChrisKaczor.ApplicationUpdate;
using FeedCenter.Data;
using FeedCenter.Properties;
using System;
diff --git a/FeedCenter.sln b/FeedCenter.sln
index c370d59..a505aeb 100644
--- a/FeedCenter.sln
+++ b/FeedCenter.sln
@@ -18,28 +18,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{14
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NameBasedGrid", "..\..\Public\namebasedgrid\src\NameBasedGrid\NameBasedGrid.csproj", "{01D2D040-A2AF-42A1-9821-D1C6D77A3309}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Controls.Link", "..\Wpf.Controls.Link\Wpf.Controls.Link.csproj", "{D8A22337-E65C-4214-B2AC-EFD34350C0C5}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Windows.SnappingWindow", "..\Wpf.Windows.SnappingWindow\Wpf.Windows.SnappingWindow.csproj", "{3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Windows.ControlBox", "..\Wpf.Windows.ControlBox\Wpf.Windows.ControlBox.csproj", "{4203D266-E323-4E49-B5FD-B60C19D17EEF}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Controls.Toolbar", "..\Wpf.Controls.Toolbar\Wpf.Controls.Toolbar.csproj", "{94D49D33-320E-4C9A-A93F-36813D6FB65F}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Controls.HtmlTextBlock", "..\Wpf.Controls.HtmlTextBlock\Wpf.Controls.HtmlTextBlock.csproj", "{ED2A50A7-33D6-4327-8775-F8F9EBF369EE}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Validation", "..\Wpf.Validation\Wpf.Validation.csproj", "{7AA16534-92EC-4ABF-BFF0-1EC373C91035}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Application.StartWithWindows", "..\Wpf.Application.StartWithWindows\Wpf.Application.StartWithWindows.csproj", "{29B9EDF3-9D68-417E-9D85-D5E88E0975F1}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wpf.Application.SingleInstance", "..\Wpf.Application.SingleInstance\Wpf.Application.SingleInstance.csproj", "{7BF3C67C-239E-44D5-BA71-555A624550E8}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InstalledBrowsers", "..\InstalledBrowsers\InstalledBrowsers.csproj", "{C1A3C38D-C802-4E40-9079-4C857063A3CE}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenericSettingsProvider", "..\GenericSettingsProvider\GenericSettingsProvider.csproj", "{1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationUpdate", "..\ApplicationUpdate\ApplicationUpdate.csproj", "{9A49783E-FFFB-4629-A877-4A9D3B52323F}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug - With Setup|Any CPU = Debug - With Setup|Any CPU
@@ -174,358 +152,6 @@ Global
{01D2D040-A2AF-42A1-9821-D1C6D77A3309}.Release|x64.Build.0 = Release|Any CPU
{01D2D040-A2AF-42A1-9821-D1C6D77A3309}.Release|x86.ActiveCfg = Release|Any CPU
{01D2D040-A2AF-42A1-9821-D1C6D77A3309}.Release|x86.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|x64.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|x64.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|x86.ActiveCfg = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Debug|x86.Build.0 = Debug|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|Any CPU.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|x64.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|x64.Build.0 = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|x86.ActiveCfg = Release|Any CPU
- {D8A22337-E65C-4214-B2AC-EFD34350C0C5}.Release|x86.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|x64.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|x64.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|x86.ActiveCfg = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Debug|x86.Build.0 = Debug|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|Any CPU.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|x64.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|x64.Build.0 = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|x86.ActiveCfg = Release|Any CPU
- {3DF3BBDC-F378-48FC-B5D3-6136AD1D1E5D}.Release|x86.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|x64.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|x64.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|x86.ActiveCfg = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Debug|x86.Build.0 = Debug|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|Any CPU.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|x64.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|x64.Build.0 = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|x86.ActiveCfg = Release|Any CPU
- {4203D266-E323-4E49-B5FD-B60C19D17EEF}.Release|x86.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|x64.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|x64.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|x86.ActiveCfg = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Debug|x86.Build.0 = Debug|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|Any CPU.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|x64.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|x64.Build.0 = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|x86.ActiveCfg = Release|Any CPU
- {94D49D33-320E-4C9A-A93F-36813D6FB65F}.Release|x86.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|x64.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|x64.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|x86.ActiveCfg = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Debug|x86.Build.0 = Debug|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|Any CPU.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|x64.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|x64.Build.0 = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|x86.ActiveCfg = Release|Any CPU
- {ED2A50A7-33D6-4327-8775-F8F9EBF369EE}.Release|x86.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|x64.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|x64.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|x86.ActiveCfg = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Debug|x86.Build.0 = Debug|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|Any CPU.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|x64.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|x64.Build.0 = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|x86.ActiveCfg = Release|Any CPU
- {7AA16534-92EC-4ABF-BFF0-1EC373C91035}.Release|x86.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|x64.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|x64.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|x86.ActiveCfg = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Debug|x86.Build.0 = Debug|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|Any CPU.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|x64.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|x64.Build.0 = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|x86.ActiveCfg = Release|Any CPU
- {29B9EDF3-9D68-417E-9D85-D5E88E0975F1}.Release|x86.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|x64.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|x64.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|x86.ActiveCfg = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Debug|x86.Build.0 = Debug|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|Any CPU.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|x64.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|x64.Build.0 = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|x86.ActiveCfg = Release|Any CPU
- {7BF3C67C-239E-44D5-BA71-555A624550E8}.Release|x86.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|x64.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|x64.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|x86.ActiveCfg = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Debug|x86.Build.0 = Debug|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|Any CPU.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|x64.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|x64.Build.0 = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|x86.ActiveCfg = Release|Any CPU
- {C1A3C38D-C802-4E40-9079-4C857063A3CE}.Release|x86.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|x64.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|x64.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|x86.ActiveCfg = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Debug|x86.Build.0 = Debug|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|Any CPU.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|x64.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|x64.Build.0 = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|x86.ActiveCfg = Release|Any CPU
- {1DAD6B26-8993-4C3F-8B75-B9A9D67A2CE0}.Release|x86.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|Any CPU.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|Any CPU.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|Mixed Platforms.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|x64.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|x64.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|x86.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug - With Setup|x86.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|x64.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|x64.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|x86.ActiveCfg = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Debug|x86.Build.0 = Debug|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|Any CPU.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|Any CPU.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|Mixed Platforms.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|Mixed Platforms.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|x64.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|x64.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|x86.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release - With Setup|x86.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|Any CPU.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|x64.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|x64.Build.0 = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|x86.ActiveCfg = Release|Any CPU
- {9A49783E-FFFB-4629-A877-4A9D3B52323F}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE