~ubuntu-branches/ubuntu/trusty/portmidi/trusty

« back to all changes in this revision

Viewing changes to pm_csharp/pm_managed/AssemblyInfo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Paul Brossier
  • Date: 2009-09-16 06:50:57 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090916065057-lz24lbrrygyev85b
Tags: 1:131-1
* New upstream version, uses epoch (closes: #501132)
* debian/watch: update to match new download location and version
  numbering (closes: #450055), but still fails due to zip format
* Add depends on quilt, move patches to debian/patches
* Add Homepage to debian/control
* debian/control: use ${binary:Version}, bump to S-V 3.8.3
* debian/compat: bump to 5
* debian/copyright: update to match license.txt and add missing copyrights
* debian/patches/02_pmlinuxalsa.diff: remove merged hunks
* debian/patches/04_ptlinux.diff: remove merged hunks
* debian/patches/05_makefile.diff: merge and link portmidi to porttime,
  thanks to Willem van Engen (closes: #515712)
* debian/rules: use pm_linux/Makefile, ship CHANGELOG.txt and make sure
  source and header files are not executable
* debian/README.source: refer to quilt documentation
* debian/libportmidi-dev.install: do not try to install unexisting files
* debian/patches/{06_pm_test_mm,07_pm_test_sysex,08_pm_test_qtest}.diff:
  get rid of missing include and parenthesis, fix long int formatting
* debian/rules: do not compress header files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "stdafx.h"
 
2
 
 
3
using namespace System;
 
4
using namespace System::Reflection;
 
5
using namespace System::Runtime::CompilerServices;
 
6
using namespace System::Runtime::InteropServices;
 
7
using namespace System::Security::Permissions;
 
8
 
 
9
//
 
10
// General Information about an assembly is controlled through the following
 
11
// set of attributes. Change these attribute values to modify the information
 
12
// associated with an assembly.
 
13
//
 
14
[assembly:AssemblyTitleAttribute("pm_managed")];
 
15
[assembly:AssemblyDescriptionAttribute("")];
 
16
[assembly:AssemblyConfigurationAttribute("")];
 
17
[assembly:AssemblyCompanyAttribute("Innovative Computer Solutions")];
 
18
[assembly:AssemblyProductAttribute("pm_managed")];
 
19
[assembly:AssemblyCopyrightAttribute("Copyright (c) Innovative Computer Solutions 2006")];
 
20
[assembly:AssemblyTrademarkAttribute("")];
 
21
[assembly:AssemblyCultureAttribute("")];
 
22
 
 
23
//
 
24
// Version information for an assembly consists of the following four values:
 
25
//
 
26
//      Major Version
 
27
//      Minor Version
 
28
//      Build Number
 
29
//      Revision
 
30
//
 
31
// You can specify all the value or you can default the Revision and Build Numbers
 
32
// by using the '*' as shown below:
 
33
 
 
34
[assembly:AssemblyVersionAttribute("1.0.*")];
 
35
 
 
36
[assembly:ComVisible(false)];
 
37
 
 
38
[assembly:CLSCompliantAttribute(true)];
 
39
 
 
40
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];