| 1 | ' Tween - Client of Twitter
|
|---|
| 2 | ' Copyright © 2007-2009 kiri_feather (@kiri_feather) <kiri_feather@gmail.com>
|
|---|
| 3 | ' © 2008-2009 Moz (@syo68k) <http://iddy.jp/profile/moz/>
|
|---|
| 4 | ' © 2008-2009 takeshik (@takeshik) <http://www.takeshik.org/>
|
|---|
| 5 | ' All rights reserved.
|
|---|
| 6 | '
|
|---|
| 7 | ' This file is part of Tween.
|
|---|
| 8 | '
|
|---|
| 9 | ' This program is free software; you can redistribute it and/or modify it
|
|---|
| 10 | ' under the terms of the GNU General Public License as published by the Free
|
|---|
| 11 | ' Software Foundation; either version 3 of the License, or (at your option)
|
|---|
| 12 | ' any later version.
|
|---|
| 13 | '
|
|---|
| 14 | ' This program is distributed in the hope that it will be useful, but
|
|---|
| 15 | ' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|---|
| 16 | ' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|---|
| 17 | ' for more details.
|
|---|
| 18 | '
|
|---|
| 19 | ' You should have received a copy of the GNU General Public License along
|
|---|
| 20 | ' with this program. If not, see <http://www.gnu.org/licenses/>, or write to
|
|---|
| 21 | ' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|---|
| 22 | ' Boston, MA 02110-1301, USA.
|
|---|
| 23 |
|
|---|
| 24 | Imports System
|
|---|
| 25 | Imports System.Reflection
|
|---|
| 26 | Imports System.Runtime.InteropServices
|
|---|
| 27 |
|
|---|
| 28 | ' アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
|
|---|
| 29 | ' アセンブリに関連付けられている情報を変更するには、
|
|---|
| 30 | ' これらの属性値を変更してください。
|
|---|
| 31 |
|
|---|
| 32 | ' アセンブリ属性の値を確認します。
|
|---|
| 33 |
|
|---|
| 34 | <Assembly: AssemblyTitle("Tween")>
|
|---|
| 35 | <Assembly: AssemblyDescription("Client of Twitter. Free software(GPL3)" & vbcrlf & "<Contacts>" & vbcrlf & "Twitter:kiri_feather" & vbcrlf & "Mail:kiri.feather@gmail.com" & vbcrlf & "<Associator developer>" & vbcrlf & "Developer:Takeshi KIRIYA(http://www.takeshik.org/)" & vbcrlf & "Developer:Moz(http://iddy.jp/profile/moz/)" & vbcrlf & "Icons:Minami(http://www.pi-kun.com/)")>
|
|---|
| 36 | <Assembly: AssemblyCompany("")>
|
|---|
| 37 | <Assembly: AssemblyProduct("Tween")>
|
|---|
| 38 | <Assembly: AssemblyCopyright("(C)kiri_feather 2007-2009 All Rights Reserved.")>
|
|---|
| 39 | <Assembly: AssemblyTrademark("")>
|
|---|
| 40 |
|
|---|
| 41 | <Assembly: ComVisible(False)>
|
|---|
| 42 |
|
|---|
| 43 | 'このプロジェクトが COM に公開される場合、次の GUID がタイプ ライブラリの ID になります。
|
|---|
| 44 | <Assembly: Guid("247a7ec4-c90f-48ed-90d2-a85c39bd3a78")>
|
|---|
| 45 |
|
|---|
| 46 | ' アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
|
|---|
| 47 | '
|
|---|
| 48 | ' Major Version
|
|---|
| 49 | ' Minor Version
|
|---|
| 50 | ' Build Number
|
|---|
| 51 | ' Revision
|
|---|
| 52 | '
|
|---|
| 53 | ' すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
|
|---|
| 54 | ' 既定値にすることができます:
|
|---|
| 55 | ' <Assembly: AssemblyVersion("1.0.*")>
|
|---|
| 56 |
|
|---|
| 57 | <Assembly: AssemblyVersion("0.2.3.5")>
|
|---|
| 58 | <Assembly: AssemblyFileVersion("0.2.3.5")>
|
|---|
| 59 |
|
|---|