1 | #Region "Microsoft.VisualBasic::834b3bfcf002ec7d5c8555b5a490799a, Microsoft.VisualBasic.Core\LICENSE.vb" |
2 | |
3 | ' Author: |
4 | ' |
5 | ' asuka (amethyst.asuka@gcmodeller.org) |
6 | ' xie (genetics@smrucc.org) |
7 | ' xieguigang (xie.guigang@live.com) |
8 | ' |
9 | ' Copyright (c) 2018 GPL3 Licensed |
10 | ' |
11 | ' |
12 | ' GNU GENERAL PUBLIC LICENSE (GPL3) |
13 | ' |
14 | ' |
15 | ' This program is free software: you can redistribute it and/or modify |
16 | ' it under the terms of the GNU General Public License as published by |
17 | ' the Free Software Foundation, either version 3 of the License, or |
18 | ' (at your option) any later version. |
19 | ' |
20 | ' This program is distributed in the hope that it will be useful, |
21 | ' but WITHOUT ANY WARRANTY; without even the implied warranty of |
22 | ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23 | ' GNU General Public License for more details. |
24 | ' |
25 | ' You should have received a copy of the GNU General Public License |
26 | ' along with this program. If not, see <http://www.gnu.org/licenses/>. |
27 | |
28 | |
29 | |
30 | ' /********************************************************************************/ |
31 | |
32 | ' Summaries: |
33 | |
34 | ' Module LICENSE |
35 | ' |
36 | ' Properties: GPL3 |
37 | ' |
38 | ' Sub: GithubRepository |
39 | ' |
40 | ' /********************************************************************************/ |
41 | |
42 | #End Region |
43 | |
44 | Imports System.Runtime.CompilerServices |
45 | |
46 | ''' <summary> |
47 | ''' Information about this VisualBasic App framework code module. |
48 | ''' </summary> |
49 | Public Module LICENSE |
50 | |
51 | #If FRAMEWORD_CORE Then |
52 | |
53 | '''<summary> |
54 | ''' Looks up a localized string similar to GNU GENERAL PUBLIC LICENSE |
55 | ''' Version 3, 29 June 2007 |
56 | ''' |
57 | ''' Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> |
58 | ''' Everyone is permitted to copy and distribute verbatim copies |
59 | ''' of this license document, but changing it is not allowed. |
60 | ''' |
61 | ''' Preamble |
62 | ''' |
63 | ''' The GNU General Public License is a free, copyleft license for |
64 | '''software and other kinds of works. |
65 | ''' |
66 | ''' The licenses for most software and other practical works are designed |
67 | '''to take away yo [rest of string was truncated]";. |
68 | '''</summary> |
69 | Public ReadOnly Property GPL3 As String |
70 | <MethodImpl(MethodImplOptions.AggressiveInlining)> |
71 | Get |
72 | Return My.Resources.gpl |
73 | End Get |
74 | End Property |
75 | #End If |
76 | |
77 | Public Const githubURL$ = "https://github.com/xieguigang/sciBASIC" |
78 | |
79 | ''' <summary> |
80 | ''' https://github.com/xieguigang/sciBASIC |
81 | ''' </summary> |
82 | ''' |
83 | <MethodImpl(MethodImplOptions.AggressiveInlining)> |
84 | Public Sub GithubRepository() |
85 | Call System.Diagnostics.Process.Start(LICENSE.githubURL) |
86 | End Sub |
87 | End Module |