diff --git a/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj b/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj
index 44a1b2bd94e..5bed77ba750 100644
--- a/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj
+++ b/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj
@@ -151,7 +151,6 @@
-
NullLoggingActivityBuilderExtensions.tt
diff --git a/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs b/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs
deleted file mode 100644
index efb3273ec84..00000000000
--- a/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System.Windows.Input;
-
-namespace ReactNative.Touch
-{
- ///
- /// A listener for intercepting touch events.
- ///
- public interface IOnInterceptTouchEventListener
- {
- ///
- /// Called to evaluate touch interception occurs on a view parent.
- ///
- /// The sender of the event.
- ///
- /// The motion event being dispatched down the hierarchy.
- ///
- ///
- /// true to steal the motion event from the children and
- /// dispatch to this view, or false to allow the motion
- /// event to be delivered to the child view.
- ///
- bool OnInterceptTouchEvent(object sender, MouseButtonEventArgs @event);
- }
-}
diff --git a/ReactWindows/ReactNative/ReactNative.csproj b/ReactWindows/ReactNative/ReactNative.csproj
index bbd80e8af41..25c956c901a 100644
--- a/ReactWindows/ReactNative/ReactNative.csproj
+++ b/ReactWindows/ReactNative/ReactNative.csproj
@@ -134,7 +134,6 @@
-
diff --git a/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs b/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs
deleted file mode 100644
index 37beea9b0fa..00000000000
--- a/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Windows.UI.Xaml.Input;
-
-namespace ReactNative.Touch
-{
- ///
- /// A listener for intercepting touch events.
- ///
- public interface IOnInterceptTouchEventListener
- {
- ///
- /// Called to evaluate touch interception occurs on a view parent.
- ///
- /// The sender of the event.
- ///
- /// The motion event being dispatched down the hierarchy.
- ///
- ///
- /// true to steal the motion event from the children and
- /// dispatch to this view, or false to allow the motion
- /// event to be delivered to the child view.
- ///
- bool OnInterceptTouchEvent(object sender, PointerRoutedEventArgs @event);
- }
-}