| 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 | 7 |
| 8 // General Information about an assembly is controlled through the following | 8 // General Information about an assembly is controlled through the following |
| 9 // set of attributes. Change these attribute values to modify the information | 9 // set of attributes. Change these attribute values to modify the information |
| 10 // associated with an assembly. | 10 // associated with an assembly. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // Major Version | 22 // Major Version |
| 23 // Minor Version | 23 // Minor Version |
| 24 // Revision | 24 // Revision |
| 25 // Build Number | 25 // Build Number |
| 26 // | 26 // |
| 27 // You can specify all the value or you can default the Revision and | 27 // You can specify all the value or you can default the Revision and |
| 28 // Build Numbers by using the '*' as shown below: | 28 // Build Numbers by using the '*' as shown below: |
| 29 [assembly: AssemblyVersion("1.0.*")] | 29 [assembly: AssemblyVersion("1.0.*")] |
| 30 | 30 |
| 31 [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")] | 31 [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")] |
| OLD | NEW |