This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitignore
959 lines (909 loc) · 41.1 KB
/
.gitignore
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
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
# Global ignores
*~
*.pyc
*.pidb
*.userprefs
*.usertasks
*.swp
*.suo
*.csproj.user
Backup*/
obj/
bin/
# /
/*.userprefs
/*.usertasks
/*.diff
/*.patch
# spec's
AtspiUiaSource/data/atspiuiasource-Fedora_12.spec
AtspiUiaSource/data/atspiuiasource-Fedora_13.spec
UIAutomation/data/mono-uia-Fedora_12.spec
UIAutomation/data/mono-uia-Fedora_13.spec
UIAutomation/data/mono-uia-openSUSE_11.2.spec
UIAutomation/data/mono-uia-openSUSE_11.3.spec
UIAutomationWinforms/data/uiautomationwinforms-Fedora_12.spec
UIAutomationWinforms/data/uiautomationwinforms-Fedora_13.spec
UiaAtkBridge/data/uiaatkbridge-Fedora_12.spec
UiaAtkBridge/data/uiaatkbridge-Fedora_13.spec
UiaDbus/data/uiadbus-Fedora_12.spec
UiaDbus/data/uiadbus-Fedora_13.spec
# /test/samples/moonlight/
/test/samples/moonlight/Button/AppManifest.xaml
/test/samples/moonlight/Button/App.xaml.g.cs
/test/samples/moonlight/Button/ButtonSample.dll
/test/samples/moonlight/Button/ButtonSample.dll.mdb
/test/samples/moonlight/Button/ButtonSample.g.resources
/test/samples/moonlight/Button/ButtonSample.html
/test/samples/moonlight/Button/ButtonSample.xap
/test/samples/moonlight/Button/Page.xaml.g.cs
/test/samples/moonlight/CheckBox/AppManifest.xaml
/test/samples/moonlight/CheckBox/App.xaml.g.cs
/test/samples/moonlight/CheckBox/CheckBoxSample.dll
/test/samples/moonlight/CheckBox/CheckBoxSample.dll.mdb
/test/samples/moonlight/CheckBox/CheckBoxSample.g.resources
/test/samples/moonlight/CheckBox/CheckBoxSample.html
/test/samples/moonlight/CheckBox/CheckBoxSample.xap
/test/samples/moonlight/CheckBox/Page.xaml.g.cs
/test/samples/moonlight/ComboBox/AppManifest.xaml
/test/samples/moonlight/ComboBox/App.xaml.g.cs
/test/samples/moonlight/ComboBox/ComboBoxSample.dll
/test/samples/moonlight/ComboBox/ComboBoxSample.dll.mdb
/test/samples/moonlight/ComboBox/ComboBoxSample.g.resources
/test/samples/moonlight/ComboBox/ComboBoxSample.html
/test/samples/moonlight/ComboBox/ComboBoxSample.xap
/test/samples/moonlight/ComboBox/Page.xaml.g.cs
/test/samples/moonlight/DataGrid/App.xaml.g.cs
/test/samples/moonlight/DataGrid/AppManifest.xaml
/test/samples/moonlight/DataGrid/DataGridSample.dll
/test/samples/moonlight/DataGrid/DataGridSample.dll.mdb
/test/samples/moonlight/DataGrid/DataGridSample.g.resources
/test/samples/moonlight/DataGrid/DataGridSample.html
/test/samples/moonlight/DataGrid/DataGridSample.xap
/test/samples/moonlight/DataGrid/Page.xaml.g.cs
/test/samples/moonlight/DataGrid/System.Windows.Controls.Data.dll
/test/samples/moonlight/DataGrid/System.Windows.Controls.dll
/test/samples/moonlight/GridSplitter/AppManifest.xaml
/test/samples/moonlight/GridSplitter/App.xaml.g.cs
/test/samples/moonlight/GridSplitter/GridSplitterSample.dll
/test/samples/moonlight/GridSplitter/GridSplitterSample.dll.mdb
/test/samples/moonlight/GridSplitter/GridSplitterSample.g.resources
/test/samples/moonlight/GridSplitter/GridSplitterSample.html
/test/samples/moonlight/GridSplitter/GridSplitterSample.xap
/test/samples/moonlight/GridSplitter/Page.xaml.g.cs
/test/samples/moonlight/GridSplitter/System.Windows.Controls.dll
/test/samples/moonlight/HyperlinkButton/AppManifest.xaml
/test/samples/moonlight/HyperlinkButton/App.xaml.g.cs
/test/samples/moonlight/HyperlinkButton/HyperlinkButtonSample.dll
/test/samples/moonlight/HyperlinkButton/HyperlinkButtonSample.dll.mdb
/test/samples/moonlight/HyperlinkButton/HyperlinkButtonSample.g.resources
/test/samples/moonlight/HyperlinkButton/HyperlinkButtonSample.html
/test/samples/moonlight/HyperlinkButton/HyperlinkButtonSample.xap
/test/samples/moonlight/HyperlinkButton/Page.xaml.g.cs
/test/samples/moonlight/Image/AppManifest.xaml
/test/samples/moonlight/Image/App.xaml.g.cs
/test/samples/moonlight/Image/ImageSample.dll
/test/samples/moonlight/Image/ImageSample.dll.mdb
/test/samples/moonlight/Image/ImageSample.g.resources
/test/samples/moonlight/Image/ImageSample.html
/test/samples/moonlight/Image/ImageSample.xap
/test/samples/moonlight/Image/Page.xaml.g.cs
/test/samples/moonlight/ListBox/AppManifest.xaml
/test/samples/moonlight/ListBox/App.xaml.g.cs
/test/samples/moonlight/ListBox/ListBoxSample.dll
/test/samples/moonlight/ListBox/ListBoxSample.dll.mdb
/test/samples/moonlight/ListBox/ListBoxSample.g.resources
/test/samples/moonlight/ListBox/ListBoxSample.html
/test/samples/moonlight/ListBox/ListBoxSample.xap
/test/samples/moonlight/ListBox/Page.xaml.g.cs
/test/samples/moonlight/MediaElement/AppManifest.xaml
/test/samples/moonlight/MediaElement/App.xaml.g.cs
/test/samples/moonlight/MediaElement/MediaElementSample.dll
/test/samples/moonlight/MediaElement/MediaElementSample.dll.mdb
/test/samples/moonlight/MediaElement/MediaElementSample.g.resources
/test/samples/moonlight/MediaElement/MediaElementSample.html
/test/samples/moonlight/MediaElement/MediaElementSample.xap
/test/samples/moonlight/MediaElement/Page.xaml.g.cs
/test/samples/moonlight/MultiScaleImage/AppManifest.xaml
/test/samples/moonlight/MultiScaleImage/App.xaml.g.cs
/test/samples/moonlight/MultiScaleImage/MultiScaleImageSample.dll
/test/samples/moonlight/MultiScaleImage/MultiScaleImageSample.dll.mdb
/test/samples/moonlight/MultiScaleImage/MultiScaleImageSample.g.resources
/test/samples/moonlight/MultiScaleImage/MultiScaleImageSample.html
/test/samples/moonlight/MultiScaleImage/MultiScaleImageSample.xap
/test/samples/moonlight/MultiScaleImage/Page.xaml.g.cs
/test/samples/moonlight/PasswordBox/AppManifest.xaml
/test/samples/moonlight/PasswordBox/App.xaml.g.cs
/test/samples/moonlight/PasswordBox/Page.xaml.g.cs
/test/samples/moonlight/PasswordBox/PasswordBoxSample.dll
/test/samples/moonlight/PasswordBox/PasswordBoxSample.dll.mdb
/test/samples/moonlight/PasswordBox/PasswordBoxSample.g.resources
/test/samples/moonlight/PasswordBox/PasswordBoxSample.html
/test/samples/moonlight/PasswordBox/PasswordBoxSample.xap
/test/samples/moonlight/ProgressBar/AppManifest.xaml
/test/samples/moonlight/ProgressBar/App.xaml.g.cs
/test/samples/moonlight/ProgressBar/Page.xaml.g.cs
/test/samples/moonlight/ProgressBar/ProgressBarSample.dll
/test/samples/moonlight/ProgressBar/ProgressBarSample.dll.mdb
/test/samples/moonlight/ProgressBar/ProgressBarSample.g.resources
/test/samples/moonlight/ProgressBar/ProgressBarSample.html
/test/samples/moonlight/ProgressBar/ProgressBarSample.xap
/test/samples/moonlight/RadioButton/AppManifest.xaml
/test/samples/moonlight/RadioButton/App.xaml.g.cs
/test/samples/moonlight/RadioButton/Page.xaml.g.cs
/test/samples/moonlight/RadioButton/RadioButtonSample.dll
/test/samples/moonlight/RadioButton/RadioButtonSample.dll.mdb
/test/samples/moonlight/RadioButton/RadioButtonSample.g.resources
/test/samples/moonlight/RadioButton/RadioButtonSample.html
/test/samples/moonlight/RadioButton/RadioButtonSample.xap
/test/samples/moonlight/RepeatButton/AppManifest.xaml
/test/samples/moonlight/RepeatButton/App.xaml.g.cs
/test/samples/moonlight/RepeatButton/Page.xaml.g.cs
/test/samples/moonlight/RepeatButton/RepeatButtonSample.dll
/test/samples/moonlight/RepeatButton/RepeatButtonSample.dll.mdb
/test/samples/moonlight/RepeatButton/RepeatButtonSample.g.resources
/test/samples/moonlight/RepeatButton/RepeatButtonSample.html
/test/samples/moonlight/RepeatButton/RepeatButtonSample.xap
/test/samples/moonlight/ScrollBar/AppManifest.xaml
/test/samples/moonlight/ScrollBar/App.xaml.g.cs
/test/samples/moonlight/ScrollBar/Page.xaml.g.cs
/test/samples/moonlight/ScrollBar/ScrollBarSample.dll
/test/samples/moonlight/ScrollBar/ScrollBarSample.dll.mdb
/test/samples/moonlight/ScrollBar/ScrollBarSample.g.resources
/test/samples/moonlight/ScrollBar/ScrollBarSample.html
/test/samples/moonlight/ScrollBar/ScrollBarSample.xap
/test/samples/moonlight/ScrollViewer/AppManifest.xaml
/test/samples/moonlight/ScrollViewer/App.xaml.g.cs
/test/samples/moonlight/ScrollViewer/Page.xaml.g.cs
/test/samples/moonlight/ScrollViewer/ScrollViewerSample.dll
/test/samples/moonlight/ScrollViewer/ScrollViewerSample.dll.mdb
/test/samples/moonlight/ScrollViewer/ScrollViewerSample.g.resources
/test/samples/moonlight/ScrollViewer/ScrollViewerSample.html
/test/samples/moonlight/ScrollViewer/ScrollViewerSample.xap
/test/samples/moonlight/Slider/AppManifest.xaml
/test/samples/moonlight/Slider/App.xaml.g.cs
/test/samples/moonlight/Slider/Page.xaml.g.cs
/test/samples/moonlight/Slider/SliderSample.dll
/test/samples/moonlight/Slider/SliderSample.dll.mdb
/test/samples/moonlight/Slider/SliderSample.g.resources
/test/samples/moonlight/Slider/SliderSample.html
/test/samples/moonlight/Slider/SliderSample.xap
/test/samples/moonlight/TextBlock/AppManifest.xaml
/test/samples/moonlight/TextBlock/App.xaml.g.cs
/test/samples/moonlight/TextBlock/Page.xaml.g.cs
/test/samples/moonlight/TextBlock/TextBlockSample.dll
/test/samples/moonlight/TextBlock/TextBlockSample.dll.mdb
/test/samples/moonlight/TextBlock/TextBlockSample.g.resources
/test/samples/moonlight/TextBlock/TextBlockSample.html
/test/samples/moonlight/TextBlock/TextBlockSample.xap
/test/samples/moonlight/TextBox/AppManifest.xaml
/test/samples/moonlight/TextBox/App.xaml.g.cs
/test/samples/moonlight/TextBox/Page.xaml.g.cs
/test/samples/moonlight/TextBox/TextBoxSample.dll
/test/samples/moonlight/TextBox/TextBoxSample.dll.mdb
/test/samples/moonlight/TextBox/TextBoxSample.g.resources
/test/samples/moonlight/TextBox/TextBoxSample.html
/test/samples/moonlight/TextBox/TextBoxSample.xap
/test/samples/moonlight/Thumb/AppManifest.xaml
/test/samples/moonlight/Thumb/App.xaml.g.cs
/test/samples/moonlight/Thumb/Page.xaml.g.cs
/test/samples/moonlight/Thumb/ThumbSample.dll
/test/samples/moonlight/Thumb/ThumbSample.dll.mdb
/test/samples/moonlight/Thumb/ThumbSample.g.resources
/test/samples/moonlight/Thumb/ThumbSample.html
/test/samples/moonlight/Thumb/ThumbSample.xap
/test/samples/moonlight/ToggleButton/AppManifest.xaml
/test/samples/moonlight/ToggleButton/App.xaml.g.cs
/test/samples/moonlight/ToggleButton/Page.xaml.g.cs
/test/samples/moonlight/ToggleButton/ToggleButtonSample.dll
/test/samples/moonlight/ToggleButton/ToggleButtonSample.dll.mdb
/test/samples/moonlight/ToggleButton/ToggleButtonSample.g.resources
/test/samples/moonlight/ToggleButton/ToggleButtonSample.html
/test/samples/moonlight/ToggleButton/ToggleButtonSample.xap
# /UIAutomation/
/UIAutomation/configure
/UIAutomation/Makefile
/UIAutomation/Makefile.in
/UIAutomation/config.log
/UIAutomation/bin
/UIAutomation/aclocal.m4
/UIAutomation/install-sh
/UIAutomation/config.status
/UIAutomation/missing
/UIAutomation/autom4te.cache
/UIAutomation/*.userprefs
/UIAutomation/mono-uia-*.tar.gz
# /UIAutomation/UIAutomationBridge/
/UIAutomation/UIAutomationBridge/Makefile
/UIAutomation/UIAutomationBridge/Makefile.in
/UIAutomation/UIAutomationBridge/*.pidb
/UIAutomation/UIAutomationBridge/*.usertasks
/UIAutomation/UIAutomationBridge/*.userprefs
/UIAutomation/UIAutomationBridge/TestResult-net_3_0.*
/UIAutomation/UIAutomationBridge/*.dll
/UIAutomation/UIAutomationBridge/*.dll.mdb
/UIAutomation/UIAutomationBridge/test-results
/UIAutomation/UIAutomationBridge/AssemblyInfo.cs
# /UIAutomation/UIAutomationClient/
/UIAutomation/UIAutomationClient/Makefile
/UIAutomation/UIAutomationClient/Makefile.in
/UIAutomation/UIAutomationClient/AssemblyInfo.cs
/UIAutomation/UIAutomationClient/*.pidb
/UIAutomation/UIAutomationClient/*.usertasks
/UIAutomation/UIAutomationClient/*.userprefs
# /UIAutomation/UIAutomationClientTests
/UIAutomation/UIAutomationClientTests/Makefile
/UIAutomation/UIAutomationClientTests/Makefile.in
/UIAutomation/UIAutomationClientTests/*.userprefs
/UIAutomation/UIAutomationClientTests/SampleForm/bin
/UIAutomation/UIAutomationClientTests/SampleForm/Makefile
/UIAutomation/UIAutomationClientTests/SampleForm/Makefile.in
/UIAutomation/UIAutomationClientTests/SampleForm/*.pidb
/UIAutomation/UIAutomationClientTests/SampleForm/*.resources
/UIAutomation/UIAutomationClientTests/SampleForm/Properties/*.resources
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/bin
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/Makefile
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/Makefile.in
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/*.pidb
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/swfclienttest.sh
/UIAutomation/UIAutomationClientTests/AtspiUiaClientTests/bin
/UIAutomation/UIAutomationClientTests/AtspiUiaClientTests/Makefile
/UIAutomation/UIAutomationClientTests/AtspiUiaClientTests/Makefile.in
/UIAutomation/UIAutomationClientTests/AtspiUiaClientTests/atspiuiaclienttest.sh
/UIAutomation/UIAutomationClientTests/GtkForm/bin
/UIAutomation/UIAutomationClientTests/GtkForm/Makefile
/UIAutomation/UIAutomationClientTests/GtkForm/Makefile.in
/UIAutomation/UIAutomationClientTests/SampleForm/obj/
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/obj/
/UIAutomation/UIAutomationClientTests/UIAutomationClientTests/test-results/
# /UIAutomation/UIAutomationSource/
/UIAutomation/UIAutomationSource/Makefile
/UIAutomation/UIAutomationSource/Makefile.in
/UIAutomation/UIAutomationSource/AssemblyInfo.cs
/UIAutomation/UIAutomationSource/*.pidb
/UIAutomation/UIAutomationSource/*.usertasks
/UIAutomation/UIAutomationSource/*.userprefs
# /UIAutomation/UIAutomationProvider/
/UIAutomation/UIAutomationProvider/Makefile
/UIAutomation/UIAutomationProvider/Makefile.in
/UIAutomation/UIAutomationProvider/*.pidb
/UIAutomation/UIAutomationProvider/*.usertasks
/UIAutomation/UIAutomationProvider/*.userprefs
/UIAutomation/UIAutomationProvider/TestResult-net_3_0.*
/UIAutomation/UIAutomationProvider/*.dll
/UIAutomation/UIAutomationProvider/*.dll.mdb
/UIAutomation/UIAutomationProvider/test-results
/UIAutomation/UIAutomationProvider/AssemblyInfo.cs
# /UIAutomation/UIAutomationProvider/Test/
/UIAutomation/UIAutomationProvider/Test/bin
/UIAutomation/UIAutomationProvider/Test/obj
/UIAutomation/UIAutomationProvider/Test/*.user
/UIAutomation/UIAutomationProvider/Test/*.suo
# /UIAutomation/UIAutomationTypes/
/UIAutomation/UIAutomationTypes/Makefile
/UIAutomation/UIAutomationTypes/Makefile.in
/UIAutomation/UIAutomationTypes/*.pidb
/UIAutomation/UIAutomationTypes/*.usertasks
/UIAutomation/UIAutomationTypes/*.userprefs
/UIAutomation/UIAutomationTypes/TestResult-net_3_0.*
/UIAutomation/UIAutomationTypes/*.dll
/UIAutomation/UIAutomationTypes/*.dll.mdb
/UIAutomation/UIAutomationTypes/test-results
/UIAutomation/UIAutomationTypes/AssemblyInfo.cs
# /UIAutomation/UIAutomationTypes/Test/
/UIAutomation/UIAutomationTypes/Test/bin
/UIAutomation/UIAutomationTypes/Test/obj
/UIAutomation/UIAutomationTypes/Test/*.user
/UIAutomation/UIAutomationTypes/Test/*.suo
# /UIAutomation/WindowsBase/
/UIAutomation/WindowsBase/Makefile
/UIAutomation/WindowsBase/Makefile.in
/UIAutomation/WindowsBase/AssemblyInfo.cs
# /UIAutomation/build/common/
/UIAutomation/build/common/Consts.cs
# /UIAutomation/data/
/UIAutomation/data/Makefile
/UIAutomation/data/Makefile.in
/UIAutomation/data/mono-uia.pc
/UIAutomation/data/mono-uia.pc.in
/UIAutomation/data/mono-uia.spec
# /UIAutomationWinforms/
/UIAutomationWinforms/*.userprefs
/UIAutomationWinforms/*.usertasks
/UIAutomationWinforms/Makefile.in
/UIAutomationWinforms/configure
/UIAutomationWinforms/config.log
/UIAutomationWinforms/config.status
/UIAutomationWinforms/autom4te.cache
/UIAutomationWinforms/missing
/UIAutomationWinforms/Makefile
/UIAutomationWinforms/aclocal.m4
/UIAutomationWinforms/install-sh
/UIAutomationWinforms/intltool-update
/UIAutomationWinforms/intltool-update.in
/UIAutomationWinforms/intltool-merge
/UIAutomationWinforms/intltool-merge.in
/UIAutomationWinforms/intltool-extract
/UIAutomationWinforms/intltool-extract.in
# /UIAutomationWinforms/UIAutomationWinforms/
/UIAutomationWinforms/UIAutomationWinforms/bin
/UIAutomationWinforms/UIAutomationWinforms/*.pidb
/UIAutomationWinforms/UIAutomationWinforms/Makefile
/UIAutomationWinforms/UIAutomationWinforms/Makefile.in
/UIAutomationWinforms/UIAutomationWinforms/*.pc
/UIAutomationWinforms/UIAutomationWinforms/Globals.cs
# /UIAutomationWinforms/UIAutomationWinforms/Mono.UIAutomation.Winforms/
/UIAutomationWinforms/UIAutomationWinforms/Mono.UIAutomation.Winforms/bin
/UIAutomationWinforms/UIAutomationWinforms/Mono.UIAutomation.Winforms/*.pidb
# /UIAutomationWinforms/UIAutomationWinformsTests/
/UIAutomationWinforms/UIAutomationWinformsTests/bin
/UIAutomationWinforms/UIAutomationWinformsTests/*.pidb
/UIAutomationWinforms/UIAutomationWinformsTests/Makefile
/UIAutomationWinforms/UIAutomationWinformsTests/Makefile.in
/UIAutomationWinforms/UIAutomationWinformsTests/*.pc
/UIAutomationWinforms/UIAutomationWinformsTests/providertest.sh
# /UIAutomationWinforms/UIAutomationWinformsClientTests/
/UIAutomationWinforms/UIAutomationWinformsClientTests/bin
/UIAutomationWinforms/UIAutomationWinformsClientTests/DataGridApplication/*.resources
/UIAutomationWinforms/UIAutomationWinformsClientTests/DataGridApplication/Properties/*.resources
# /UIAutomationWinforms/po/
/UIAutomationWinforms/po/*.gmo
/UIAutomationWinforms/po/stamp-it
/UIAutomationWinforms/po/missing
/UIAutomationWinforms/po/POTFILES
/UIAutomationWinforms/po/UIAutomationWinforms.pot
/UIAutomationWinforms/po/Makefile
/UIAutomationWinforms/po/Makefile.in
/UIAutomationWinforms/po/Makefile.in.in
# /UIAutomationWinforms/data/
/UIAutomationWinforms/data/uiautomationwinforms.spec
# /UiaAtkBridge/
/UiaAtkBridge/bin
/UiaAtkBridge/*.pidb
/UiaAtkBridge/*.userprefs
/UiaAtkBridge/Makefile
/UiaAtkBridge/Makefile.in
/UiaAtkBridge/configure
/UiaAtkBridge/config.*
/UiaAtkBridge/autom4te.cache
/UiaAtkBridge/missing
/UiaAtkBridge/aclocal.m4
/UiaAtkBridge/install-sh
/UiaAtkBridge/depcomp
/UiaAtkBridge/libtool
/UiaAtkBridge/ltmain.sh
# /UiaAtkBridge/data/
/UiaAtkBridge/data/uiaatkbridge.spec
# /UiaAtkBridge/Test/
/UiaAtkBridge/Test/Makefile.in
/UiaAtkBridge/Test/Makefile
# /UiaAtkBridge/Test/AtkTest/
/UiaAtkBridge/Test/AtkTest/Makefile
/UiaAtkBridge/Test/AtkTest/Makefile.in
/UiaAtkBridge/Test/AtkTest/*.pidb
/UiaAtkBridge/Test/AtkTest/bin
# /UiaAtkBridge/Test/GailTest/
/UiaAtkBridge/Test/GailTest/bin
/UiaAtkBridge/Test/GailTest/*.pidb
/UiaAtkBridge/Test/GailTest/Makefile.in
/UiaAtkBridge/Test/GailTest/Makefile
/UiaAtkBridge/Test/GailTest/gailtest.sh
# /UiaAtkBridge/Test/GailTestApp/
/UiaAtkBridge/Test/GailTestApp/bin
/UiaAtkBridge/Test/GailTestApp/*.pidb
/UiaAtkBridge/Test/GailTestApp/Makefile
/UiaAtkBridge/Test/GailTestApp/Makefile.in
# /UiaAtkBridge/Test/UiaAtkBridgeTest/
/UiaAtkBridge/Test/UiaAtkBridgeTest/bin
/UiaAtkBridge/Test/UiaAtkBridgeTest/*.pidb
/UiaAtkBridge/Test/UiaAtkBridgeTest/Makefile
/UiaAtkBridge/Test/UiaAtkBridgeTest/Makefile.in
/UiaAtkBridge/Test/UiaAtkBridgeTest/bridgetest.sh
# /UiaAtkBridge/UiaAtkBridge/
/UiaAtkBridge/UiaAtkBridge/bin
/UiaAtkBridge/UiaAtkBridge/*.pidb
/UiaAtkBridge/UiaAtkBridge/*.pc
/UiaAtkBridge/UiaAtkBridge/Makefile
/UiaAtkBridge/UiaAtkBridge/Makefile.in
# /UiaAtkBridge/bridge-glue/
/UiaAtkBridge/bridge-glue/*.pidb
/UiaAtkBridge/bridge-glue/Makefile.in
/UiaAtkBridge/bridge-glue/Makefile
/UiaAtkBridge/bridge-glue/main.d
/UiaAtkBridge/bridge-glue/.prec
/UiaAtkBridge/bridge-glue/bin
/UiaAtkBridge/bridge-glue/.deps
/UiaAtkBridge/bridge-glue/.libs
/UiaAtkBridge/bridge-glue/*.la
/UiaAtkBridge/bridge-glue/*.lo
/UiaAtkBridge/bridge-glue/*.o
# /UiaAtkBridge/samples/
/UiaAtkBridge/samples/*.userprefs
/UiaAtkBridge/samples/*.usertasks
# /UiaAtkBridge/samples/managed/
/UiaAtkBridge/samples/managed/*.userprefs
/UiaAtkBridge/samples/managed/*.usertasks
/UiaAtkBridge/samples/managed/configure
/UiaAtkBridge/samples/managed/Makefile.in
/UiaAtkBridge/samples/managed/config.log
/UiaAtkBridge/samples/managed/config.status
/UiaAtkBridge/samples/managed/config.guess
/UiaAtkBridge/samples/managed/ltmain.sh
/UiaAtkBridge/samples/managed/config.sub
/UiaAtkBridge/samples/managed/libtool
/UiaAtkBridge/samples/managed/autom4te.cache
/UiaAtkBridge/samples/managed/missing
/UiaAtkBridge/samples/managed/Makefile.am
/UiaAtkBridge/samples/managed/aclocal.m4
/UiaAtkBridge/samples/managed/Makefile
/UiaAtkBridge/samples/managed/install-sh
/UiaAtkBridge/samples/managed/GailTestApp/Makefile.in
/UiaAtkBridge/samples/managed/GailTestApp/bin
/UiaAtkBridge/samples/managed/GailTestApp/Makefile
# /UiaAtkBridge/samples/managed/FormTest/
/UiaAtkBridge/samples/managed/FormTest/*.usertasks
/UiaAtkBridge/samples/managed/FormTest/*.userprefs
/UiaAtkBridge/samples/managed/FormTest/bin
/UiaAtkBridge/samples/managed/FormTest/*.pidb
# /UiaAtkBridge/samples/managed/atkSharpHelloWorld/
/UiaAtkBridge/samples/managed/atkSharpHelloWorld/*.pidb
/UiaAtkBridge/samples/managed/atkSharpHelloWorld/bin
# /UiaAtkBridge/samples/unmanaged/atkHelloWorld/
/UiaAtkBridge/samples/unmanaged/atkHelloWorld/bin
/UiaAtkBridge/samples/unmanaged/atkHelloWorld/*.pidb
/UiaAtkBridge/samples/unmanaged/atkHelloWorld/*.d
/UiaAtkBridge/samples/unmanaged/atkHelloWorld/.prec
# /UiaDbus/
/UiaDbus/bin
/UiaDbus/*.pidb
/UiaDbus/*.userprefs
/UiaDbus/Makefile
/UiaDbus/Makefile.in
/UiaDbus/configure
/UiaDbus/config.*
/UiaDbus/autom4te.cache
/UiaDbus/missing
/UiaDbus/aclocal.m4
/UiaDbus/install-sh
/UiaDbus/depcomp
/UiaDbus/libtool
/UiaDbus/ltmain.sh
/UiaDbus/uiadbus-*.tar.gz
/UiaDbus/ndesk-dbus-git
/UiaDbus/ndesk-dbus/*.cs
# /UiaDbus/data/
/UiaDbus/data/Makefile
/UiaDbus/data/Makefile.in
/UiaDbus/data/mono-uia-dbus.pc
/UiaDbus/data/mono-uia-dbus.pc.in
/UiaDbus/data/uiadbus.spec
# /UiaDbus/UiaDbus/
/UiaDbus/UiaDbus/bin
/UiaDbus/UiaDbus/*.pidb
/UiaDbus/UiaDbus/*.pc
/UiaDbus/UiaDbus/Makefile
/UiaDbus/UiaDbus/Makefile.in
# /UiaDbus/UiaDbusBridge/
/UiaDbus/UiaDbusBridge/bin
/UiaDbus/UiaDbusBridge/*.pidb
/UiaDbus/UiaDbusBridge/*.pc
/UiaDbus/UiaDbusBridge/Makefile
/UiaDbus/UiaDbusBridge/Makefile.in
# /UiaDbus/UiaDbusBridgeTests/
/UiaDbus/UiaDbusBridgeTests/bin
/UiaDbus/UiaDbusBridgeTests/*.pidb
/UiaDbus/UiaDbusBridgeTests/Makefile
/UiaDbus/UiaDbusBridgeTests/Makefile.in
/UiaDbus/UiaDbusBridgeTests/dbusbridgetest.sh
# /UiaDbus/UiaDbusSource/
/UiaDbus/UiaDbusSource/bin
/UiaDbus/UiaDbusSource/*.pidb
/UiaDbus/UiaDbusSource/*.pc
/UiaDbus/UiaDbusSource/Makefile
/UiaDbus/UiaDbusSource/Makefile.in
# /build/hudson/scripts/
/build/hudson/scripts/.mktarball.py.swp
/build/hudson/scripts/.xml_example.py.swp
# /MoonAtkBridge
/MoonAtkBridge/a11y.xml
/MoonAtkBridge/descriptors.xml
/MoonAtkBridge/Makefile
/MoonAtkBridge/Makefile.in
/MoonAtkBridge/configure
/MoonAtkBridge/config.*
/MoonAtkBridge/autom4te.cache
/MoonAtkBridge/missing
/MoonAtkBridge/aclocal.m4
/MoonAtkBridge/install-sh
/MoonAtkBridge/depcomp
/MoonAtkBridge/libtool
/MoonAtkBridge/ltmain.sh
/MoonAtkBridge/MoonAtkBridge/*.pidb
/MoonAtkBridge/resources/a11y.xml
/MoonAtkBridge/resources/descriptors.xml
/MoonAtkBridge/resources/install.rdf
/MoonAtkBridge/tests/Makefile
/MoonAtkBridge/tests/Makefile.in
/MoonAtkBridge/tests/assets/Makefile
/MoonAtkBridge/tests/assets/Makefile.in
/MoonAtkBridge/tests/assets/AdapterEventsTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.dll
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.g.cs
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.g.resources
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.html
/MoonAtkBridge/tests/assets/AdapterEventsTest/Makefile
/MoonAtkBridge/tests/assets/AdapterEventsTest/Makefile.in
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.mdb
/MoonAtkBridge/tests/assets/AdapterEventsTest/*.xap
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.dll
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.g.cs
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.g.resources
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.html
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/Makefile
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/Makefile.in
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.mdb
/MoonAtkBridge/tests/assets/AddRemoveAdapterTest/*.xap
/MoonAtkBridge/tests/assets/ApplicationNullTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.dll
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.g.cs
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.g.resources
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.html
/MoonAtkBridge/tests/assets/ApplicationNullTest/Makefile
/MoonAtkBridge/tests/assets/ApplicationNullTest/Makefile.in
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.mdb
/MoonAtkBridge/tests/assets/ApplicationNullTest/*.xap
/MoonAtkBridge/tests/assets/ButtonTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ButtonTest/*.dll
/MoonAtkBridge/tests/assets/ButtonTest/*.g.cs
/MoonAtkBridge/tests/assets/ButtonTest/*.g.resources
/MoonAtkBridge/tests/assets/ButtonTest/*.html
/MoonAtkBridge/tests/assets/ButtonTest/Makefile
/MoonAtkBridge/tests/assets/ButtonTest/Makefile.in
/MoonAtkBridge/tests/assets/ButtonTest/*.mdb
/MoonAtkBridge/tests/assets/ButtonTest/*.xap
/MoonAtkBridge/tests/assets/CalendarTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/CalendarTest/*.dll
/MoonAtkBridge/tests/assets/CalendarTest/*.mdb
/MoonAtkBridge/tests/assets/CalendarTest/*.g.resources
/MoonAtkBridge/tests/assets/CalendarTest/*.html
/MoonAtkBridge/tests/assets/CalendarTest/*.xap
/MoonAtkBridge/tests/assets/CalendarTest/Makefile
/MoonAtkBridge/tests/assets/CalendarTest/Makefile.in
/MoonAtkBridge/tests/assets/CalendarTest/*.g.cs
/MoonAtkBridge/tests/assets/CheckBoxTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/CheckBoxTest/*.dll
/MoonAtkBridge/tests/assets/CheckBoxTest/*.g.cs
/MoonAtkBridge/tests/assets/CheckBoxTest/*.g.resources
/MoonAtkBridge/tests/assets/CheckBoxTest/*.html
/MoonAtkBridge/tests/assets/CheckBoxTest/Makefile
/MoonAtkBridge/tests/assets/CheckBoxTest/Makefile.in
/MoonAtkBridge/tests/assets/CheckBoxTest/*.mdb
/MoonAtkBridge/tests/assets/CheckBoxTest/*.xap
/MoonAtkBridge/tests/assets/ComboBoxTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ComboBoxTest/*.dll
/MoonAtkBridge/tests/assets/ComboBoxTest/*.g.cs
/MoonAtkBridge/tests/assets/ComboBoxTest/*.g.resources
/MoonAtkBridge/tests/assets/ComboBoxTest/*.html
/MoonAtkBridge/tests/assets/ComboBoxTest/Makefile
/MoonAtkBridge/tests/assets/ComboBoxTest/Makefile.in
/MoonAtkBridge/tests/assets/ComboBoxTest/*.mdb
/MoonAtkBridge/tests/assets/ComboBoxTest/*.xap
/MoonAtkBridge/tests/assets/ControlTypeTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ControlTypeTest/*.dll
/MoonAtkBridge/tests/assets/ControlTypeTest/*.g.cs
/MoonAtkBridge/tests/assets/ControlTypeTest/*.g.resources
/MoonAtkBridge/tests/assets/ControlTypeTest/*.html
/MoonAtkBridge/tests/assets/ControlTypeTest/Makefile
/MoonAtkBridge/tests/assets/ControlTypeTest/Makefile.in
/MoonAtkBridge/tests/assets/ControlTypeTest/*.mdb
/MoonAtkBridge/tests/assets/ControlTypeTest/*.xap
/MoonAtkBridge/tests/assets/DataGridTest/App.xaml.g.cs
/MoonAtkBridge/tests/assets/DataGridTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.dll
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.dll.mdb
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.g.resources
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.html
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.xap
/MoonAtkBridge/tests/assets/DataGridTest/Makefile
/MoonAtkBridge/tests/assets/DataGridTest/Makefile.in
/MoonAtkBridge/tests/assets/DataGridTest/Page.xaml.g.cs
/MoonAtkBridge/tests/assets/DataGridTest/System.Windows.Controls.Data.dll
/MoonAtkBridge/tests/assets/DatePickerTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/DatePickerTest/*.dll
/MoonAtkBridge/tests/assets/DatePickerTest/*.g.cs
/MoonAtkBridge/tests/assets/DatePickerTest/*.g.resources
/MoonAtkBridge/tests/assets/DatePickerTest/*.html
/MoonAtkBridge/tests/assets/DatePickerTest/Makefile
/MoonAtkBridge/tests/assets/DatePickerTest/Makefile.in
/MoonAtkBridge/tests/assets/DatePickerTest/*.mdb
/MoonAtkBridge/tests/assets/DatePickerTest/*.xap
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.dll
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.g.cs
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.g.resources
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.html
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/Makefile
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/Makefile.in
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.mdb
/MoonAtkBridge/tests/assets/ExpandCollapseEventsTest/*.xap
/MoonAtkBridge/tests/assets/FakeBridgeTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.dll
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.g.cs
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.g.resources
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.html
/MoonAtkBridge/tests/assets/FakeBridgeTest/Makefile
/MoonAtkBridge/tests/assets/FakeBridgeTest/Makefile.in
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.mdb
/MoonAtkBridge/tests/assets/FakeBridgeTest/*.xap
/MoonAtkBridge/tests/assets/GridSplitterTest/*.g.cs
/MoonAtkBridge/tests/assets/GridSplitterTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/GridSplitterTest/*.dll
/MoonAtkBridge/tests/assets/GridSplitterTest/*.dll.mdb
/MoonAtkBridge/tests/assets/GridSplitterTest/*.g.resources
/MoonAtkBridge/tests/assets/GridSplitterTest/*.html
/MoonAtkBridge/tests/assets/GridSplitterTest/*.xap
/MoonAtkBridge/tests/assets/GridSplitterTest/Makefile
/MoonAtkBridge/tests/assets/GridSplitterTest/Makefile.in
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.dll
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.g.cs
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.g.resources
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.html
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/Makefile
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/Makefile.in
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.mdb
/MoonAtkBridge/tests/assets/HyperlinkButtonTest/*.xap
/MoonAtkBridge/tests/assets/ListBoxTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ListBoxTest/*.dll
/MoonAtkBridge/tests/assets/ListBoxTest/*.g.cs
/MoonAtkBridge/tests/assets/ListBoxTest/*.g.resources
/MoonAtkBridge/tests/assets/ListBoxTest/*.html
/MoonAtkBridge/tests/assets/ListBoxTest/Makefile
/MoonAtkBridge/tests/assets/ListBoxTest/Makefile.in
/MoonAtkBridge/tests/assets/ListBoxTest/*.mdb
/MoonAtkBridge/tests/assets/ListBoxTest/*.xap
/MoonAtkBridge/tests/assets/MediaElementTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/MediaElementTest/*.dll
/MoonAtkBridge/tests/assets/MediaElementTest/*.g.cs
/MoonAtkBridge/tests/assets/MediaElementTest/*.g.resources
/MoonAtkBridge/tests/assets/MediaElementTest/*.html
/MoonAtkBridge/tests/assets/MediaElementTest/Makefile
/MoonAtkBridge/tests/assets/MediaElementTest/Makefile.in
/MoonAtkBridge/tests/assets/MediaElementTest/*.mdb
/MoonAtkBridge/tests/assets/MediaElementTest/*.xap
/MoonAtkBridge/tests/assets/ImageTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ImageTest/*.dll
/MoonAtkBridge/tests/assets/ImageTest/*.g.cs
/MoonAtkBridge/tests/assets/ImageTest/*.g.resources
/MoonAtkBridge/tests/assets/ImageTest/*.html
/MoonAtkBridge/tests/assets/ImageTest/Makefile
/MoonAtkBridge/tests/assets/ImageTest/Makefile.in
/MoonAtkBridge/tests/assets/ImageTest/*.mdb
/MoonAtkBridge/tests/assets/ImageTest/*.xap
/MoonAtkBridge/tests/assets/PasswordBoxTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.dll
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.g.cs
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.g.resources
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.html
/MoonAtkBridge/tests/assets/PasswordBoxTest/Makefile
/MoonAtkBridge/tests/assets/PasswordBoxTest/Makefile.in
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.mdb
/MoonAtkBridge/tests/assets/PasswordBoxTest/*.xap
/MoonAtkBridge/tests/assets/ProgressBarTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ProgressBarTest/*.dll
/MoonAtkBridge/tests/assets/ProgressBarTest/*.g.cs
/MoonAtkBridge/tests/assets/ProgressBarTest/*.g.resources
/MoonAtkBridge/tests/assets/ProgressBarTest/*.html
/MoonAtkBridge/tests/assets/ProgressBarTest/Makefile
/MoonAtkBridge/tests/assets/ProgressBarTest/Makefile.in
/MoonAtkBridge/tests/assets/ProgressBarTest/*.mdb
/MoonAtkBridge/tests/assets/ProgressBarTest/*.xap
/MoonAtkBridge/tests/assets/RadioButtonTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/RadioButtonTest/*.dll
/MoonAtkBridge/tests/assets/RadioButtonTest/*.g.cs
/MoonAtkBridge/tests/assets/RadioButtonTest/*.g.resources
/MoonAtkBridge/tests/assets/RadioButtonTest/*.html
/MoonAtkBridge/tests/assets/RadioButtonTest/Makefile
/MoonAtkBridge/tests/assets/RadioButtonTest/Makefile.in
/MoonAtkBridge/tests/assets/RadioButtonTest/*.mdb
/MoonAtkBridge/tests/assets/RadioButtonTest/*.xap
/MoonAtkBridge/tests/assets/RangeValueTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/RangeValueTest/*.dll
/MoonAtkBridge/tests/assets/RangeValueTest/*.g.cs
/MoonAtkBridge/tests/assets/RangeValueTest/*.g.resources
/MoonAtkBridge/tests/assets/RangeValueTest/*.html
/MoonAtkBridge/tests/assets/RangeValueTest/Makefile
/MoonAtkBridge/tests/assets/RangeValueTest/Makefile.in
/MoonAtkBridge/tests/assets/RangeValueTest/*.mdb
/MoonAtkBridge/tests/assets/RangeValueTest/*.xap
/MoonAtkBridge/tests/assets/ReflectionTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ReflectionTest/*.dll
/MoonAtkBridge/tests/assets/ReflectionTest/*.g.cs
/MoonAtkBridge/tests/assets/ReflectionTest/*.g.resources
/MoonAtkBridge/tests/assets/ReflectionTest/*.html
/MoonAtkBridge/tests/assets/ReflectionTest/Makefile
/MoonAtkBridge/tests/assets/ReflectionTest/Makefile.in
/MoonAtkBridge/tests/assets/ReflectionTest/*.mdb
/MoonAtkBridge/tests/assets/ReflectionTest/*.xap
/MoonAtkBridge/tests/assets/RepeatButtonTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.dll
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.g.cs
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.g.resources
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.html
/MoonAtkBridge/tests/assets/RepeatButtonTest/Makefile
/MoonAtkBridge/tests/assets/RepeatButtonTest/Makefile.in
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.mdb
/MoonAtkBridge/tests/assets/RepeatButtonTest/*.xap
/MoonAtkBridge/tests/assets/ScrollBarTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ScrollBarTest/*.dll
/MoonAtkBridge/tests/assets/ScrollBarTest/*.g.cs
/MoonAtkBridge/tests/assets/ScrollBarTest/*.g.resources
/MoonAtkBridge/tests/assets/ScrollBarTest/*.html
/MoonAtkBridge/tests/assets/ScrollBarTest/Makefile
/MoonAtkBridge/tests/assets/ScrollBarTest/Makefile.in
/MoonAtkBridge/tests/assets/ScrollBarTest/*.mdb
/MoonAtkBridge/tests/assets/ScrollBarTest/*.xap
/MoonAtkBridge/tests/assets/ScrollViewerTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.dll
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.g.cs
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.g.resources
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.html
/MoonAtkBridge/tests/assets/ScrollViewerTest/Makefile
/MoonAtkBridge/tests/assets/ScrollViewerTest/Makefile.in
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.mdb
/MoonAtkBridge/tests/assets/ScrollViewerTest/*.xap
/MoonAtkBridge/tests/assets/SelectionTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/SelectionTest/*.dll
/MoonAtkBridge/tests/assets/SelectionTest/*.g.cs
/MoonAtkBridge/tests/assets/SelectionTest/*.g.resources
/MoonAtkBridge/tests/assets/SelectionTest/*.html
/MoonAtkBridge/tests/assets/SelectionTest/Makefile
/MoonAtkBridge/tests/assets/SelectionTest/Makefile.in
/MoonAtkBridge/tests/assets/SelectionTest/*.mdb
/MoonAtkBridge/tests/assets/SelectionTest/*.xap
/MoonAtkBridge/tests/assets/SliderTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/SliderTest/*.dll
/MoonAtkBridge/tests/assets/SliderTest/*.g.cs
/MoonAtkBridge/tests/assets/SliderTest/*.g.resources
/MoonAtkBridge/tests/assets/SliderTest/*.html
/MoonAtkBridge/tests/assets/SliderTest/Makefile
/MoonAtkBridge/tests/assets/SliderTest/Makefile.in
/MoonAtkBridge/tests/assets/SliderTest/*.mdb
/MoonAtkBridge/tests/assets/SliderTest/*.xap
/MoonAtkBridge/tests/assets/TabControlTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/TabControlTest/*.dll
/MoonAtkBridge/tests/assets/TabControlTest/*.g.cs
/MoonAtkBridge/tests/assets/TabControlTest/*.g.resources
/MoonAtkBridge/tests/assets/TabControlTest/*.html
/MoonAtkBridge/tests/assets/TabControlTest/Makefile
/MoonAtkBridge/tests/assets/TabControlTest/Makefile.in
/MoonAtkBridge/tests/assets/TabControlTest/*.mdb
/MoonAtkBridge/tests/assets/TabControlTest/*.xap
/MoonAtkBridge/tests/assets/TableTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/TableTest/*.dll
/MoonAtkBridge/tests/assets/TableTest/*.g.cs
/MoonAtkBridge/tests/assets/TableTest/*.g.resources
/MoonAtkBridge/tests/assets/TableTest/*.html
/MoonAtkBridge/tests/assets/TableTest/Makefile
/MoonAtkBridge/tests/assets/TableTest/Makefile.in
/MoonAtkBridge/tests/assets/TableTest/*.mdb
/MoonAtkBridge/tests/assets/TableTest/*.xap
/MoonAtkBridge/tests/assets/TextBlockTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/TextBlockTest/*.dll
/MoonAtkBridge/tests/assets/TextBlockTest/*.g.cs
/MoonAtkBridge/tests/assets/TextBlockTest/*.g.resources
/MoonAtkBridge/tests/assets/TextBlockTest/*.html
/MoonAtkBridge/tests/assets/TextBlockTest/Makefile
/MoonAtkBridge/tests/assets/TextBlockTest/Makefile.in
/MoonAtkBridge/tests/assets/TextBlockTest/*.mdb
/MoonAtkBridge/tests/assets/TextBlockTest/*.xap
/MoonAtkBridge/tests/assets/ThumbTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ThumbTest/*.dll
/MoonAtkBridge/tests/assets/ThumbTest/*.g.cs
/MoonAtkBridge/tests/assets/ThumbTest/*.g.resources
/MoonAtkBridge/tests/assets/ThumbTest/*.html
/MoonAtkBridge/tests/assets/ThumbTest/Makefile
/MoonAtkBridge/tests/assets/ThumbTest/Makefile.in
/MoonAtkBridge/tests/assets/ThumbTest/*.mdb
/MoonAtkBridge/tests/assets/ThumbTest/*.xap
/MoonAtkBridge/tests/assets/ToggleButtonTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.dll
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.g.cs
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.g.resources
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.html
/MoonAtkBridge/tests/assets/ToggleButtonTest/Makefile
/MoonAtkBridge/tests/assets/ToggleButtonTest/Makefile.in
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.mdb
/MoonAtkBridge/tests/assets/ToggleButtonTest/*.xap
/MoonAtkBridge/tests/assets/ToggleEventsTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.dll
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.g.cs
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.g.resources
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.html
/MoonAtkBridge/tests/assets/ToggleEventsTest/Makefile
/MoonAtkBridge/tests/assets/ToggleEventsTest/Makefile.in
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.mdb
/MoonAtkBridge/tests/assets/ToggleEventsTest/*.xap
/MoonAtkBridge/tests/assets/ValueEventsTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ValueEventsTest/*.dll
/MoonAtkBridge/tests/assets/ValueEventsTest/*.g.cs
/MoonAtkBridge/tests/assets/ValueEventsTest/*.g.resources
/MoonAtkBridge/tests/assets/ValueEventsTest/*.html
/MoonAtkBridge/tests/assets/ValueEventsTest/Makefile
/MoonAtkBridge/tests/assets/ValueEventsTest/Makefile.in
/MoonAtkBridge/tests/assets/ValueEventsTest/*.mdb
/MoonAtkBridge/tests/assets/ValueEventsTest/*.xap
/MoonAtkBridge/tests/assets/ValueTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/ValueTest/*.dll
/MoonAtkBridge/tests/assets/ValueTest/*.g.cs
/MoonAtkBridge/tests/assets/ValueTest/*.g.resources
/MoonAtkBridge/tests/assets/ValueTest/*.html
/MoonAtkBridge/tests/assets/ValueTest/Makefile
/MoonAtkBridge/tests/assets/ValueTest/Makefile.in
/MoonAtkBridge/tests/assets/ValueTest/*.mdb
/MoonAtkBridge/tests/assets/ValueTest/*.xap
/MoonAtkBridge/tests/assets/DataGridTest/App.xaml.g.cs
/MoonAtkBridge/tests/assets/DataGridTest/AppManifest.xaml
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.dll
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.dll.mdb
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.g.resources
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.html
/MoonAtkBridge/tests/assets/DataGridTest/DataGridTest.xap
/MoonAtkBridge/tests/assets/DataGridTest/Makefile
/MoonAtkBridge/tests/assets/DataGridTest/Makefile.in
/MoonAtkBridge/tests/assets/DataGridTest/Page.xaml.g.cs
/MoonAtkBridge/tests/assets/DataGridTest/System.Windows.Controls.Data.dll
/MoonAtkBridge/gtk-sharp/
/MoonAtkBridge/stage/
/MoonAtkBridge/bin/
/MoonAtkBridge/MoonAtkBridge/Moonlight.AtkBridge.Adapters/GeneratedAdapters.cs
# /AtspiUiaSource
/AtspiUiaSource/Makefile
/AtspiUiaSource/Makefile.in
/AtspiUiaSource/configure
/AtspiUiaSource/config.*
/AtspiUiaSource/autom4te.cache
/AtspiUiaSource/missing
/AtspiUiaSource/aclocal.m4
/AtspiUiaSource/install-sh
/AtspiUiaSource/depcomp
/AtspiUiaSource/libtool
/AtspiUiaSource/ltmain.sh
/AtspiUiaSource/AtspiUiaSource/Makefile
/AtspiUiaSource/AtspiUiaSource/Makefile.in
/AtspiUiaSource/AtspiUiaSource/bin
/AtspiUiaSource/AtspiUiaSourceTests/Makefile
/AtspiUiaSource/AtspiUiaSourceTests/Makefile.in
/AtspiUiaSource/AtspiUiaSourceTests/bin
/AtspiUiaSource/AtspiUiaSourceTests/atspiuiasourcetest.sh
/AtspiUiaSource/data/atspiuiasource.spec
# /test/testers/uiaclient
/test/testers/uiaclient/Mono.UIAutomation.TestFramework/bin/
/test/testers/uiaclient/Tests/bin/
/test/testers/uiaclient/Tests/test-results/
# /test/samples/moonlight/
/test/samples/moonlight/Calendar/*.g.cs
/test/samples/moonlight/Calendar/AppManifest.xaml
/test/samples/moonlight/Calendar/*.g.resources
/test/samples/moonlight/Calendar/*.dll
/test/samples/moonlight/Calendar/*.dll.mdb
/test/samples/moonlight/Calendar/*.xap
/test/samples/moonlight/Calendar/*.html
/test/samples/moonlight/DatePicker/*.g.cs
/test/samples/moonlight/DatePicker/AppManifest.xaml
/test/samples/moonlight/DatePicker/*.g.resources
/test/samples/moonlight/DatePicker/*.dll.mdb
/test/samples/moonlight/DatePicker/*.xap
/test/samples/moonlight/DatePicker/*.html
/test/samples/moonlight/DatePicker/*.dll
/test/samples/moonlight/TabControl/*.g.cs
/test/samples/moonlight/TabControl/AppManifest.xaml
/test/samples/moonlight/TabControl/*.g.resources
/test/samples/moonlight/TabControl/*.dll.mdb
/test/samples/moonlight/TabControl/*.xap
/test/samples/moonlight/TabControl/*.html
/test/samples/moonlight/TabControl/*.dll
/test/samples/winforms/sample.cs
/test/samples/winforms/sample.exe
/test/samples/winforms/sample.exe.mdb