mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2652 b08762b0-b915-fc4b-9d8c-17b2551a87ff
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
#include "stdafx.h"
|
|
|
|
using namespace System;
|
|
using namespace System::Reflection;
|
|
using namespace System::Runtime::CompilerServices;
|
|
using namespace System::Runtime::InteropServices;
|
|
using namespace System::Security::Permissions;
|
|
|
|
//
|
|
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
|
|
// アセンブリに関連付けられている情報を変更するには、
|
|
// これらの属性値を変更してください。
|
|
//
|
|
[assembly:AssemblyTitleAttribute("ResourceTransition")];
|
|
[assembly:AssemblyDescriptionAttribute("")];
|
|
[assembly:AssemblyConfigurationAttribute("")];
|
|
[assembly:AssemblyCompanyAttribute("任天堂株式会社")];
|
|
[assembly:AssemblyProductAttribute("ResourceTransition")];
|
|
[assembly:AssemblyCopyrightAttribute("Copyright (c) 任天堂株式会社 2008")];
|
|
[assembly:AssemblyTrademarkAttribute("")];
|
|
[assembly:AssemblyCultureAttribute("")];
|
|
|
|
//
|
|
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を
|
|
// 既定値にすることができます:
|
|
|
|
[assembly:AssemblyVersionAttribute("1.0.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)];
|
|
|
|
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
|