Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs

Issue 11145025: Only store major version of AddIn in VS project file (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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.
11 [assembly: AssemblyTitle("Native Client Visual Studio Add-in")] 11 [assembly: AssemblyTitle("Native Client Visual Studio Add-in")]
12 [assembly: AssemblyDescription("An add-in for Visual Studio aiding Native Client development")] 12 [assembly: AssemblyDescription("An add-in for Visual Studio aiding Native Client development")]
13 [assembly: AssemblyConfiguration("")] 13 [assembly: AssemblyConfiguration("")]
14 [assembly: AssemblyCompany("Google Inc.")] 14 [assembly: AssemblyCompany("Google Inc.")]
15 [assembly: AssemblyProduct("Native Client SDK Visual Studio Add-in")] 15 [assembly: AssemblyProduct("Native Client SDK Visual Studio Add-in")]
16 [assembly: AssemblyCopyright("Copyright © 2012 The Chromium Authors")] 16 [assembly: AssemblyCopyright("Copyright © 2012 The Chromium Authors")]
17 [assembly: AssemblyTrademark("")] 17 [assembly: AssemblyTrademark("")]
18 [assembly: AssemblyCulture("")] 18 [assembly: AssemblyCulture("")]
19 19
20 // Version information for an assembly consists of the following four values: 20 // Version information for an assembly consists of the following four values:
21 // 21 //
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 [assembly: AssemblyVersion("1.0.*")]
28 // Build Numbers by using the '*' as shown below:
29 [assembly: AssemblyVersion("1.0")]
30 [assembly: AssemblyFileVersion("1.0.*")]
31 28
32 // The following version is what we display as the version within visual studio 29 // The following version is what we display as the version within visual studio
33 [assembly: AssemblyInformationalVersion("1.0.svn")] 30 [assembly: AssemblyInformationalVersion("1.0.svn")]
34 31
35 [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")] 32 [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698