-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPlugin.cs
77 lines (65 loc) · 1.88 KB
/
Plugin.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
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using System.Collections.Generic;
using Slb.Ocean.Core;
namespace OceanLabs.HelloOcean
{
public class HelloOceanPlugin : Slb.Ocean.Core.Plugin
{
public override string AppVersion
{
get { return "2018.1"; }
}
public override string Author
{
get { return "Ocean Training and Support"; }
}
public override string Contact
{
get { return "oceantraining@slb.com"; }
}
public override IEnumerable<PluginIdentifier> Dependencies
{
get { return null; }
}
public override string Description
{
get { return "new Ocean plugin for training class"; }
}
public override string ImageResourceName
{
get { return null; }
}
public override Uri PluginUri
{
get { return new Uri("http://www.ocean.slb.com"); }
}
public override IEnumerable<ModuleReference> Modules
{
get
{
// Please fill this method with your modules with lines like this:
//yield return new ModuleReference(typeof(Module));
yield return new ModuleReference(typeof(HelloOceanModule));
}
}
public override string Name
{
get { return "HelloOcean Lab Plugin"; }
}
public override PluginIdentifier PluginId
{
get { return new PluginIdentifier(typeof(HelloOceanPlugin).FullName, typeof(HelloOceanPlugin).Assembly.GetName().Version); }
}
public override ModuleTrust Trust
{
get { return new ModuleTrust("Default"); }
}
public override string DeploymentFolder
{
get
{
return "OceanTraining";
}
}
}
}