AssemblyInfo.cs 950 B

123456789101112131415161718192021222324
  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("Shatter Effect")]
  8. [assembly: AssemblyProduct("Shatter Effect")]
  9. [assembly: AssemblyDescription("This sample shows how you can apply an effect on any model in your game to shatter it apart. The effect is simulated with a vertex shader.")]
  10. [assembly: AssemblyCompany("Microsoft")]
  11. [assembly: AssemblyCopyright("Copyright © Microsoft")]
  12. [assembly: AssemblyTrademark("")]
  13. [assembly: AssemblyCulture("")]
  14. // Version information for an assembly consists of the following four values:
  15. //
  16. // Major Version
  17. // Minor Version
  18. // Build Number
  19. // Revision
  20. //
  21. [assembly: AssemblyVersion("1.0.0.0")]