AssemblyInfo.cpp 1.5 KB

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