~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Startup/AssemblyInfo.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// <file>
 
2
//     <copyright see="prj:///doc/copyright.txt"/>
 
3
//     <license see="prj:///doc/license.txt"/>
 
4
//     <owner name="Mike Krger" email="mike@icsharpcode.net"/>
 
5
//     <version value="$version"/>
 
6
// </file>
 
7
 
 
8
using System.Reflection;
 
9
using System.Runtime.CompilerServices;
 
10
 
 
11
[assembly: AssemblyTitle("MonoDevelop")]
 
12
[assembly: AssemblyDescription("A full-featured IDE for Mono and Gtk#.")]
 
13
[assembly: AssemblyConfiguration("")]
 
14
[assembly: AssemblyCompany("")]
 
15
[assembly: AssemblyProduct("MonoDevelop")]
 
16
[assembly: AssemblyCopyright("(c) 2004 MonoDevelop Team and Mike Krueger 2000-2003")]
 
17
[assembly: AssemblyTrademark("")]
 
18
[assembly: AssemblyCulture("")]
 
19
[assembly: AssemblyVersion("1.9.2.0")]
 
20
[assembly: AssemblyDelaySign(false)]
 
21
[assembly: AssemblyKeyFile("")]
 
22