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

Side by Side Diff: third_party/grpc/examples/csharp/route_guide/RouteGuideServer/Properties/AssemblyInfo.cs

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 using System.Reflection;
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 using System.Reflection;
6 using System.Runtime.CompilerServices; 2 using System.Runtime.CompilerServices;
7 using System.Runtime.InteropServices; 3 using System.Runtime.InteropServices;
8 4
9 // General Information about an assembly is controlled through the following 5 // General Information about an assembly is controlled through the following
10 // set of attributes. Change these attribute values to modify the information 6 // set of attributes. Change these attribute values to modify the information
11 // associated with an assembly. 7 // associated with an assembly.
12 [assembly: AssemblyTitle("LowLevel")] 8 [assembly: AssemblyTitle("RouteGuideServer")]
13 [assembly: AssemblyDescription("")] 9 [assembly: AssemblyDescription("")]
14 [assembly: AssemblyConfiguration("")] 10 [assembly: AssemblyConfiguration("")]
15 [assembly: AssemblyCompany("")] 11 [assembly: AssemblyCompany("")]
16 [assembly: AssemblyProduct("LowLevel")] 12 [assembly: AssemblyProduct("RouteGuideServer")]
17 [assembly: AssemblyCopyright("Copyright © 2013")] 13 [assembly: AssemblyCopyright("Copyright © 2015")]
18 [assembly: AssemblyTrademark("")] 14 [assembly: AssemblyTrademark("")]
19 [assembly: AssemblyCulture("")] 15 [assembly: AssemblyCulture("")]
20 16
21 // Setting ComVisible to false makes the types in this assembly not visible 17 // Setting ComVisible to false makes the types in this assembly not visible
22 // to COM components. If you need to access a type in this assembly from 18 // to COM components. If you need to access a type in this assembly from
23 // COM, set the ComVisible attribute to true on that type. 19 // COM, set the ComVisible attribute to true on that type.
24 [assembly: ComVisible(false)] 20 [assembly: ComVisible(false)]
25 21
26 // The following GUID is for the ID of the typelib if this project is exposed to COM 22 // The following GUID is for the ID of the typelib if this project is exposed to COM
27 [assembly: Guid("5bfd12c9-dfa1-4994-b31d-755f3e064640")] 23 [assembly: Guid("908bdeef-05cc-42bf-9498-c4c573df8925")]
28 24
29 // Version information for an assembly consists of the following four values: 25 // Version information for an assembly consists of the following four values:
30 // 26 //
31 // Major Version 27 // Major Version
32 // Minor Version 28 // Minor Version
33 // Build Number 29 // Build Number
34 // Revision 30 // Revision
35 // 31 //
36 // You can specify all the values or you can default the Build and Revision Numb ers 32 // You can specify all the values or you can default the Build and Revision Numb ers
37 // by using the '*' as shown below: 33 // by using the '*' as shown below:
38 // [assembly: AssemblyVersion("1.0.*")] 34 // [assembly: AssemblyVersion("1.0.*")]
39 [assembly: AssemblyVersion("1.0.0.0")] 35 [assembly: AssemblyVersion("1.0.0.0")]
40 [assembly: AssemblyFileVersion("1.0.0.0")] 36 [assembly: AssemblyFileVersion("1.0.0.0")]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698