Skip to content

Commit

Permalink
(cake-build#3683) Use DotNetMSBuildSettings instead of DotNetCoreMSBu…
Browse files Browse the repository at this point in the history
…ildSettings on new dotnet aliases settings
  • Loading branch information
augustoproiete committed Nov 8, 2021
1 parent e0e0752 commit f7f190b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/DotNet/Build/DotNetBuildSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -79,6 +79,6 @@ public class DotNetBuildSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets additional arguments to be passed to MSBuild.
/// </summary>
public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/DotNet/Clean/DotNetCleanSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -45,6 +45,6 @@ public class DotNetCleanSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets additional arguments to be passed to MSBuild.
/// </summary>
public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/DotNet/Pack/DotNetPackSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -101,6 +101,6 @@ public class DotNetPackSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets additional arguments to be passed to MSBuild.
/// </summary>
public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/DotNet/Publish/DotNetPublishSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -175,6 +175,6 @@ public class DotNetPublishSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets additional arguments to be passed to MSBuild.
/// </summary>
public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/DotNet/Restore/DotNetRestoreSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -113,6 +113,6 @@ public class DotNetRestoreSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets additional arguments to be passed to MSBuild.
/// </summary>
public DotNetCoreMSBuildSettings MSBuildSettings { get; set; }
public DotNetMSBuildSettings MSBuildSettings { get; set; }
}
}

0 comments on commit f7f190b

Please sign in to comment.