Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.ServiceModel « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b974f89c54826cd914137e7250c24d09bf6f86f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
2010-03-16  Jb Evain  <jbevain@novell.com>

	* net_2_1_*.dll.sources: rename to moonlight_*.dll.sources.

2010-03-15  Astushi Enomoto  <atsushi@ximian.com>

	* net_4_0_System.ServiceModel.dll.sources:
	  more types from Sys.SM.Web.dll in 4.0 profile here.

2010-03-15  Astushi Enomoto  <atsushi@ximian.com>

	* Dummy_2_1.cs : added cosmetic silverlight sdk compatibility stuff.

2010-03-11  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources,
	  net_2_1_raw_System.ServiceModel.dll.sources:
	  added XmlName.cs.

2010-02-19  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile: enable USE_DATA_CONTRACT_IMPORTER as
	  memorabilia.hardrock now works. (Will be removed when I remove
	  relevant code.)

2010-02-10  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile: sigh, just disable it. make dist is somehow broken.

2010-02-10  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile: does extra dist fail to accept *.xml ?

2010-02-10  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile: add test xml files to extra dist.

2010-02-08  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  renamed MetadataBundle.cs to MetadataSet.cs.

2010-02-05  Astushi Enomoto  <atsushi@ximian.com>

	* Dummy_2_1.cs : remove AuthenticationSchemes. It blocks MT support.

2010-02-04  Astushi Enomoto  <atsushi@ximian.com>

	* Dummy.cs, net_2_1_raw_System.ServiceModel.dll.sources : add some
	  classes out of dummy, for monotouch (hidden in 2.1 profile).

2010-02-04  Astushi Enomoto  <atsushi@ximian.com>

	* HTTP_listener_notes.txt: Fixed some wrong description, simplified
	  some, and updated some.

2010-02-04  Astushi Enomoto  <atsushi@ximian.com>

	* HTTP_listener_notes.txt: some notes updated.

2010-02-03  Astushi Enomoto  <atsushi@ximian.com>

	* HTTP_listener_notes.txt: I couldn't help but write about it to
	  not keep myself confused by this complicated stuff.

2010-01-20  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources: move back some FeatureBased
	  tests.

2010-01-18  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : added new security version types.

2010-01-15  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add SL config loader here
	  for easy debugging under 2.0 profile.

2010-01-13  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources :
	  add EndpointAddressBuilder.cs.

2010-01-13  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources :
	  add FaultContractInfo.cs.

2010-01-13  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources :
	  add HttpCookieContainerBindingElement.cs.

2010-01-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources : ended up to remove
	  *all* mannerless serialization tests.

2010-01-06  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources : ended up to remove
	  mannerless tests that block other tests.

2009-12-03  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  added HttpsTransportBindingElementTest.cs.

2009-11-26  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources : fix file name case,
	  which was not caught on windows.

2009-11-25  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources, Dummy_2_1.cs:
	  reflected a couple of SL3 updates.

2009-11-17  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_System.ServiceModel.dll.sources :
	  add binary message encoder support.

2009-11-12  Astushi Enomoto  <atsushi@ximian.com>

	* net_4_0_System.ServiceModel.dll.sources : 4.0 dll contains
	  syndication stuff (moved from Sys.SM.Web.dll).

2009-10-07  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_System.ServiceModel.dll.sources :
	  add IHttpCookieContainer.cs.

2009-10-02  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add VirtualPathExtension.cs.

2009-10-01  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  add ServiceContractGeneratorTest.cs.

2009-09-26  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_System.ServiceModel.dll.sources :
	  added Http[Request|Response]MessageProperty.cs. Looks like our
	  status pages are based on old 2.0 profile.

2009-09-15  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: remove WebServiceHelper.cs.

2009-09-14  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources: add MessagePropertiesTest.cs.

2009-09-02  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  add HttpRequestMessagePropertyTest.cs

2009-08-24  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: added 
	  DuplexClientRuntimeChannel.cs and CallbackInstanceContextProvider.cs.

2009-08-20  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add more named pipe files.

