~and471/+junk/do-with-docky

« back to all changes in this revision

Viewing changes to Do.Interface.Linux.Docky/AssemblyInfo.cs.in

  • Committer: rugby471 at gmail
  • Date: 2010-10-15 16:08:38 UTC
  • Revision ID: rugby471@gmail.com-20101015160838-z9m3utbf7bxzb5ty
reverted to before docky removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// AssemblyInfo.cs
 
2
//
 
3
// GNOME Do is the legal property of its developers. Please refer to the
 
4
// COPYRIGHT file distributed with this source distribution.
 
5
//
 
6
// This program is free software: you can redistribute it and/or modify
 
7
// it under the terms of the GNU General Public License as published by
 
8
// the Free Software Foundation, either version 3 of the License, or
 
9
// (at your option) any later version.
 
10
//
 
11
// This program is distributed in the hope that it will be useful,
 
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
// GNU General Public License for more details.
 
15
//
 
16
// You should have received a copy of the GNU General Public License
 
17
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
//
 
19
 
 
20
using System.Reflection;
 
21
using System.Runtime.CompilerServices;
 
22
 
 
23
// Information about this assembly is defined by the following
 
24
// attributes.
 
25
//
 
26
// change them to the information which is associated with the assembly
 
27
// you compile.
 
28
[assembly: AssemblyTitle("Do.Interface.Linux.Docky")]
 
29
[assembly: AssemblyDescription("Don't just search -- Docky!")]
 
30
[assembly: AssemblyConfiguration("")]
 
31
[assembly: AssemblyCompany("")]
 
32
[assembly: AssemblyProduct("gnome-do")]
 
33
[assembly: AssemblyCopyright("brought to you by David Siegel et al")]
 
34
[assembly: AssemblyTrademark("")]
 
35
[assembly: AssemblyCulture("")]
 
36
 
 
37
// The assembly version has following format:
 
38
//
 
39
// Major.Minor.Build.Revision
 
40
//
 
41
// You can specify all values by your own or you can build default build and revision
 
42
// numbers with the '*' character (the default):
 
43
[assembly: AssemblyVersion("@ABI_VERSION@.0.0")]
 
44
 
 
45
// The following attributes specify the key for the sign of your assembly. See the
 
46
// .NET Framework documentation for more information about signing.
 
47
// This is not required, if you don't want signing let these attributes like they're.
 
48
[assembly: AssemblyDelaySign(false)]
 
49
[assembly: AssemblyKeyFile("")]
 
50
 
 
51
namespace Do
 
52
{
 
53
        internal static class AssemblyInfo
 
54
        {
 
55
                public const string DisplayVersion = "@VERSION@";
 
56
                public const string VersionDetails = "@VERSION_INFO@";
 
57
                public const string LocaleDirectory = "@expanded_datadir@/locale";
 
58
        }
 
59
}
 
60