Version.cs 945 B

123456789101112131415161718192021222324252627
  1. // ----------------------------------------------------------
  2. // <copyright file="Version.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // ----------------------------------------------------------
  6. using System.Reflection;
  7. [assembly: AssemblyConfiguration("")]
  8. [assembly: AssemblyCompany("Microsoft")]
  9. [assembly: AssemblyProduct("Project Hawaii SDK 2.1")]
  10. [assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
  11. [assembly: AssemblyTrademark("")]
  12. [assembly: AssemblyCulture("")]
  13. // Version information for an assembly consists of the following four values:
  14. //
  15. // Major Version
  16. // Minor Version
  17. // Build Number
  18. // Revision
  19. //
  20. // You can specify all the values or you can default the Revision and Build Numbers
  21. // by using the '*' as shown below:
  22. [assembly: AssemblyVersion("2.1.0.0")]
  23. [assembly: AssemblyFileVersion("2.1.0.0")]