-
Notifications
You must be signed in to change notification settings - Fork 0
/
PluginSupportInfo.cs
61 lines (55 loc) · 1.43 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
61
////////////////////////////////////////////////////////////////////////
//
// This file is part of pdn-jpeg-2000, a FileType plugin for Paint.NET
// that loads and saves JPEG 2000 images.
//
// Copyright (c) 2012-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;
using PaintDotNet;
namespace Jpeg2000Filetype
{
public sealed class PluginSupportInfo : IPluginSupportInfo
{
public string Author
{
get
{
return "null54";
}
}
public string Copyright
{
get
{
return ((AssemblyCopyrightAttribute)base.GetType().Assembly.GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false)[0]).Copyright;
}
}
public string DisplayName
{
get
{
return Jpeg2000Filetype.StaticName;
}
}
public Version Version
{
get
{
return base.GetType().Assembly.GetName().Version;
}
}
public Uri WebsiteUri
{
get
{
return new Uri("http://www.getpaint.net/redirect/plugins.html");
}
}
}
}