AssemblyInfo.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  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. //Descriptive Assembly attributes
  15. [assembly: AssemblyTitle("Bloom Postprocess")]
  16. [assembly: AssemblyProduct("Bloom Postprocess")]
  17. [assembly: AssemblyDescription("This sample shows how to use bloom post-processing filters to add a glow effect over the top of an existing scene.")]
  18. [assembly: AssemblyCompany("Microsoft")]
  19. [assembly: AssemblyCopyright("Copyright © Microsoft 2007")]
  20. [assembly: AssemblyTrademark("")]
  21. [assembly: AssemblyCulture("")]
  22. [assembly: AssemblyVersion("1.0.0.0")]
  23. //ComVisible is false for this component.
  24. [assembly: ComVisible(false)]
  25. [assembly: Guid("01a21a09-e2a4-473d-bc16-d7f157cc1c78")]