AssemblyInfo.cs 970 B

1234567891011121314151617181920
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. // General Information about an assembly is controlled through the following
  5. // set of attributes. Change these attribute values to modify the information
  6. // associated with an assembly.
  7. [assembly: AssemblyTitle("3D Particles")]
  8. [assembly: AssemblyProduct("3D Particles")]
  9. [assembly: AssemblyDescription("This sample improves on the Particle Sample by animating the particles in 3D entirely on the graphics processing unit (GPU), resulting in higher performance, even with a large number of particles.")]
  10. [assembly: AssemblyCompany("Microsoft Corporation")]
  11. [assembly: AssemblyCopyright("Copyright (C) Microsoft Corporation")]
  12. [assembly: AssemblyTrademark("")]
  13. [assembly: AssemblyCulture("")]
  14. [assembly: AssemblyVersion("1.0.0.0")]
  15. //ComVisible is false for this component.
  16. [assembly: ComVisible(false)]
  17. [assembly: Guid("629653ba-afd4-4930-a797-a376d0dda68a")]