1 #include "stdafx.h" 2 3 // Copyright Paul A. Bristow & John Maddock 2009, 2010 4 // Use, modification and distribution are subject to the 5 // Boost Software License, Version 1.0. 6 // (See accompanying file LICENSE_1_0.txt 7 // or copy at http://www.boost.org/LICENSE_1_0.txt) 8 9 using namespace System; 10 using namespace System::Reflection; 11 using namespace System::Runtime::CompilerServices; 12 using namespace System::Runtime::InteropServices; 13 using namespace System::Security::Permissions; 14 15 // General Information about an assembly is controlled through the following set of attributes. 16 // Change these attribute values to modify the information associated with an assembly. 17 18 [assembly:AssemblyTitleAttribute("boost_math")]; 19 [assembly:AssemblyDescriptionAttribute("Math Toolkit")]; 20 [assembly:AssemblyConfigurationAttribute("")]; 21 [assembly:AssemblyCompanyAttribute("jmc")]; 22 [assembly:AssemblyProductAttribute("boost_math")]; 23 [assembly:AssemblyCopyrightAttribute("Copyright (c) jmc 2007 - 2010")]; 24 [assembly:AssemblyTrademarkAttribute("")]; 25 [assembly:AssemblyCultureAttribute("")]; 26 27 // 28 // Version information for an assembly consists of the following four values: 29 // 30 // Major Version 31 // Minor Version 32 // Build Number 33 // Revision 34 // 35 // You can specify all the value or you can default the Revision and Build Numbers 36 // by using the '*' as shown below: 37 38 [assembly:AssemblyVersionAttribute("1.1.*")]; 39 40 [assembly:ComVisible(false)]; 41 42 [assembly:CLSCompliantAttribute(true)]; 43 // Deprecated: 44 //[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)]; 45