AssemblyInfo.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. This software is subject to the license described in the License.txt file
  3. included with this software distribution. You may not use this file except in compliance
  4. with this license.
  5. Copyright (c) Dynastream Innovations Inc. 2013
  6. All rights reserved.
  7. */
  8. #include "stdafx.h"
  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
  16. // set of attributes. Change these attribute values to modify the information
  17. // associated with an assembly.
  18. //
  19. [assembly:AssemblyTitleAttribute("ANT+ Sensor Simulator")];
  20. [assembly:AssemblyDescriptionAttribute("")];
  21. [assembly:AssemblyConfigurationAttribute("")];
  22. [assembly:AssemblyCompanyAttribute("Dynastream Innovations Inc.")];
  23. [assembly:AssemblyProductAttribute("AJE")];
  24. [assembly:AssemblyCopyrightAttribute("Copyright (c) 2013")];
  25. [assembly:AssemblyTrademarkAttribute("")];
  26. [assembly:AssemblyCultureAttribute("")];
  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. [assembly:AssemblyVersionAttribute("2.0.00")];
  38. [assembly:ComVisible(false)];
  39. [assembly:CLSCompliantAttribute(true)];
  40. [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];