AssemblyInfo.cs 903 B

12345678910111213141516171819202122232425
  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("Shadow Mapping")]
  8. [assembly: AssemblyProduct("Shadow Mapping")]
  9. [assembly: AssemblyDescription("This sample shows you how to implement basic shadow mapping from a directional light")]
  10. [assembly: AssemblyCompany("Microsoft")]
  11. [assembly: AssemblyCopyright("Copyright © Microsoft 2008")]
  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")]