2009-08-20  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources: add OperationContextTest.cs.

2009-08-19  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add named pipe files.

2009-08-11  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add DefaultOperationInvoker.cs.

2009-08-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add ServiceProxyGenerator.cs.

2009-07-31  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add IPeerConnectorContract.cs.

2009-07-31  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources: add ServiceEndpointTest.cs.

2009-07-28  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add TransactionFlowAttribute.cs.

2009-07-23  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  split out binary frame manager class into separate file.

2009-07-21  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add TcpReplyChannel.

2009-07-20  Jb Evain  <jbevain@novell.com>

	* Makefile: filter the valid profile on the framework version,
	to make it easier to have custom variants.

2009-07-17  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: add TcpRequestChannel.

2009-07-14  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  add CallbackBehaviorAttributeTest.cs.

2009-07-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  Added new custom peer resolver files.

2009-07-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  add PeerNodeAddressTest.cs.

2009-06-25  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  add SessionInstanceContextProvider.cs.

2009-06-09  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources:
	  add ServiceThrottlingBehaviorTest.

2009-06-08  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: renamed a file.

2009-06-05  Sebastien Pouliot  <sebastien@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources: Remove 
	ClientAccessPolicy.cs, CrossDomainPolicy.cs and 
	CrossDomainAccessManager.cs since the code and checks is now done
	inside System.Windows.Browser.dll, by BrowserHttpWebRequest, for
	every non-site-or-origin web connection - i.e. http[s]

2009-05-26  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: cosmetic file renaming.

2009-05-25  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll_test.sources:
	  added PeerResolverSerializationTest.cs.

2009-05-15  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll_test.sources: added MessageFaultTest.cs.

2009-05-13  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile : remove xlinq dependency.

2009-04-28  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll_test.sources: added
	  BinaryMessageEncodingBindingElementTest.cs.

2009-04-21  Sebastien Pouliot  <sebastien@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources: Remove 
	MonoTODOAttribute since we can get it from mscorlib.dll

2009-04-20  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  added several Peer transport support files.
	* System.ServiceModel.dll_test.sources: added
	  NetPeerTcpBindingTest.cs and PeerTransportBindingElementTest.cs.

2009-04-08  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources:
	  added PeerTransportSecuritySettings.cs.
	* Makefile: use -r:System.Core in non-2.1 build too.

2009-04-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources: added NetTcpBindingTest.cs.

2009-04-07  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources: added IOnlineStatus.cs.

2009-03-05  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile : added /r:System.Xml.Linq in 2.1 too.

2009-03-04  Astushi Enomoto  <atsushi@ximian.com>

	* Makefile : add /r:System.Core in 2.1 build.

2009-03-04  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources :
	  added cross domain checker sources.

2009-02-19  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources,
	  net_2_1_raw_System.ServiceModel.dll.sources :
	  added CodeTryBlock.cs.

2009-01-22  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources :
	  added SilverlightClientConfigLoader.cs.

2009-01-14  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources,
	  net_2_1_raw_System.ServiceModel.dll.sources :
	  added missing exception types (corcompare work).

2009-01-14  Astushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources :
	  added ClientBase_InteractiveChannelInitializerTest.cs.

2009-01-07  Astushi Enomoto  <atsushi@ximian.com>

	* net_2_1_raw_System.ServiceModel.dll.sources : add OperationContext
	  and OperationContextScope to 2.1 build.

2008-09-12  Astushi Enomoto  <atsushi@ximian.com>
            Jb Evain  <jbevain@novell.com>

	* Makefile: support net_2_1_raw compilation profile.
	* net_2_1_raw_System.ServiceModel.dll.sources

	* *.cs: SL2 compilation support.

2008-05-22  Roei Erez  <roeie@mainsoft.com>
	* fix ContractDescription.GetContract implementation
	* Refactor Request processing
	* Add support for message inspectors
	* Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
	like: ReleaseServiceInstance, Open, Close...
	* Add relevant test cases.

