~ubuntu-branches/ubuntu/trusty/rhash/trusty

« back to all changes in this revision

Viewing changes to bindings/mono/AssemblyInfo.cs

  • Committer: Package Import Robot
  • Author(s): Aleksey Kravchenko
  • Date: 2013-09-16 19:48:55 UTC
  • mfrom: (1.2.1) (16.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130916194855-sengvtinypyl41ld
Tags: 1.3.0-1
* New upstream release version 1.3.0
 - switched the package back to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file is a part of Mono Bindings for Librhash
3
 
 * Copyright (c) 2011-2012, Sergey Basalaev <sbasalaev@gmail.com>
4
 
 * Librhash is (c) 2011-2012, Aleksey Kravchenko <rhash.admin@gmail.com>
5
 
 * 
6
 
 * Permission is hereby granted, free of charge,  to any person obtaining a copy
7
 
 * of this software and associated documentation files (the "Software"), to deal
8
 
 * in the Software without restriction,  including without limitation the rights
9
 
 * to  use,  copy,  modify,  merge, publish, distribute, sublicense, and/or sell
10
 
 * copies  of  the Software,  and  to permit  persons  to whom  the Software  is
11
 
 * furnished to do so.
12
 
 * 
13
 
 * This library  is distributed  in the hope that it will be useful, but WITHOUT
14
 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15
 
 * FOR A PARTICULAR PURPOSE. Use it at your own risk!
16
 
 */
17
 
 
18
 
using System.Reflection;
19
 
using System.Runtime.CompilerServices;
20
 
 
21
 
// Information about this assembly is defined by the following attributes. 
22
 
// Change them to the values specific to your project.
23
 
 
24
 
[assembly: AssemblyTitle("RHash")]
25
 
[assembly: AssemblyDescription(".NET/Mono bindings for librhash")]
26
 
[assembly: AssemblyConfiguration("")]
27
 
[assembly: AssemblyCompany("")]
28
 
[assembly: AssemblyProduct("")]
29
 
[assembly: AssemblyCopyright("(c) 2011, Sergey Basalaev")]
30
 
[assembly: AssemblyTrademark("")]
31
 
[assembly: AssemblyCulture("")]
32
 
 
33
 
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
34
 
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
35
 
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
36
 
 
37
 
[assembly: AssemblyVersion("1.0.1.1")]
38
 
 
39
 
// The following attributes are used to specify the signing key for the assembly, 
40
 
// if desired. See the Mono documentation for more information about signing.
41
 
 
42
 
[assembly: AssemblyDelaySign(false)]
43
 
//[assembly: AssemblyKeyFile("RHash.snk")]
44