2009-06-12 Andrés G. Aragoneses <aaragoneses@novell.com>
[mono.git] / mcs / class / corlib / Assembly / ChangeLog
1 2009-06-12  Andrés G. Aragoneses  <aaragoneses@novell.com>
2
3         * AssemblyInfo.cs: Changing the public key, as we now use
4         mono-uia.snk.
5
6 2009-05-26  Andrés G. Aragoneses  <aaragoneses@novell.com>
7
8         * AssemblyInfo.cs: Add InternalsVisibleTo for MoonAtkBridge
9         under a MOON_A11Y_INTERNAL_HACK define.
10
11 2009-04-29  Chris Toshok  <toshok@ximian.com>
12
13         * AssemblyInfo.cs: in the 2.1 case we're InternalsVisibleTo
14         System.Windows.Browser
15
16 2009-04-22  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * AssemblyInfo.cs: allow System.ServiceModel.Web access to mscorlib
19         internals (e.g. non-generic System.Collections.*)
20
21 2009-04-21  Sebastien Pouliot  <sebastien@ximian.com>
22
23         * AssemblyInfo.cs: allow System.ServiceModel access to mscorlib
24         internals (e.g. non-generic System.Collections.*)
25
26 2009-04-16  Sebastien Pouliot  <sebastien@ximian.com>
27
28         * AssemblyInfo.cs: allow System, System.Xml and Mono.
29         CompilerServices.SymbolWriter access to mscorlib internals
30         for 2.1 (Moonlight) so they can access internalized types
31         like non-generic System.Collections
32
33 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
34
35         * AssemblyInfo.cs: allow System.Runtime.Serialization to see 
36         mscorlib's internals. Fix Encoding.get_CodeBase (and likely
37         others too)
38
39 2009-02-06  Jb Evain  <jbevain@novell.com>
40
41         * AssemblyInfo.cs: allow System.Net to see mscorlib's internals,
42         as it needs Thread.Interrupt.
43
44 2008-05-07  Sebastien Pouliot  <sebastien@ximian.com>
45
46         * AssemblyInfo.cs: Change InternalsVisibleTo on Mono.Moonlight to
47         a key we control.
48
49 2008-04-23  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
50
51         * AssemblyInfo.cs: Added missing attributes
52
53 2008-04-13  Jb Evain  <jbevain@novell.com>
54
55         * AssemblyInfo.cs: rename agmono to Mono.Moonlight
56         as a friend assembly for the 2.1 profile.
57         Merged from the Moonlight 2 branch.
58
59 2007-08-20  Jb Evain  <jbevain@novell.com>
60
61         * AssemblyInfo.cs: agclr doesn't need to
62         be friend anymore.
63
64 2007-08-20  Jb Evain  <jbevain@novell.com>
65
66         * AssemblyInfo.cs: System.Silverlight doesn't need to
67         be friend anymore.
68
69 2007-08-11  Miguel de Icaza  <miguel@novell.com>
70
71         * AssemblyInfo.cs: Also add agmono as a friend assembly (needed
72         for access to the AppDomain stuff).
73
74 2007-08-11  Jb Evain  <jbevain@novell.com>
75
76         * AssemblyInfo.cs: add agclr as a friend assembly
77
78 2007-08-11  Jb Evain  <jbevain@novell.com>
79
80         * AssemblyInfo.cs: add System.SilverLight as a friend assembly
81
82 2005-08-06  Gert Driesen  <drieseng@users.sourceforge.net>
83
84         * AssemblyInfo.cs: Fixed AssemblyDescription to match MS.NET.
85
86 2005-02-18  Raja R Harinath  <rharinath@novell.com>
87
88         * AssemblyInfo.cs [BOOTSTRAP_WITH_OLDLIB]: Disable SecurityPermission.
89
90 2005-01-24  Sebastien Pouliot  <sebastien@ximian.com>
91
92         * AssemblyInfo.cs: Add SkipVerification to assembly RequestMinimum
93         security permissions.
94
95 2004-11-25  Raja R Harinath  <rharinath@novell.com>
96
97         * Consts.cs (UnmanageType_80) [BOOTSTRAP_WITH_OLDLIB]: Update to
98         changed name of bootstrap-only constant.
99
100 2004-09-08  Miguel de Icaza  <miguel@ximian.com>
101
102         * Locale.cs: Added overload that calls String.Format.
103
104 2004-06-22  Raja R Harinath  <rharinath@novell.com>
105
106         Refine previous change to work with mcs 0.31.
107         * Consts.cs (UnmanagedType_80): While bootstrapping, refer to new
108         internal bootstrap-only define in UnmanagedType.
109
110 2004-06-18  Raja R Harinath  <rharinath@novell.com>
111
112         * Consts.cs (UnmanagedType_80): New constant.  Used to workaround
113         problems like in tests/test-272.cs.
114
115 2004-06-03  Raja R Harinath  <rharinath@novell.com>
116
117         * AssemblyInfo.cs: Don't sign if BOOTSTRAP_WITH_OLDLIB.
118
119 2004-05-29  Jackson Harper  <jackson@ximian.com>
120
121         * AssemblyInfo.cs: Sign corlib for net_2_0 now too.
122         
123 2004-05-26 Jordi Mas <jordi@ximian.com>
124
125         * AssemblyInfo.cs: fixes CS1024: Preprocessor directive expected
126         when compling with csc 
127         
128 2004-05-07  Raja R Harinath  <rharinath@novell.com>
129
130         * AssemblyInfo.cs (AssemblyDelaySign, AssemblyKeyFile): Disable
131         with BOOTSTRAP_WITH_OLDLIB.  Mono 0.31 runtime crashes on this.
132
133 2004-05-03 Lluis Sanches Gual  <lluis@ximian.com>
134
135         * Consts.cs: Added.
136
137 2004-04-29  Jackson Harper  <jackson@ximian.com>
138
139         * AssemblyInfo.cs: Set version number correctly for the bootstrap
140         corlib. For some reason setting key files does not work with gmcs
141         and the bootstrap corlib.
142         
143 2004-04-29  Jackson Harper  <jackson@ximian.com>
144
145         * AssemblyInfo.cs: Add 2.0 version attributes.
146         
147 2004-02-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
148
149         * AssemblyInfo.cs: Added missing attribute, commented
150           excess attributes, prepared signkey attributes
151
152 2004-02-04  Marek Safar <marek.safar@seznam.cz>
153
154         * AssemblyInfo.cs: corlib now has CLSCompliant attribute.
155
156 2003-11-12 Jackson Harper <jackson@ximian.com>
157
158         * AssemblyInfo.cs: Change assembly name to mscorlib
159         
160 2003-08-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
161
162         * Locale.cs: Added
163
164 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
165
166         * AssemblyInfo.cs: Added
167         * ChangeLog: Added