summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-12-05 10:32:28 +0100
committerGitHub <noreply@github.com>2016-12-05 10:32:28 +0100
commit17280b260f07b12a23bb4af2679183b39beb8fd6 (patch)
tree5f2b058e5bd819cf27a867a87b900aa3ddd27054 /Xamarin.Forms.Core
parent5b892512abf535f50be39a04fbd5168356a1118d (diff)
downloadxamarin-forms-17280b260f07b12a23bb4af2679183b39beb8fd6.tar.gz
xamarin-forms-17280b260f07b12a23bb4af2679183b39beb8fd6.tar.bz2
xamarin-forms-17280b260f07b12a23bb4af2679183b39beb8fd6.zip
[Xaml] revert namespace change for XmlnsDefAttr (#610)
* [Xaml] revert namespace change for XmlnsDefAttr * fix
Diffstat (limited to 'Xamarin.Forms.Core')
-rw-r--r--Xamarin.Forms.Core/Properties/AssemblyInfo.cs1
-rw-r--r--Xamarin.Forms.Core/XmlnsDefinitionAttribute.cs5
2 files changed, 3 insertions, 3 deletions
diff --git a/Xamarin.Forms.Core/Properties/AssemblyInfo.cs b/Xamarin.Forms.Core/Properties/AssemblyInfo.cs
index 86eb9571..6bbdb600 100644
--- a/Xamarin.Forms.Core/Properties/AssemblyInfo.cs
+++ b/Xamarin.Forms.Core/Properties/AssemblyInfo.cs
@@ -1,6 +1,5 @@
using System.Reflection;
using System.Runtime.CompilerServices;
-using System.Windows.Markup;
using Xamarin.Forms;
using Xamarin.Forms.Internals;
diff --git a/Xamarin.Forms.Core/XmlnsDefinitionAttribute.cs b/Xamarin.Forms.Core/XmlnsDefinitionAttribute.cs
index e82efbf2..4178dc92 100644
--- a/Xamarin.Forms.Core/XmlnsDefinitionAttribute.cs
+++ b/Xamarin.Forms.Core/XmlnsDefinitionAttribute.cs
@@ -1,6 +1,7 @@
-using System.Diagnostics;
+using System;
+using System.Diagnostics;
-namespace System.Windows.Markup
+namespace Xamarin.Forms.Internals
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
[DebuggerDisplay("{XmlNamespace}, {ClrNamespace}, {AssemblyName}")]