123456789101112131415161718192021222324252627 |
- // ----------------------------------------------------------
- // <copyright file="Version.cs" company="Microsoft">
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
- // ----------------------------------------------------------
- using System.Reflection;
- [assembly: AssemblyConfiguration("")]
- [assembly: AssemblyCompany("Microsoft")]
- [assembly: AssemblyProduct("Project Hawaii SDK 2.1")]
- [assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- // Version information for an assembly consists of the following four values:
- //
- // Major Version
- // Minor Version
- // Build Number
- // Revision
- //
- // You can specify all the values or you can default the Revision and Build Numbers
- // by using the '*' as shown below:
- [assembly: AssemblyVersion("2.1.0.0")]
- [assembly: AssemblyFileVersion("2.1.0.0")]
|