diff --git a/src/Umbraco.Core/Services/IMacroProperty.cs b/src/Umbraco.Core/Services/IMacroProperty.cs
deleted file mode 100644
index 3ff879509e..0000000000
--- a/src/Umbraco.Core/Services/IMacroProperty.cs
+++ /dev/null
@@ -1,56 +0,0 @@
-using System.Xml;
-using Umbraco.Core.Models;
-
-namespace Umbraco.Core.Services
-{
- internal interface IMacroProperty
- {
- ///
- /// The sortorder
- ///
- int SortOrder { get; set; }
-
- ///
- /// The alias if of the macroproperty, this is used in the special macro element
- /// ?UMBRACO_MACRO>
- ///
- ///
- string Alias { get; set; }
-
- ///
- /// The userfriendly name
- ///
- string Name { get; set; }
-
- ///
- /// Gets the id.
- ///
- /// The id.
- int Id { get; }
-
- ///
- /// Gets or sets the macro.
- ///
- /// The macro.
- IMacro Macro { get; set; }
-
- ///
- /// The basetype which defines which component is used in the UI for editing content
- ///
- IMacroPropertyType Type { get; set; }
-
- ///
- /// Deletes the current macroproperty
- ///
- void Delete();
-
- void Save();
-
- ///
- /// Retrieve a Xmlrepresentation of the MacroProperty used for exporting the Macro to the package
- ///
- /// XmlDocument context
- /// A xmlrepresentation of the object
- XmlElement ToXml(XmlDocument xd);
- }
-}
\ No newline at end of file
diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj
index ab427d59e5..a2475919fc 100644
--- a/src/Umbraco.Core/Umbraco.Core.csproj
+++ b/src/Umbraco.Core/Umbraco.Core.csproj
@@ -350,7 +350,7 @@
-
+
@@ -1039,7 +1039,6 @@
-