AvalonStudio.Controls.Standard.SolutionExplorer.Commands.CloseSolutionCommandDefinition.CloseSolutionCommandDefinition C# (CSharp) Method

CloseSolutionCommandDefinition() public method

public CloseSolutionCommandDefinition ( ) : System
return System
		public CloseSolutionCommandDefinition()
		{
			command = ReactiveCommand.Create();
			command.Subscribe(async _ =>
			{
				var shell = IoC.Get<IShell>();
                await shell.CloseSolutionAsync();
			});
		}
CloseSolutionCommandDefinition