File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ using System . Threading ;
2+ using System . Threading . Tasks ;
3+ using Microsoft . VisualStudio . Extensibility ;
4+ using Microsoft . VisualStudio . Extensibility . Commands ;
5+
6+ namespace ICSharpCode . CodeConverter . VsExtension ;
7+
8+ [ VisualStudioContribution ]
9+ public class ConvertCSToVBExtensibilityCommand : Command
10+ {
11+ private readonly CodeConverterPackage _package ;
12+
13+ public ConvertCSToVBExtensibilityCommand ( CodeConverterPackage package )
14+ {
15+ _package = package ;
16+ }
17+
18+ public override CommandConfiguration CommandConfiguration => new ( "%a3378a21-e939-40c9-9e4b-eb0cec7b7854%" ) ;
19+
20+ public override async Task ExecuteCommandAsync ( IClientContext context , CancellationToken cancellationToken )
21+ {
22+ // This will be wired up to the existing logic in Phase 2
23+ await Task . CompletedTask ;
24+ }
25+ }
Original file line number Diff line number Diff line change 1+ using System . Threading ;
2+ using System . Threading . Tasks ;
3+ using Microsoft . VisualStudio . Extensibility ;
4+ using Microsoft . VisualStudio . Extensibility . Commands ;
5+
6+ namespace ICSharpCode . CodeConverter . VsExtension ;
7+
8+ [ VisualStudioContribution ]
9+ public class ConvertVBToCSExtensibilityCommand : Command
10+ {
11+ private readonly CodeConverterPackage _package ;
12+
13+ public ConvertVBToCSExtensibilityCommand ( CodeConverterPackage package )
14+ {
15+ _package = package ;
16+ }
17+
18+ public override CommandConfiguration CommandConfiguration => new ( "%a3378a21-e939-40c9-9e4b-eb0cec7b7854%" ) ;
19+
20+ public override async Task ExecuteCommandAsync ( IClientContext context , CancellationToken cancellationToken )
21+ {
22+ // This will be wired up to the existing logic in Phase 2
23+ await Task . CompletedTask ;
24+ }
25+ }
You can’t perform that action at this time.
0 commit comments