diff --git a/src/Tasks/Common/NETSdkWarning.cs b/src/Tasks/Common/NETSdkWarning.cs
new file mode 100644
index 000000000000..87abd3d54513
--- /dev/null
+++ b/src/Tasks/Common/NETSdkWarning.cs
@@ -0,0 +1,25 @@
+// Copyright (c) .NET Foundation and contributors. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+namespace Microsoft.NET.Build.Tasks
+{
+ ///
+ /// Provides a localizable mechanism for logging a warning from the SDK targets.
+ ///
+ public class
+#if EXTENSIONS
+ // This task source is shared with multiple task Dlls. Since both tasks
+ // may be loaded into the same project and each task accesses only resources
+ // in its own assembly they must have a unique name so-as not to clash.
+ NETBuildExtensionsWarning
+#else
+ NETSdkWarning
+#endif
+ : MessageBase
+ {
+ protected override void LogMessage(string message)
+ {
+ Log.LogWarning(message);
+ }
+ }
+}
diff --git a/src/Tasks/Common/Resources/Strings.resx b/src/Tasks/Common/Resources/Strings.resx
index 285f86277d28..479d7c3f22a2 100644
--- a/src/Tasks/Common/Resources/Strings.resx
+++ b/src/Tasks/Common/Resources/Strings.resx
@@ -1,17 +1,17 @@
-
@@ -330,4 +330,7 @@
You are working with a preview version of the .NET Core SDK. You can define the SDK version via a global.json file in the current project. More at https://go.microsoft.com/fwlink/?linkid=869452
-
\ No newline at end of file
+
+ Using DotNetCliToolReference to reference '{0}' is obsolete and can be removed from this project. This tool is bundled by default in the .NET Core SDK.
+
+
diff --git a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf
index a79a30369b55..092d276c9582 100644
--- a/src/Tasks/Common/Resources/xlf/Strings.cs.xlf
+++ b/src/Tasks/Common/Resources/xlf/Strings.cs.xlf
@@ -357,6 +357,11 @@
Pracujete se sadou .NET Core SDK verze Preview. Verzi sady SDK můžete definovat prostřednictvím souboru global.json v aktuálním projektu. Další informace najdete na adrese https://go.microsoft.com/fwlink/?linkid=869452.
+
+
+ Using DotNetCliToolReference to reference '{0}' is obsolete and can be removed from this project. This tool is bundled by default in the .NET Core SDK.
+
+