| 1234567891011121314151617181920 |
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- // General Information about an assembly is controlled through the following
- // set of attributes. Change these attribute values to modify the information
- // associated with an assembly.
- [assembly: AssemblyTitle("3D Particles")]
- [assembly: AssemblyProduct("3D Particles")]
- [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.")]
- [assembly: AssemblyCompany("Microsoft Corporation")]
- [assembly: AssemblyCopyright("Copyright (C) Microsoft Corporation")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: AssemblyVersion("1.0.0.0")]
- //ComVisible is false for this component.
- [assembly: ComVisible(false)]
- [assembly: Guid("629653ba-afd4-4930-a797-a376d0dda68a")]
|