1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) 2009-2014 Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 11 *---------------------------------------------------------------------------*/ 12 13 using System.Reflection; 14 using System.Runtime.CompilerServices; 15 using System.Runtime.InteropServices; 16 17 // General Information about an assembly is controlled through the following 18 // set of attributes. Change these attribute values to modify the information 19 // associated with an assembly. 20 [assembly: AssemblyTitle("CatLog")] 21 [assembly: AssemblyDescription("")] 22 [assembly: AssemblyConfiguration("")] 23 [assembly: AssemblyCompany("Microsoft")] 24 [assembly: AssemblyProduct("CatLog")] 25 [assembly: AssemblyCopyright("Copyright © Microsoft 2013")] 26 [assembly: AssemblyTrademark("")] 27 [assembly: AssemblyCulture("")] 28 29 // Setting ComVisible to false makes the types in this assembly not visible 30 // to COM components. If you need to access a type in this assembly from 31 // COM, set the ComVisible attribute to true on that type. 32 [assembly: ComVisible(false)] 33 34 // The following GUID is for the ID of the typelib if this project is exposed to COM 35 [assembly: Guid("f24ca3b3-1d67-4918-b506-d10e3765ab42")] 36 37 // Version information for an assembly consists of the following four values: 38 // 39 // Major Version 40 // Minor Version 41 // Build Number 42 // Revision 43 // 44 // You can specify all the values or you can default the Build and Revision Numbers 45 // by using the '*' as shown below: 46 // [assembly: AssemblyVersion("1.0.*")] 47 [assembly: AssemblyVersion("1.0.0.0")] 48 [assembly: AssemblyFileVersion("1.0.0.0")] 49