~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/Newtonsoft.Json/Src/Newtonsoft.Json/Properties/AssemblyInfo.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region License
 
2
// Copyright (c) 2007 James Newton-King
 
3
//
 
4
// Permission is hereby granted, free of charge, to any person
 
5
// obtaining a copy of this software and associated documentation
 
6
// files (the "Software"), to deal in the Software without
 
7
// restriction, including without limitation the rights to use,
 
8
// copy, modify, merge, publish, distribute, sublicense, and/or sell
 
9
// copies of the Software, and to permit persons to whom the
 
10
// Software is furnished to do so, subject to the following
 
11
// conditions:
 
12
//
 
13
// The above copyright notice and this permission notice shall be
 
14
// included in all copies or substantial portions of the Software.
 
15
//
 
16
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
17
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
18
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
19
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 
20
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
21
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
22
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
23
// OTHER DEALINGS IN THE SOFTWARE.
 
24
#endregion
 
25
 
 
26
using System;
 
27
using System.Reflection;
 
28
using System.Runtime.CompilerServices;
 
29
using System.Runtime.InteropServices;
 
30
using System.Security;
 
31
 
 
32
// General Information about an assembly is controlled through the following 
 
33
// set of attributes. Change these attribute values to modify the information
 
34
// associated with an assembly.
 
35
#if WINDOWS_PHONE
 
36
[assembly: AssemblyTitle("Json.NET Windows Phone")]
 
37
#elif SILVERLIGHT
 
38
[assembly: AssemblyTitle("Json.NET Silverlight")]
 
39
#elif PocketPC
 
40
[assembly: AssemblyTitle("Json.NET Compact")]
 
41
#elif PORTABLE
 
42
[assembly: AssemblyTitle("Json.NET Portable")]
 
43
#elif NETFX_CORE
 
44
[assembly: AssemblyTitle("Json.NET WinRT")]
 
45
#elif NET20
 
46
[assembly: AssemblyTitle("Json.NET .NET 2.0")]
 
47
[assembly: AllowPartiallyTrustedCallers]
 
48
#elif NET35
 
49
[assembly: AssemblyTitle("Json.NET .NET 3.5")]
 
50
[assembly: AllowPartiallyTrustedCallers]
 
51
#else
 
52
[assembly: AssemblyTitle("Json.NET")]
 
53
[assembly: AllowPartiallyTrustedCallers]
 
54
#endif
 
55
 
 
56
#if !SIGNED
 
57
[assembly: InternalsVisibleTo("Newtonsoft.Json.Tests")]
 
58
#else
 
59
[assembly: InternalsVisibleTo("Newtonsoft.Json.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")]
 
60
#endif
 
61
 
 
62
[assembly: InternalsVisibleTo("Newtonsoft.Json.Dynamic, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cbd8d53b9d7de30f1f1278f636ec462cf9c254991291e66ebb157a885638a517887633b898ccbcf0d5c5ff7be85a6abe9e765d0ac7cd33c68dac67e7e64530e8222101109f154ab14a941c490ac155cd1d4fcba0fabb49016b4ef28593b015cab5937da31172f03f67d09edda404b88a60023f062ae71d0b2e4438b74cc11dc9")]
 
63
 
 
64
[assembly: AssemblyDescription("Json.NET is a popular high-performance JSON framework for .NET")]
 
65
[assembly: AssemblyConfiguration("")]
 
66
[assembly: AssemblyCompany("Newtonsoft")]
 
67
[assembly: AssemblyProduct("Json.NET")]
 
68
[assembly: AssemblyCopyright("Copyright � James Newton-King 2008")]
 
69
[assembly: AssemblyTrademark("")]
 
70
[assembly: AssemblyCulture("")]
 
71
 
 
72
#if !PORTABLE
 
73
// Setting ComVisible to false makes the types in this assembly not visible 
 
74
// to COM componenets.  If you need to access a type in this assembly from 
 
75
// COM, set the ComVisible attribute to true on that type.
 
76
[assembly: ComVisible(false)]
 
77
 
 
78
// The following GUID is for the ID of the typelib if this project is exposed to COM
 
79
[assembly: Guid("9ca358aa-317b-4925-8ada-4a29e943a363")]
 
80
#endif
 
81
 
 
82
// Version information for an assembly consists of the following four values:
 
83
//
 
84
//      Major Version
 
85
//      Minor Version 
 
86
//      Build Number
 
87
//      Revision
 
88
//
 
89
// You can specify all the values or you can default the Revision and Build Numbers 
 
90
// by using the '*' as shown below:
 
91
[assembly: AssemblyVersion("4.5.0.0")]
 
92
#if !PocketPC
 
93
[assembly: AssemblyFileVersion("4.5.11.15520")]
 
94
#endif
 
95
 
 
96
[assembly: CLSCompliant(true)]