From 9e86ac77d3a68eadbecc5261c3e2e2788312926b Mon Sep 17 00:00:00 2001 From: Robin Krom Date: Sun, 22 Nov 2020 22:04:27 +0100 Subject: [PATCH] Added .NET 5.0 and restructured the repository. (#47) --- azure-pipelines.yml | 24 +++---- src/Directory.Build.props | 17 ++--- .../App.xaml | 2 +- .../App.xaml.cs | 2 +- .../Commands/CloseWindowCommand.cs | 2 +- .../Commands/CommandBase.cs | 2 +- .../Commands/HideSampleWindowCommand.cs | 2 +- .../Commands/ShowSampleWindowCommand.cs | 2 +- .../Icons/Bulb.ico | Bin .../Icons/Computers.ico | Bin .../Icons/Error.ico | Bin .../Icons/Inactive.ico | Bin .../Icons/NetDrives.ico | Bin .../Images/Add.png | Bin .../Images/Close.png | Bin .../Images/Info.png | Bin .../Images/Logo.png | Bin .../Images/Preferences.png | Bin .../Images/Remove.png | Bin .../Main.xaml | 48 ++++++------- .../Main.xaml.cs | 64 +++++++++++------- .../NotifyIconWpf.Sample.ShowCases.csproj} | 12 ++-- .../Properties/AssemblyInfo.cs | 0 .../Properties/Resources.Designer.cs | 0 .../Properties/Resources.resx | 0 .../Properties/Settings.Designer.cs | 0 .../Properties/Settings.settings | 0 .../Showcase/FancyBalloon.xaml | 2 +- .../Showcase/FancyBalloon.xaml.cs | 2 +- .../Showcase/FancyPopup.xaml | 2 +- .../Showcase/FancyPopup.xaml.cs | 2 +- .../Showcase/FancyToolTip.xaml | 2 +- .../Showcase/FancyToolTip.xaml.cs | 2 +- .../Showcase/NotifyIconResources.xaml | 8 +-- .../Showcase/ShowcaseWindow.xaml | 11 +-- .../Showcase/ShowcaseWindow.xaml.cs | 2 +- .../Showcase/WelcomeBalloon.xaml | 2 +- .../Showcase/WelcomeBalloon.xaml.cs | 2 +- .../NotifyIconResourceDictionary.xaml | 0 .../SimpleWindowWithNotifyIcon.xaml | 2 +- .../SimpleWindowWithNotifyIcon.xaml.cs | 2 +- .../02 - ToolTips/InlineToolTipWindow.xaml | 2 +- .../02 - ToolTips/InlineToolTipWindow.xaml.cs | 2 +- .../02 - ToolTips/SimpleUserControl.xaml | 2 +- .../02 - ToolTips/SimpleUserControl.xaml.cs | 2 +- .../UserControlToolTipWindow.xaml | 6 +- .../UserControlToolTipWindow.xaml.cs | 2 +- .../03 - Popups/InlinePopupWindow.xaml | 4 +- .../03 - Popups/InlinePopupWindow.xaml.cs | 2 +- .../InlineContextMenuWindow.xaml | 4 +- .../InlineContextMenuWindow.xaml.cs | 2 +- .../05 - Balloons/BalloonSampleWindow.xaml | 2 +- .../05 - Balloons/BalloonSampleWindow.xaml.cs | 3 +- .../06 - Commands/CommandWindow.xaml | 6 +- .../06 - Commands/CommandWindow.xaml.cs | 2 +- .../06 - Commands/ShowMessageCommand.cs | 2 +- .../07 - Events/EventVisualizerWindow.xaml | 2 +- .../07 - Events/EventVisualizerWindow.xaml.cs | 2 +- .../DataBoundToolTipWindow.xaml | 8 +-- .../DataBoundToolTipWindow.xaml.cs | 2 +- .../Tutorials/09 - MVVM/Clock.png | Bin .../Tutorials/09 - MVVM/ClockPopup.xaml | 2 +- .../Tutorials/09 - MVVM/ClockPopup.xaml.cs | 2 +- .../09 - MVVM/MvvmSampleViewModel.cs | 2 +- .../Tutorials/09 - MVVM/MvvmSampleWindow.xaml | 8 +-- .../09 - MVVM/MvvmSampleWindow.xaml.cs | 2 +- src/NotifyIconWpf.Sample.ShowCases/app.config | 6 ++ .../app.manifest | 0 .../App.xaml | 2 +- .../App.xaml.cs | 2 +- .../DelegateCommand.cs | 2 +- .../MainWindow.xaml | 2 +- .../MainWindow.xaml.cs | 2 +- .../NotifyIconResources.xaml | 2 +- .../NotifyIconViewModel.cs | 2 +- .../NotifyIconWpf.Sample.Windowless.csproj} | 11 +-- .../Properties/AssemblyInfo.cs | 0 .../Red.ico | Bin .../app.config | 6 ++ .../app.manifest | 0 .../FancyPopup.xaml | 2 +- .../FancyPopup.xaml.cs | 2 +- .../Form1.Designer.cs | 2 +- .../Form1.cs | 5 +- .../Form1.resx | 0 .../Icon/Led.ico | Bin .../Images/Preferences.png | Bin .../NotifyIconWpf.Sample.WindowsForms.csproj} | 12 ++-- .../Program.cs | 2 +- .../Properties/AssemblyInfo.cs | 0 .../Properties/Resources.Designer.cs | 5 +- .../Properties/Resources.resx | 0 .../Properties/Settings.Designer.cs | 0 .../Properties/Settings.settings | 0 .../app.config | 6 ++ .../app.manifest | 0 src/NotifyIconWpf.sln | 6 +- src/NotifyIconWpf/NotifyIconWpf.csproj | 9 +-- src/global.json | 2 +- src/version.json | 4 +- 100 files changed, 201 insertions(+), 184 deletions(-) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/App.xaml (86%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/App.xaml.cs (79%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Commands/CloseWindowCommand.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Commands/CommandBase.cs (99%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Commands/HideSampleWindowCommand.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Commands/ShowSampleWindowCommand.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Icons/Bulb.ico (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Icons/Computers.ico (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Icons/Error.ico (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Icons/Inactive.ico (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Icons/NetDrives.ico (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Add.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Close.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Info.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Logo.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Preferences.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Images/Remove.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Main.xaml (88%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Main.xaml.cs (52%) rename src/{Sample Project/Sample Project.csproj => NotifyIconWpf.Sample.ShowCases/NotifyIconWpf.Sample.ShowCases.csproj} (68%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Properties/AssemblyInfo.cs (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Properties/Resources.Designer.cs (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Properties/Resources.resx (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Properties/Settings.Designer.cs (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Properties/Settings.settings (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyBalloon.xaml (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyBalloon.xaml.cs (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyPopup.xaml (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyPopup.xaml.cs (96%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyToolTip.xaml (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/FancyToolTip.xaml.cs (95%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/NotifyIconResources.xaml (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/ShowcaseWindow.xaml (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/ShowcaseWindow.xaml.cs (98%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/WelcomeBalloon.xaml (97%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Showcase/WelcomeBalloon.xaml.cs (84%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/01 - Declaration/NotifyIconResourceDictionary.xaml (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml (88%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml (94%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/SimpleUserControl.xaml (86%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/SimpleUserControl.xaml.cs (84%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml (78%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/03 - Popups/InlinePopupWindow.xaml (92%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/03 - Popups/InlinePopupWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml (95%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml.cs (95%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/05 - Balloons/BalloonSampleWindow.xaml (95%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/05 - Balloons/BalloonSampleWindow.xaml.cs (93%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/06 - Commands/CommandWindow.xaml (92%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/06 - Commands/CommandWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/06 - Commands/ShowMessageCommand.cs (90%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/07 - Events/EventVisualizerWindow.xaml (99%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/07 - Events/EventVisualizerWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml (93%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml.cs (91%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/Clock.png (100%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/ClockPopup.xaml (93%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/ClockPopup.xaml.cs (80%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/MvvmSampleViewModel.cs (95%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/MvvmSampleWindow.xaml (83%) rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/Tutorials/09 - MVVM/MvvmSampleWindow.xaml.cs (84%) create mode 100644 src/NotifyIconWpf.Sample.ShowCases/app.config rename src/{Sample Project => NotifyIconWpf.Sample.ShowCases}/app.manifest (100%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/App.xaml (93%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/App.xaml.cs (94%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/DelegateCommand.cs (94%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/MainWindow.xaml (83%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/MainWindow.xaml.cs (85%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/NotifyIconResources.xaml (93%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/NotifyIconViewModel.cs (97%) rename src/{Windowless Sample/Windowless Sample.csproj => NotifyIconWpf.Sample.Windowless/NotifyIconWpf.Sample.Windowless.csproj} (66%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/Properties/AssemblyInfo.cs (100%) rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/Red.ico (100%) create mode 100644 src/NotifyIconWpf.Sample.Windowless/app.config rename src/{Windowless Sample => NotifyIconWpf.Sample.Windowless}/app.manifest (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/FancyPopup.xaml (98%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/FancyPopup.xaml.cs (96%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Form1.Designer.cs (97%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Form1.cs (90%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Form1.resx (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Icon/Led.ico (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Images/Preferences.png (100%) rename src/{WindowsFormsSample/WindowsFormsSample.csproj => NotifyIconWpf.Sample.WindowsForms/NotifyIconWpf.Sample.WindowsForms.csproj} (84%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Program.cs (90%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Properties/AssemblyInfo.cs (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Properties/Resources.Designer.cs (97%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Properties/Resources.resx (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Properties/Settings.Designer.cs (100%) rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/Properties/Settings.settings (100%) create mode 100644 src/NotifyIconWpf.Sample.WindowsForms/app.config rename src/{WindowsFormsSample => NotifyIconWpf.Sample.WindowsForms}/app.manifest (100%) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a0f0424..ea62dcc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,8 +7,7 @@ trigger: batch: true branches: include: - - develop - - release/* + - master - feature/* exclude: - gh-pages @@ -32,24 +31,17 @@ stages: versionSpec: '5.5.1' - task: UseDotNet@2 - displayName: 'Use .NET Core sdk 3.1.6' + displayName: 'Use .NET Core sdk 5.0' inputs: packageType: sdk - version: 3.1.302 + version: 5.0.100 - - task: NuGetCommand@2 - displayName: NuGet restore + - task: DotNetCoreCLI@2 + displayName: Build inputs: - command: 'restore' - restoreSolution: '$(solution)' - feedsToUse: config - - - task: MSBuild@1 - displayName: Build and package - inputs: - solution: '$(solution)' - platform: $(buildPlatform) - configuration: $(buildConfiguration) + command: build + projects: '$(solution)' + arguments: '--configuration $(buildConfiguration) /p:Platform="$(buildPlatform)"' - task: CopyFiles@2 displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)' diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 849d6d3..1b33b4c 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -22,12 +22,6 @@ Source code and extensive sample application available at http://www.hardcodet.n NotifyIcon WPF Tray Notify ToolTip Popup Balloon Toast - - true - - - false - true @@ -46,6 +40,13 @@ Source code and extensive sample application available at http://www.hardcodet.n True + + + all + runtime; build; native; contentfiles; analyzers + + + @@ -61,10 +62,6 @@ Source code and extensive sample application available at http://www.hardcodet.n - - all - runtime; build; native; contentfiles; analyzers - diff --git a/src/Sample Project/App.xaml b/src/NotifyIconWpf.Sample.ShowCases/App.xaml similarity index 86% rename from src/Sample Project/App.xaml rename to src/NotifyIconWpf.Sample.ShowCases/App.xaml index 318ca54..e464665 100644 --- a/src/Sample Project/App.xaml +++ b/src/NotifyIconWpf.Sample.ShowCases/App.xaml @@ -1,4 +1,4 @@ - diff --git a/src/Sample Project/App.xaml.cs b/src/NotifyIconWpf.Sample.ShowCases/App.xaml.cs similarity index 79% rename from src/Sample Project/App.xaml.cs rename to src/NotifyIconWpf.Sample.ShowCases/App.xaml.cs index 9b6d915..89722a2 100644 --- a/src/Sample Project/App.xaml.cs +++ b/src/NotifyIconWpf.Sample.ShowCases/App.xaml.cs @@ -1,6 +1,6 @@ using System.Windows; -namespace Samples +namespace NotifyIconWpf.Sample.ShowCases { /// /// Interaction logic for App.xaml diff --git a/src/Sample Project/Commands/CloseWindowCommand.cs b/src/NotifyIconWpf.Sample.ShowCases/Commands/CloseWindowCommand.cs similarity index 91% rename from src/Sample Project/Commands/CloseWindowCommand.cs rename to src/NotifyIconWpf.Sample.ShowCases/Commands/CloseWindowCommand.cs index 00930e8..bba39a5 100644 --- a/src/Sample Project/Commands/CloseWindowCommand.cs +++ b/src/NotifyIconWpf.Sample.ShowCases/Commands/CloseWindowCommand.cs @@ -1,7 +1,7 @@ using System.Windows; using System.Windows.Input; -namespace Samples.Commands +namespace NotifyIconWpf.Sample.ShowCases.Commands { /// /// Closes the current window. diff --git a/src/Sample Project/Commands/CommandBase.cs b/src/NotifyIconWpf.Sample.ShowCases/Commands/CommandBase.cs similarity index 99% rename from src/Sample Project/Commands/CommandBase.cs rename to src/NotifyIconWpf.Sample.ShowCases/Commands/CommandBase.cs index 040a21b..666b1d6 100644 --- a/src/Sample Project/Commands/CommandBase.cs +++ b/src/NotifyIconWpf.Sample.ShowCases/Commands/CommandBase.cs @@ -6,7 +6,7 @@ using System.Windows.Markup; using System.Windows.Media; using Hardcodet.Wpf.TaskbarNotification; -namespace Samples.Commands +namespace NotifyIconWpf.Sample.ShowCases.Commands { /// /// Basic implementation of the diff --git a/src/Sample Project/Commands/HideSampleWindowCommand.cs b/src/NotifyIconWpf.Sample.ShowCases/Commands/HideSampleWindowCommand.cs similarity index 91% rename from src/Sample Project/Commands/HideSampleWindowCommand.cs rename to src/NotifyIconWpf.Sample.ShowCases/Commands/HideSampleWindowCommand.cs index 0e5be4e..239ef0a 100644 --- a/src/Sample Project/Commands/HideSampleWindowCommand.cs +++ b/src/NotifyIconWpf.Sample.ShowCases/Commands/HideSampleWindowCommand.cs @@ -1,7 +1,7 @@ using System.Windows; using System.Windows.Input; -namespace Samples.Commands +namespace NotifyIconWpf.Sample.ShowCases.Commands { /// /// Hides the main window. diff --git a/src/Sample Project/Commands/ShowSampleWindowCommand.cs b/src/NotifyIconWpf.Sample.ShowCases/Commands/ShowSampleWindowCommand.cs similarity index 91% rename from src/Sample Project/Commands/ShowSampleWindowCommand.cs rename to src/NotifyIconWpf.Sample.ShowCases/Commands/ShowSampleWindowCommand.cs index f954968..5ff656e 100644 --- a/src/Sample Project/Commands/ShowSampleWindowCommand.cs +++ b/src/NotifyIconWpf.Sample.ShowCases/Commands/ShowSampleWindowCommand.cs @@ -1,7 +1,7 @@ using System.Windows; using System.Windows.Input; -namespace Samples.Commands +namespace NotifyIconWpf.Sample.ShowCases.Commands { /// /// Shows the main window. diff --git a/src/Sample Project/Icons/Bulb.ico b/src/NotifyIconWpf.Sample.ShowCases/Icons/Bulb.ico similarity index 100% rename from src/Sample Project/Icons/Bulb.ico rename to src/NotifyIconWpf.Sample.ShowCases/Icons/Bulb.ico diff --git a/src/Sample Project/Icons/Computers.ico b/src/NotifyIconWpf.Sample.ShowCases/Icons/Computers.ico similarity index 100% rename from src/Sample Project/Icons/Computers.ico rename to src/NotifyIconWpf.Sample.ShowCases/Icons/Computers.ico diff --git a/src/Sample Project/Icons/Error.ico b/src/NotifyIconWpf.Sample.ShowCases/Icons/Error.ico similarity index 100% rename from src/Sample Project/Icons/Error.ico rename to src/NotifyIconWpf.Sample.ShowCases/Icons/Error.ico diff --git a/src/Sample Project/Icons/Inactive.ico b/src/NotifyIconWpf.Sample.ShowCases/Icons/Inactive.ico similarity index 100% rename from src/Sample Project/Icons/Inactive.ico rename to src/NotifyIconWpf.Sample.ShowCases/Icons/Inactive.ico diff --git a/src/Sample Project/Icons/NetDrives.ico b/src/NotifyIconWpf.Sample.ShowCases/Icons/NetDrives.ico similarity index 100% rename from src/Sample Project/Icons/NetDrives.ico rename to src/NotifyIconWpf.Sample.ShowCases/Icons/NetDrives.ico diff --git a/src/Sample Project/Images/Add.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Add.png similarity index 100% rename from src/Sample Project/Images/Add.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Add.png diff --git a/src/Sample Project/Images/Close.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Close.png similarity index 100% rename from src/Sample Project/Images/Close.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Close.png diff --git a/src/Sample Project/Images/Info.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Info.png similarity index 100% rename from src/Sample Project/Images/Info.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Info.png diff --git a/src/Sample Project/Images/Logo.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Logo.png similarity index 100% rename from src/Sample Project/Images/Logo.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Logo.png diff --git a/src/Sample Project/Images/Preferences.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Preferences.png similarity index 100% rename from src/Sample Project/Images/Preferences.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Preferences.png diff --git a/src/Sample Project/Images/Remove.png b/src/NotifyIconWpf.Sample.ShowCases/Images/Remove.png similarity index 100% rename from src/Sample Project/Images/Remove.png rename to src/NotifyIconWpf.Sample.ShowCases/Images/Remove.png diff --git a/src/Sample Project/Main.xaml b/src/NotifyIconWpf.Sample.ShowCases/Main.xaml similarity index 88% rename from src/Sample Project/Main.xaml rename to src/NotifyIconWpf.Sample.ShowCases/Main.xaml index 38e32fc..d2ef1a2 100644 --- a/src/Sample Project/Main.xaml +++ b/src/NotifyIconWpf.Sample.ShowCases/Main.xaml @@ -1,5 +1,5 @@  + TextWrapping="Wrap" Text="{Binding Path=SampleTitle}"/>