AssemblyInfo.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // AssemblyInfo.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System.Reflection;
  11. using System.Runtime.CompilerServices;
  12. using System.Runtime.InteropServices;
  13. #endregion
  14. // General Information about an assembly is controlled through the following
  15. // set of attributes. Change these attribute values to modify the information
  16. // associated with an assembly.
  17. [assembly: AssemblyTitle("Audio 3D")]
  18. [assembly: AssemblyProduct("Audio 3D")]
  19. [assembly: AssemblyDescription("This sample shows how to position sounds in 3D space, implementing panning, Doppler, and distance attenuation effects.")]
  20. [assembly: AssemblyCompany("Microsoft")]
  21. [assembly: AssemblyCopyright("Copyright © Microsoft 2007")]
  22. [assembly: AssemblyTrademark("")]
  23. [assembly: AssemblyCulture("")]
  24. // Version information for an assembly consists of the following four values:
  25. //
  26. // Major Version
  27. // Minor Version
  28. // Build Number
  29. // Revision
  30. //
  31. [assembly: AssemblyVersion("1.0.0.0")]