Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed namespace issues #359

Merged
merged 1 commit into from
Oct 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/GongSolutions.WPF.DragDrop/DefaultDropHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;
using GongSolutions.Wpf.DragDrop.Utilities;
Expand Down
4 changes: 2 additions & 2 deletions src/GongSolutions.WPF.DragDrop/DragDrop.Properties.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using GongSolutions.WPF.DragDrop.Utilities;
using System;
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using GongSolutions.Wpf.DragDrop.Utilities;

namespace GongSolutions.Wpf.DragDrop
{
Expand Down
1 change: 0 additions & 1 deletion src/GongSolutions.WPF.DragDrop/DragDrop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using System.Windows.Media.Imaging;
using GongSolutions.Wpf.DragDrop.Icons;
using GongSolutions.Wpf.DragDrop.Utilities;
using GongSolutions.WPF.DragDrop.Utilities;

namespace GongSolutions.Wpf.DragDrop
{
Expand Down
3 changes: 1 addition & 2 deletions src/GongSolutions.WPF.DragDrop/DropTargetHighlightAdorner.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Windows;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyName>GongSolutions.WPF.DragDrop</AssemblyName>
<Title>gong-wpf-dragdrop</Title>
<RootNamespace>GongSolutions.WPF.DragDrop</RootNamespace>
<RootNamespace>GongSolutions.Wpf.DragDrop</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- reference includes -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Windows;

namespace GongSolutions.WPF.DragDrop.Utilities
namespace GongSolutions.Wpf.DragDrop.Utilities
{
/// <summary>
/// Interface implemented by the root element finder.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using GongSolutions.WPF.DragDrop.Utilities;
using System.Windows;
using System.Windows;
using System.Windows.Controls;

namespace GongSolutions.Wpf.DragDrop.Utilities
Expand Down