[tasque/transition: 11/213] Setup common AssemblyInfo.cs.



commit 80e47bc10dca884c4957b46a29db053c8f2ae7cc
Author: Antonius Riha <antoniusriha gmail com>
Date:   Wed May 16 15:50:46 2012 +0200

    Setup common AssemblyInfo.cs.
    
    * so that all components share the same version number and other assembly info

 RtmNet/{ => Properties}/AssemblyInfo.cs |   21 ---------------------
 build/CommonAssemblyInfo.cs             |   16 ++++++++++++++++
 libtasque/Properties/AssemblyInfo.cs    |    8 ++++++++
 tasque/Properties/AssemblyInfo.cs       |    9 +++++++++
 4 files changed, 33 insertions(+), 21 deletions(-)
---
diff --git a/RtmNet/AssemblyInfo.cs b/RtmNet/Properties/AssemblyInfo.cs
similarity index 78%
rename from RtmNet/AssemblyInfo.cs
rename to RtmNet/Properties/AssemblyInfo.cs
index 218e2d5..806ebc5 100644
--- a/RtmNet/AssemblyInfo.cs
+++ b/RtmNet/Properties/AssemblyInfo.cs
@@ -1,8 +1,5 @@
 using System;
 using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Security;
-using System.Security.Permissions;
 using System.Runtime.InteropServices;
 
 //
@@ -12,25 +9,7 @@ using System.Runtime.InteropServices;
 //
 [assembly: AssemblyTitle("Rtm .Net Api Library")]
 [assembly: AssemblyDescription(".Net library for accessing rmilk.com Api functionality")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("tasque")]
 [assembly: AssemblyCopyright("See website http://live.gnome.org/Tasque";)]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-//
-// Version information for an assembly consists of the following four values:
-//
-//      Major Version
-//      Minor Version 
-//      Build Number
-//      Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers 
-// by using the '*' as shown below:
-
-[assembly: AssemblyVersion("0.1.0.*")]
 
 //
 // In order to sign your assembly you must specify a key to use. Refer to the 
diff --git a/build/CommonAssemblyInfo.cs b/build/CommonAssemblyInfo.cs
new file mode 100644
index 0000000..ad5d060
--- /dev/null
+++ b/build/CommonAssemblyInfo.cs
@@ -0,0 +1,16 @@
+using System.Reflection;
+
+// Information about this assembly is defined by the following attributes. 
+// Change them to the values specific to your project.
+
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Tasque")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
+// The form "{Major}.{Minor}.*" will automatically update the build and revision,
+// and "{Major}.{Minor}.{Build}.*" will update just the revision.
+
+[assembly: AssemblyVersion("0.1.10.*")]
\ No newline at end of file
diff --git a/libtasque/Properties/AssemblyInfo.cs b/libtasque/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..c40fb0b
--- /dev/null
+++ b/libtasque/Properties/AssemblyInfo.cs
@@ -0,0 +1,8 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+// Information about this assembly is defined by the following attributes. 
+// Change them to the values specific to your project.
+
+[assembly: AssemblyTitle("libtasque")]
+[assembly: AssemblyCopyright("MIT/X11")]
\ No newline at end of file
diff --git a/tasque/Properties/AssemblyInfo.cs b/tasque/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..c190803
--- /dev/null
+++ b/tasque/Properties/AssemblyInfo.cs
@@ -0,0 +1,9 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+// Information about this assembly is defined by the following attributes. 
+// Change them to the values specific to your project.
+
+[assembly: AssemblyTitle("tasque")]
+[assembly: AssemblyDescription("Simple Tasque Management")]
+[assembly: AssemblyCopyright("MIT/X11")]
\ No newline at end of file



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]