| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 using System.Reflection; | 5 using System.Reflection; |
| 6 using System.Runtime.CompilerServices; | 6 using System.Runtime.CompilerServices; |
| 7 using System.Runtime.InteropServices; | 7 using System.Runtime.InteropServices; |
| 8 | 8 |
| 9 // General Information about an assembly is controlled through the following | 9 // General Information about an assembly is controlled through the following |
| 10 // set of attributes. Change these attribute values to modify the information | 10 // set of attributes. Change these attribute values to modify the information |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // | 30 // |
| 31 // Major Version | 31 // Major Version |
| 32 // Minor Version | 32 // Minor Version |
| 33 // Build Number | 33 // Build Number |
| 34 // Revision | 34 // Revision |
| 35 // | 35 // |
| 36 // You can specify all the values or you can default the Build and Revision Numb
ers | 36 // You can specify all the values or you can default the Build and Revision Numb
ers |
| 37 // by using the '*' as shown below: | 37 // by using the '*' as shown below: |
| 38 [assembly: AssemblyVersion("1.0.0.0")] | 38 [assembly: AssemblyVersion("1.0.0.0")] |
| 39 [assembly: AssemblyFileVersion("1.0.0.0")] | 39 [assembly: AssemblyFileVersion("1.0.0.0")] |
| OLD | NEW |