2008-04-21  Igor Zelmanovich <igorz@mainsoft.com>

	* System.ServiceModel_test.dll.sources: Add ServiceDebugBehaviorTest.cs and
	ServiceMetadataBehaviorTest.cs.

2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* System.ServiceModel.dll.sources: added HttpChannelManager.cs

2008-04-14  Igor Zelmanovich <igorz@mainsoft.com>

	* System.ServiceModel_test.dll.sources: Add ExtensionCollectionTest.cs.

2008-04-13  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* added: System.ServiceModel_Test.csproj, visual studio tests project

2008-04-10  Eyal Alaluf <eyala@mainsoft.com>

	* System.ServiceModel.dll.sources, System.ServiceModel.csproj:
	  Moved System.ServiceModel.Dispatcher/DefaultMessageOperationFormatter.cs
	  to System.ServiceModel.Dispatcher/BaseMessagesFormatter.cs.
	  Removed System.ServiceModel.Description/ServiceModelInternalConverter.cs.

2008-04-01  Roei Erez <roeie@mainsoft.com>

	* System.ServiceModel_test_net_3_0.dll.config: Added configurations for new tests.

2008-04-01  Igor Zelmanovich <igorz@mainsoft.com>

	* System.ServiceModel_test.dll.sources: Add ServiceHostBaseTest.cs.

2008-03-27  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : add System.ServiceModel_test_net_3_0.dll.config to
	  EXTRA_DISTFILES too.

