| 1234567891011121314151617181920212223242526272829 |
- #region File Description
- //-----------------------------------------------------------------------------
- // AssemblyInfo.cs
- //
- // Microsoft Game Technology Group
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- #endregion
- //Descriptive Assembly attributes
- [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")]
|