This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathProgram.cs
64 lines (59 loc) · 2.1 KB
/
Program.cs
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.IO;
using System.Diagnostics;
using System.ComponentModel.DataAnnotations;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System.Collections.Generic;
using static Microsoft.Jupyter.Core.Constants;
using Microsoft.Extensions.DependencyInjection;
using McMaster.Extensions.CommandLineUtils;
namespace Microsoft.Jupyter.Core
{
class Program
{
public static void Init(ServiceCollection serviceCollection) =>
serviceCollection
// Start a new service for the ReplEngine.
.AddSingleton<IExecutionEngine, EchoEngine>();
internal static CommandOption ShoutOption;
public static int Main(string[] args) {
var app = new KernelApplication(
PROPERTIES,
Init
);
CommandOption shoutInstallOption = null;
return app
.AddInstallCommand(
installCmd => {
shoutInstallOption = installCmd.Option(
"--shout",
"Shout back when echoing input.",
CommandOptionType.NoValue
);
}
)
.AddKernelCommand(
kernelCmd => {
ShoutOption = kernelCmd.Option(
"--shout",
"Shout back when echoing input.",
CommandOptionType.NoValue
);
}
)
.WithKernelArguments(
() => shoutInstallOption.HasValue() ? new[] {"--shout"} : new string[] {}
)
.WithKernelSpecResources<Program>(
new Dictionary<string, string>
{
["logo-64x64.png"] = "echo-kernel.res.logo-64x64.png"
}
)
.Execute(args);
}
}
}