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