diff --git a/src/Umbraco.Web/Mvc/MinifyJavaScriptResultAttribute.cs b/src/Umbraco.Web/Mvc/MinifyJavaScriptResultAttribute.cs
index 227c15b344..635a7314c5 100644
--- a/src/Umbraco.Web/Mvc/MinifyJavaScriptResultAttribute.cs
+++ b/src/Umbraco.Web/Mvc/MinifyJavaScriptResultAttribute.cs
@@ -12,6 +12,7 @@ namespace Umbraco.Web.Mvc
///
/// Only minifies in release mode
///
+ /// Migrated already to .Net Core
public class MinifyJavaScriptResultAttribute : ActionFilterAttribute
{
private readonly IHostingEnvironment _hostingEnvironment;
diff --git a/src/Umbraco.Web/Mvc/PreRenderViewActionFilterAttribute.cs b/src/Umbraco.Web/Mvc/PreRenderViewActionFilterAttribute.cs
index 54e20f5d56..2e659eccf6 100644
--- a/src/Umbraco.Web/Mvc/PreRenderViewActionFilterAttribute.cs
+++ b/src/Umbraco.Web/Mvc/PreRenderViewActionFilterAttribute.cs
@@ -3,6 +3,7 @@ using System.Web.Mvc;
namespace Umbraco.Web.Mvc
{
+ /// Migrated already to .Net Core
public class PreRenderViewActionFilterAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
diff --git a/src/Umbraco.Web/Mvc/StatusCodeFilterAttribute.cs b/src/Umbraco.Web/Mvc/StatusCodeFilterAttribute.cs
index b1836c6ba4..727c29b93c 100644
--- a/src/Umbraco.Web/Mvc/StatusCodeFilterAttribute.cs
+++ b/src/Umbraco.Web/Mvc/StatusCodeFilterAttribute.cs
@@ -8,6 +8,7 @@ namespace Umbraco.Web.Mvc
///
/// Forces the response to have a specific http status code
///
+ /// Migrated already to .Net Core
internal class StatusCodeResultAttribute : ActionFilterAttribute
{
private readonly HttpStatusCode _statusCode;