Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommended Extensions and Command Updates #19

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ namespace CodeFactory.Architecture.AspNetCore.Service.Rest.CSharpFile
/// <summary>
/// Code factory command for automation of a C# document when selected from a project in solution explorer.
/// </summary>
public class AddMissingLogicMembers : CSharpSourceCommandBase
public class AddMissingLogicMembersCommand : CSharpSourceCommandBase
{
private static readonly string commandTitle = "Add Missing Logic Members";
private static readonly string commandDescription = "Adds missing contract interface members to the Logic implementation.";

#pragma warning disable CS1998

/// <inheritdoc />
public AddMissingLogicMembers(ILogger logger, IVsActions vsActions) : base(logger, vsActions, commandTitle, commandDescription)
public AddMissingLogicMembersCommand(ILogger logger, IVsActions vsActions) : base(logger, vsActions, commandTitle, commandDescription)
{
//Intentionally blank
}
Expand All @@ -37,7 +37,7 @@ public AddMissingLogicMembers(ILogger logger, IVsActions vsActions) : base(logge
/// <summary>
/// The fully qualified name of the command to be used with configuration.
/// </summary>
public static string Type = typeof(AddMissingLogicMembers).FullName;
public static string Type = typeof(AddMissingLogicMembersCommand).FullName;


/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace CodeFactory.Architecture.AspNetCore.Service.Rest.CSharpFile
{
/// <summary>
/// Code factory command for automation of a C# document when selected from a project in solution explorer.
/// </summary>
public class AddMissingRepositoryMembers : CSharpSourceCommandBase
/// <summary>
/// Code factory command for automation of a C# document when selected from a project in solution explorer.
/// </summary>
public class AddMissingRepositoryMembersCommand : CSharpSourceCommandBase
{
private static readonly string commandTitle = "Add Missing Repository Members";
private static readonly string commandDescription = "Adds missing contract interface members to the repository implementation.";

#pragma warning disable CS1998

/// <inheritdoc />
public AddMissingRepositoryMembers(ILogger logger, IVsActions vsActions) : base(logger, vsActions, commandTitle, commandDescription)
public AddMissingRepositoryMembersCommand(ILogger logger, IVsActions vsActions) : base(logger, vsActions, commandTitle, commandDescription)
{
//Intentionally blank
}
Expand All @@ -39,7 +38,7 @@ public AddMissingRepositoryMembers(ILogger logger, IVsActions vsActions) : base(
/// <summary>
/// The fully qualified name of the command to be used with configuration.
/// </summary>
public static string Type = typeof(AddMissingRepositoryMembers).FullName;
public static string Type = typeof(AddMissingRepositoryMembersCommand).FullName;


/// <summary>
Expand Down
Loading