-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileHopperInfo.cs
More file actions
58 lines (56 loc) · 1.46 KB
/
FileHopperInfo.cs
File metadata and controls
58 lines (56 loc) · 1.46 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
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
using System;
using System.Drawing;
using FileHopper.Properties;
using Grasshopper.Kernel;
namespace FileHopper
{
public class FileHopperInfo : GH_AssemblyInfo
{
public override string Name
{
get
{
return "FileHopper";
}
}
public override Bitmap Icon
{
get
{
//Return a 24x24 pixel bitmap to represent this GHA library.
return Resources.Logo;
}
}
public override string Description
{
get
{
//Return a short string describing the purpose of this GHA library.
return "Provides functionality for navigating the Windows file system in Grasshopper through wildcard pattern matching and auto filled value lists";
}
}
public override Guid Id
{
get
{
return new Guid("eb75741b-5fda-4066-81d0-2086220009d7");
}
}
public override string AuthorName
{
get
{
//Return a string identifying you or your company.
return "Dominic Beer";
}
}
public override string AuthorContact
{
get
{
//Return a string representing your preferred contact details.
return "tbc";
}
}
}
}