AssemblyInfo.cs 1.1 KB

1234567891011121314151617181920212223242526272829
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // AssemblyInfo.cs
  4. //
  5. // Microsoft Game Technology Group
  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("Triangle Picking")]
  16. [assembly: AssemblyProduct("Triangle Picking")]
  17. [assembly: AssemblyDescription("This sample extends the Picking sample with a more accurate picking algorithm, which tests against individual triangles that make up a mesh.")]
  18. [assembly: AssemblyCompany("Microsoft Corporation")]
  19. [assembly: AssemblyCopyright("Copyright © Microsoft 2008")]
  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("844372b8-9af2-48b5-bf2d-e3fc2f7335c1")]