-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathSimpleRemoteCommandSampleExtension.cs
More file actions
31 lines (27 loc) · 1.08 KB
/
SimpleRemoteCommandSampleExtension.cs
File metadata and controls
31 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace SimpleRemoteCommandSample;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.VisualStudio.Extensibility;
/// <summary>
/// Extension entry point for the SimpleRemoteCommandSample.
/// </summary>
[VisualStudioContribution]
public class SimpleRemoteCommandSampleExtension : Extension
{
/// <inheritdoc/>
public override ExtensionConfiguration ExtensionConfiguration => new()
{
Metadata = new(
id: "SimpleRemoteCommandSample.585f62b4-1416-4ed4-a7e8-2d9b2f37f01e",
version: this.ExtensionAssemblyVersion,
publisherName: "Microsoft",
displayName: "Simple Remote Command Sample Extension",
description: "Sample extension demonstrating commands"),
};
/// <inheritdoc/>
protected override void InitializeServices(IServiceCollection serviceCollection)
{
base.InitializeServices(serviceCollection);
}
}