diff --git a/src/Policy/IDependencyResolverTrackerPolicy.cs b/src/Policy/IDependencyResolverTrackerPolicy.cs
deleted file mode 100644
index 9094f3d4..00000000
--- a/src/Policy/IDependencyResolverTrackerPolicy.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
-
-using Unity.Builder;
-
-namespace Unity.Policy
-{
- ///
- /// A builder policy that lets you keep track of the current
- /// resolvers and will remove them from the given policy set.
- ///
- public interface IDependencyResolverTrackerPolicy : IBuilderPolicy
- {
- ///
- /// Add a new resolver to track by key.
- ///
- /// Key that was used to add the resolver to the policy set.
- void AddResolverKey(object key);
-
- ///
- /// Remove the currently tracked resolvers from the given policy list.
- ///
- /// Policy list to remove the resolvers from.
- void RemoveResolvers(IPolicyList policies);
- }
-}
diff --git a/src/ResolverPolicy/DependencyResolverTrackerPolicy.cs b/src/ResolverPolicy/DependencyResolverTrackerPolicy.cs
deleted file mode 100644
index a851f597..00000000
--- a/src/ResolverPolicy/DependencyResolverTrackerPolicy.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
-
-using System.Collections.Generic;
-using Unity.Policy;
-
-namespace Unity.ResolverPolicy
-{
- ///
- /// Implementation of .
- ///
- public class DependencyResolverTrackerPolicy : IDependencyResolverTrackerPolicy
- {
- private readonly List