Switch to NuGet packages

This commit is contained in:
2023-04-07 18:41:18 -04:00
parent 6514f23329
commit eac0313f23
26 changed files with 156 additions and 516 deletions

View File

@@ -1,4 +1,4 @@
using CKaczor.ApplicationUpdate;
using ChrisKaczor.ApplicationUpdate;
using System.Reflection;
namespace FeedCenter.Options

View File

@@ -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}">

View File

@@ -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"

View File

@@ -1,4 +1,4 @@
using CKaczor.Wpf.Validation;
using ChrisKaczor.Wpf.Validation;
using System.Windows;
namespace FeedCenter.Options

View File

@@ -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"

View File

@@ -1,4 +1,4 @@
using CKaczor.Wpf.Validation;
using ChrisKaczor.Wpf.Validation;
using System.Linq;
using System.Windows;
using System.Windows.Controls;

View File

@@ -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">

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
using CKaczor.ApplicationUpdate;
using ChrisKaczor.ApplicationUpdate;
namespace FeedCenter.Options
{