~ubuntu-branches/ubuntu/karmic/ndesk-dbus/karmic

« back to all changes in this revision

Viewing changes to src/AssemblyInfo.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-10-16 11:52:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071016115232-fe3ejbyws97q4rf2
Tags: 0.6.0-1
* New upstream release.
* debian/control:
  + Update build dependencies.
* debian/rules:
  + Update for new upstream build system.
  + Call dh_clifixperms instead of manual find magic.
  + Bump clilibs to >= 0.6.0.
* debian/watch:
  + Update location.
* patches/01_pkg-config-library-path.dpatch:
  + Fix library path in the pkg-config file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright 2006 Alp Toker <alp@atoker.com>
2
 
// This software is made available under the MIT License
3
 
// See COPYING for details
4
 
 
5
 
using System.Reflection;
6
 
using System.Runtime.CompilerServices;
7
 
 
8
 
[assembly: AssemblyVersion("1.0.0")]
9
 
[assembly: AssemblyTitle ("NDesk.DBus")]
10
 
[assembly: AssemblyDescription ("D-Bus IPC protocol library and CLR binding")]
11
 
[assembly: AssemblyCopyright ("Copyright (C) Alp Toker")]
12
 
[assembly: AssemblyCompany ("NDesk")]
13
 
 
14
 
#if STRONG_NAME
15
 
[assembly: InternalsVisibleTo ("dbus-monitor, PublicKey=0024000004800000440000000602000000240000525341318001000011000000ffbfaa640454654de78297fde2d22dd4bc4b0476fa892c3f8575ad4f048ce0721ce4109f542936083bc4dd83be5f7f97")]
16
 
[assembly: InternalsVisibleTo ("NDesk.DBus.GLib, PublicKey=0024000004800000440000000602000000240000525341318001000011000000ffbfaa640454654de78297fde2d22dd4bc4b0476fa892c3f8575ad4f048ce0721ce4109f542936083bc4dd83be5f7f97")]
17
 
#else
18
 
[assembly: InternalsVisibleTo ("dbus-monitor")]
19
 
[assembly: InternalsVisibleTo ("NDesk.DBus.GLib")]
20
 
#endif