Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandBuilder.cs
T

14 lines
335 B
C#

using Hyperbar.Lifecycles;
using Microsoft.Extensions.DependencyInjection;
namespace Hyperbar.Desktop.Contextual;
public class ContextualCommandBuilder :
ICommandBuilder
{
public void Create(IServiceCollection services)
{
services.AddCommandTemplate<ContextualCommandViewModel, ContextualCommandView>();
}
}