2008-03-27  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : include Test/config/* in EXTRA_DISTFILES to fix
	  nunit test failures.

2008-03-21  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : more EXTRA_DISTFILES.

2008-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : oops, wrong EXTRA_DISTFILES.

2008-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : add EXTRA_DISTFILES.

2008-02-28  Eyal Alaluf <eyala@mainsoft.com>

	* System.ServiceModel_test_net_3_0.dll.config: Add configurations for
	  testing ClientBase<T> ctors.

2008-02-27  Eyal Alaluf <eyala@mainsoft.com>

	* Makefile: Ignore common warnings including use of obsolete API (since
	  Mono.Security.* has several such warnings).

2007-12-05  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : added net_3_5 profile as a valid target.

2007-08-18 Marcos Cobena (marcoscobena@gmail.com)

	* System.ServiceModel_test.dll.sources: Updated with new tests for System.ServiceModel.PeerResolvers.
	* Test/System.ServiceModel.PeerResolvers/CustomPeerResolverServiceTest.cs: New bunch of tests.

2007-08-16 Marcos Cobena (marcoscobena@gmail.com)

	* System.ServiceModel.dll.sources: Updated with System.ServiceModel.PeerResolvers/PeerReferralPolicy.cs.
	* PeerReferralPolicy.cs: Moved and updated here from AllEnums.cs.
	* PeerResolverMode.cs: Updated API.
	* RefreshResult.cs: Updated API.
	* RegisterInfo.cs: Almost finished, minus HasBody().
	* AllEnums.cs: PeerReferralPolicy lives now inside System.ServiceModel.PeerResolvers.

2007-07-19 Marcos Cobena (marcoscobena@gmail.com)

	* PeerCustomResolverSettings.cs, PeerResolverMode.cs, PeerResolverSettings.cs, 
		PeerSecuritySettings.cs: New implementations.
	* System.ServiceModel.dll.sources, AllEnums.cs, Dummy.cs: Updated to added sources.
	* NetPeerTcpBinding.cs: Added support to new above implementations.

2007-07-18 Marcos Cobena (marcoscobena@gmail.com)

	* TcpChannelListener.cs, TcpDuplexSessionChannel.cs: Text messaging now works 
		(both Send() and Receive()), even mixing .NET version with Mono one.
	* TcpChannelListener.cs: By default, it uses BinaryMessageEncoder.		

2007-07-17 Marcos Cobena (marcoscobena@gmail.com)

	* DuplexSessionChannelBase.cs, TcpChannelListener.cs, TcpDuplexSessionChannel.cs, 
		TcpTransportBindingElement.cs: Thanks to Atsushi Eno, it starts messaging.

2007-07-12 Marcos Cobena (marcoscobena@gmail.com)

	* DuplexSessionChannelBase.cs, TcpChannelFactory.cs, TcpChannelListener.cs, 
		TcpDuplexSessionChannel.cs: Added new implementations.
	* NetTcpBinding.cs, TcpTransportBindingElement.cs: Modified to match new TCP implementations.
	* System.ServiceModel.dll.sources: Updated to last classes set.

2007-07-05  Atsushi Enomoto  <atsushi@ximian.com>

	Makefile : added -r:System.Messaging.dll

2007-06-28 Marcos Cobena (marcoscobena@gmail.com)

	* System.ServiceModel.dll.sources, System.ServiceModel\Dummy.cs : 
	Modified to match new files under System.ServiceModel.PeerResolvers.

2007-04-20  Atsushi Enomoto  <atsushi@ximian.com>

	Makefile : added ws-addr.xsd as a resource.

2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config.xml : updated config section types.

2007-03-05  Atsushi Enomoto  <atsushi@ximian.com>

	Makefile : added -r:Mono.Security.dll and some nowarns.

2007-02-27  Wade Berrier  <wberrier@novell.com>

	* Makefile: include resource files in EXTRA_DISTFILES

2006-10-13  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config2.cs, fixup-config2.xml :
	  It is used to add svc. -> SvcHttpHandler mapping in web.config.

2006-10-04  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Update.

2006-09-29  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Update.

2006-09-26  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Update.

2006-09-07  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel_test.dll.sources: Add WsdlExporterTest.cs

2006-07-21  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : it used to be referenced by S.IM.Selectors.dll.
	  Nowadays it references S.IM.Selectors.dll.

2006-07-13  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel_test.dll.sources: Add MetadataResolverTest.cs

2006-07-12  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Update for June CTP changes. Add
	EndpointAddress10.cs

2006-07-04  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : add path to referenced assemblies as gmcs always loads
	  them from the GAC.

2006-07-03  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Update for June CTP changes.

2006-07-03  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Add IMetadataExchange.cs and
	MetadataExchangeBinding.cs . Update to match changes in June CTP.

2006-06-30  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config.xml : updated to match June CTP config types.

2006-06-27  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config.xml : bindings section has binding sub sections.

2006-06-27  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config.cs : now it supports updating.
	* fixup-config.xml : "bindings" is in fact just a section.
	  MS bad naming on class.

2006-06-26  Atsushi Enomoto  <atsushi@ximian.com>

	* fixup-config.cs, fixup-config.xml : when you try configuration
	  support, you can run fixup-config.exe and then supplemental
	  config sections are added.

2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : remove extra option.

2006-06-12  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel.dll.sources: Add
	System.ServiceModel.Description/MetadataSectionSerializerBase.cs
	* System.ServiceModel_test.dll.sources: Add
	System.ServiceModel.Description/WsdlImporterTest.cs

2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : use Mono.CodeGeneration.

2006-04-26  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel_test.dll.sources : Add
	System.ServiceModel.Description/WebServiceHelper.cs .

2006-02-11  Ankit Jain  <jankit@novell.com>

	* System.ServiceModel_test.dll.sources : Add
	ServiceHostTest.cs and UriSchemeKeyedCollectionTest.cs 

2005-10-19  Atsushi Enomoto  <atsushi@ximian.com>

	* winfx.pub : new set of assembly, thus new public key.

2005-10-09  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : eliminated some warning noises.

2005-10-08  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : addded /r:System.Transactions.

2005-09-29  Duncan Mak  <duncan@novell.com>

	* Makefile (RESOURCE_FILES): Include
	resources/WS-Addressing.schema.
	(LIB_MCS_FLAGS): Add "/resource:" flag.

2005-09-29  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel_test.dll.sources : required for make run-test.

2005-09-29  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-29  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-29  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : reference to sys.configuration.dll.
	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : further regen.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-27  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : regenerated to add new files.

2005-09-27  Atsushi Enomoto  <atsushi@ximian.com>

	* System.ServiceModel.dll.sources : added CommunicationErrorEventArgs.

2005-09-27  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : so now update-dll-sources is common target to all libs.