-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPluginSupportInfo.cs
60 lines (54 loc) · 1.52 KB
/
PluginSupportInfo.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
////////////////////////////////////////////////////////////////////////
//
// This file is part of pdn-twainable-plus, an Effect plugin for
// Paint.NET that imports images from TWAIN devices.
//
// Copyright (c) 2014, 2017, 2018 Nicholas Hayes
//
// This file is licensed under the MIT License.
// See LICENSE.txt for complete licensing and attribution information.
//
////////////////////////////////////////////////////////////////////////
using System;
using System.Reflection;
namespace TwainablePlus
{
public sealed class PluginSupportInfo : PaintDotNet.IPluginSupportInfo
{
public string Author
{
get
{
return "null54";
}
}
public string Copyright
{
get
{
return ((AssemblyCopyrightAttribute)typeof(PluginSupportInfo).Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false)[0]).Copyright;
}
}
public string DisplayName
{
get
{
return TwainablePlusEffect.StaticName;
}
}
public Version Version
{
get
{
return typeof(PluginSupportInfo).Assembly.GetName().Version;
}
}
public Uri WebsiteUri
{
get
{
return new Uri("http://www.getpaint.net/redirect/plugins.html");
}
}
}
}