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

Unified Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs

Issue 10758009: Native Client Visual Studio Add-in (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Style Fixed Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs
diff --git a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs
new file mode 100644
index 0000000000000000000000000000000000000000..5d4bdac59d61c2065acafd56d0cc564a0bb2dcf5
--- /dev/null
+++ b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/AssemblyInfo.cs
@@ -0,0 +1,35 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+//
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+//
+[assembly: AssemblyTitle("Native Client Visual Studio Add-in")]
+[assembly: AssemblyDescription("An add-in for Visual Studio aiding Native Client development")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("")]
elijahtaylor1 2012/07/11 20:56:18 Should we be filling in more information here? If
tysand 2012/07/12 23:56:15 Done.
+[assembly: AssemblyCopyright("")]
noelallen1 2012/07/11 22:16:46 Add Copyright & Company?
tysand 2012/07/12 23:56:15 Done.
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+//
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Revision
+// Build Number
+//
+// You can specify all the value or you can default the Revision and
+// Build Numbers by using the '*' as shown below:
+
+[assembly: AssemblyVersion("1.0.*")]
noelallen1 2012/07/11 22:16:46 How do you plan to update this?
tysand 2012/07/12 23:56:15 The Visual Studio functionality can be updated by
+
+[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")]

Powered by Google App Engine
This is Rietveld 408576698