diff --git a/src/Cake.Common/Tools/DotNet/Build/DotNetBuildSettings.cs b/src/Cake.Common/Tools/DotNet/Build/DotNetBuildSettings.cs
index d6410f5285..c0ac1f834c 100644
--- a/src/Cake.Common/Tools/DotNet/Build/DotNetBuildSettings.cs
+++ b/src/Cake.Common/Tools/DotNet/Build/DotNetBuildSettings.cs
@@ -3,9 +3,9 @@
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
+using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNetCore;
using Cake.Common.Tools.DotNetCore.Build;
-using Cake.Common.Tools.DotNetCore.MSBuild;
using Cake.Core.IO;
namespace Cake.Common.Tools.DotNet.Build
@@ -79,6 +79,6 @@ public class DotNetBuildSettings : DotNetCoreSettings
///
/// Gets or sets additional arguments to be passed to MSBuild.
///
- public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
+ public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
diff --git a/src/Cake.Common/Tools/DotNet/Clean/DotNetCleanSettings.cs b/src/Cake.Common/Tools/DotNet/Clean/DotNetCleanSettings.cs
index cde43659cc..73457bd7d9 100644
--- a/src/Cake.Common/Tools/DotNet/Clean/DotNetCleanSettings.cs
+++ b/src/Cake.Common/Tools/DotNet/Clean/DotNetCleanSettings.cs
@@ -2,9 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
+using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNetCore;
using Cake.Common.Tools.DotNetCore.Clean;
-using Cake.Common.Tools.DotNetCore.MSBuild;
using Cake.Core.IO;
namespace Cake.Common.Tools.DotNet.Clean
@@ -45,6 +45,6 @@ public class DotNetCleanSettings : DotNetCoreSettings
///
/// Gets or sets additional arguments to be passed to MSBuild.
///
- public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
+ public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
diff --git a/src/Cake.Common/Tools/DotNet/Pack/DotNetPackSettings.cs b/src/Cake.Common/Tools/DotNet/Pack/DotNetPackSettings.cs
index 103ca0aa43..2ddb5402b6 100644
--- a/src/Cake.Common/Tools/DotNet/Pack/DotNetPackSettings.cs
+++ b/src/Cake.Common/Tools/DotNet/Pack/DotNetPackSettings.cs
@@ -3,8 +3,8 @@
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
+using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNetCore;
-using Cake.Common.Tools.DotNetCore.MSBuild;
using Cake.Common.Tools.DotNetCore.Pack;
using Cake.Core.IO;
@@ -101,6 +101,6 @@ public class DotNetPackSettings : DotNetCoreSettings
///
/// Gets or sets additional arguments to be passed to MSBuild.
///
- public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
+ public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
diff --git a/src/Cake.Common/Tools/DotNet/Publish/DotNetPublishSettings.cs b/src/Cake.Common/Tools/DotNet/Publish/DotNetPublishSettings.cs
index 76621f94a8..f5b1dcccfc 100644
--- a/src/Cake.Common/Tools/DotNet/Publish/DotNetPublishSettings.cs
+++ b/src/Cake.Common/Tools/DotNet/Publish/DotNetPublishSettings.cs
@@ -3,8 +3,8 @@
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
+using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNetCore;
-using Cake.Common.Tools.DotNetCore.MSBuild;
using Cake.Common.Tools.DotNetCore.Publish;
using Cake.Core.IO;
@@ -175,6 +175,6 @@ public class DotNetPublishSettings : DotNetCoreSettings
///
/// Gets or sets additional arguments to be passed to MSBuild.
///
- public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
+ public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
diff --git a/src/Cake.Common/Tools/DotNet/Restore/DotNetRestoreSettings.cs b/src/Cake.Common/Tools/DotNet/Restore/DotNetRestoreSettings.cs
index 0f9c3790cd..71cf541299 100644
--- a/src/Cake.Common/Tools/DotNet/Restore/DotNetRestoreSettings.cs
+++ b/src/Cake.Common/Tools/DotNet/Restore/DotNetRestoreSettings.cs
@@ -3,8 +3,8 @@
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
+using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNetCore;
-using Cake.Common.Tools.DotNetCore.MSBuild;
using Cake.Common.Tools.DotNetCore.Restore;
using Cake.Core.IO;
@@ -113,6 +113,6 @@ public class DotNetRestoreSettings : DotNetCoreSettings
///
/// Gets or sets additional arguments to be passed to MSBuild.
///
- public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
+ public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}