Skip to content

Commit

Permalink
🐛 Fix tasks name
Browse files Browse the repository at this point in the history
  • Loading branch information
pleonex committed Oct 27, 2023
1 parent c274625 commit 658c83d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace Cake.Frosting.PleOps.Recipe.Common;
/// <summary>
/// Task to clean the artifact and temporary folders if it's not an incremental build.
/// </summary>
[TaskName(nameof(Common) + ".CleanArtifacts")]
[TaskName("PleOps.Recipe.Common.CleanArtifacts")]
public class CleanArtifactsTask : FrostingTask<PleOpsBuildContext>
{
/// <inheritdoc />
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Frosting.PleOps.Recipe/Common/RestoreToolsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Cake.Frosting.PleOps.Recipe.Common;
/// <summary>
/// Task to restore or update .NET tools available in the manifest.
/// </summary>
[TaskName(nameof(Common) + ".RestoreTools")]
[TaskName("PleOps.Recipe.Common.RestoreTools")]
public class RestoreToolsTask : FrostingTask<PleOpsBuildContext>
{
/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace Cake.Frosting.PleOps.Recipe.Common;
/// It requires the dotnet tool: GitVersion.Tool. Make sure to install it
/// via 'dotnet tool install GitVersion.Tool' or using InstallTool().
/// </remarks>
[TaskName(nameof(Common) + ".SetGitVersion")]
[TaskName("PleOps.Recipe.Common.SetGitVersion")]
[IsDependentOn(typeof(RestoreToolsTask))]
public class SetGitVersionTask : FrostingTask<PleOpsBuildContext>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Frosting.PleOps.Recipe/DocFx/DocFxTasks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static class DocFxTasks
/// <summary>
/// Gets the module name.
/// </summary>
public const string ModuleName = nameof(DocFx);
public const string ModuleName = "PleOps.Recipe.DocFx";

/// <summary>
/// Gets the name of the build task.
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Frosting.PleOps.Recipe/Dotnet/DotnetTasks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static class DotnetTasks
/// <summary>
/// Gets the module name.
/// </summary>
public const string ModuleName = nameof(Dotnet);
public const string ModuleName = "PleOps.Recipe.Dotnet";

/// <summary>
/// Gets the name of the restore dependencies task.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Cake.Frosting.PleOps.Recipe.GitHub;
/// <summary>
/// Exports the release notes from the GitHub releases.
/// </summary>
[TaskName(nameof(GitHub) + ".ExportReleaseNotes")]
[TaskName("PleOps.Recipe.GitHub.ExportReleaseNotes")]
[IsDependentOn(typeof(Common.RestoreToolsTask))]
public class ExportReleaseNotesTask : FrostingTask<PleOpsBuildContext>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Cake.Frosting.PleOps.Recipe.GitHub;
/// The GitHub release should have as a tag "v{Version}".
/// This action only runs for stable builds if the GitHub token is present.
/// </remarks>
[TaskName(nameof(GitHub) + ".UploadReleaseBinaries")]
[TaskName("PleOps.Recipe.GitHub.UploadReleaseBinaries")]
public class UploadReleaseBinariesTask : FrostingTask<PleOpsBuildContext>
{
/// <inheritdoc />
Expand Down

0 comments on commit 658c83d

Please sign in to comment.