This repository has been archived by the owner on Sep 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathStudio.VS2010.guidancestate
1171 lines (1171 loc) · 46.6 KB
/
Studio.VS2010.guidancestate
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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfKeyValueOfstringstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.First Time Users.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is NuPattern?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Why Would I Want to Use a Pattern Toolkit?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Benefits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join1.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Why Would I Build a Pattern Toolkit?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Motivations.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join2.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Can I Customize a Pattern Toolkit?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How do Pattern Toolkits Work?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join3.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Working with Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Using Patterns/Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Pre-requisites for Using.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Installing a Pattern Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Browsing & Managing Installed Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Using Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Viewing & Configuring Solution Elements .StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Running Automation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join4.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Creating and Customizing Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Pre-Requisites for Authoring.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Installing NuPattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Creating a Pattern Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.The Development Cycle (Overview).StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.The Development Cycle (In Practice).StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.The Development Process.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.The Customization Process.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join5.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join6.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Concepts.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Patterns?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Pattern Toolkits?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Customization?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Solution Builder.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.(Placeholder) Solution Builder.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join7.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Solution Builder?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is a Solution Element?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join8.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Pattern Model.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is a Pattern Model?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Commonality & Variability?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Variability Views?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Variability Elements, Collections and Properties?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Extension Points?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is the Pattern Model Designer?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Cardinality?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Related Items?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join9.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Assets.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Assets?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Solution Implementation Assets?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Automation Assets?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are VS Templates?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Text Templates?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join10.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Guidance.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Guidance?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is a Guidance Workflow?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is a Guidance Document?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is the Guidance Explorer?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is the Guidance Browser?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join11.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Automation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Automation?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Automation Extensions?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Launch Points?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Events?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Commands?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Wizards?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Conditions?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Value Providers?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Validation Rules?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What are Artifact Links?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join12.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Publishing.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is Toolkit Info?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join13.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Deployment.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How is a Pattern Toolkit Deployed?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join14.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join15.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join16.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Hands-On Labs.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Creating Pattern Toolkits.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join17.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Guides.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Using .StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Authoring.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What is a Toolkit Project?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a new Toolkit Project.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Start Building a Pattern Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Find a Problem.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Create an RI.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Identify Variability.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Build the Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join18.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Toolkit Design Guidelines.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Naming in a Toolkit Project.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Naming the Toolkit Project.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Naming the Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Naming Automation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join19.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Run, Debug, Test a Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Troubleshoot Toolkit Problems.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Design.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Create a Production Tooling Workflow.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join20.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Modeling.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What is a Pattern Model?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a Pattern Model.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Modeling Design Guidelines.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Model Variability.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Enabling Composition and Pattern Reuse.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Declaring Extensions.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Implementing Extensions.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Reusing Extensions.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Displaying Aspects with Views.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Controlling Instancing of Elements.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Controlling Ordering of Elements.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Controlling the Display of the Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Applying Validation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Setting Default Values for Properties.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Defining an List of Values for a Property.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Defining a Calculated Property.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Defining Custom Property Data Types.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Defining a Custom UI Property Editor.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Defining a .NET Type Picker Property Editor.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Controlling Customization of Elements and Properties.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join21.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What are Assets?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What are VS Templates?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: VS Template Design Considerations.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a VS Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Exporting a VS Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Importing a VS Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Substituting Values in VS Templates.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Unfolding VS Templates from a Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Troubleshooting VS Templates.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What are Text Templates?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a Text Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Templatizing Existing Code.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Writing Text Templates.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Generating Code from a Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join22.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What is Guidance?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Adding Guidance to Your Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Writing the Toolkit Guidance Document.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Adding Additional Guidance to Your Pattern Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join23.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What is Automation?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Applying Automation to your Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Automation Design Guidelines.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Executing a Command.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Which Events to Use?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Which Automation to Use?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Controlling When Commands are Executed.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Executing a Sequence of Commands.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Wizards.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a Wizard.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Showing a Context Menu.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Applying Validation to a Property or Element.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Executing Validation Rules.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Unfold or Generate?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Unfolding VS Templates.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Generating VS Templates from Text Templates.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Generating Code.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Recommended Code Generation Patterns.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Applying the T4 Triad Pattern.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Getting a Root Namespace in Generated Code .StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Associating Guidance.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Enabling Solution Navigation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Supporting Add from Existing Artifacts.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Supporting Drag & Drop.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Drag Drop Commands.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Drag Conditions.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating an Importing Command.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Custom Automation Classes.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Naming Your Own Automation Classes.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Coding Your Own Automation Classes.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Applying Tracing to Your Own Automation Classes.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Implementing Your Own Automation Class.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Event.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Commands.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Wizards.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Conditions.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Value Providers.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Create You Own Ordering Comparer.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating Your Own Validation Rules.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Add Additional Automation Libraries.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Common Automation Scenarios.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join24.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Building.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: Building a Toolkit Project.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Building a Toolkit Project.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Building a Toolkit in Team Build.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join25.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Deployment & Releasing.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Understanding: What is Toolkit Information?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Packaging Assemblies for Deployment.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Updating Toolkit Information.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Versioning a Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Installing a Toolkit for Customization.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating an MSI for Toolkit Deployment.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Packaging Multiple Toolkits Together.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join26.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join27.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Customization.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.What is a Customized Toolkit?.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Creating a Customized Toolkit.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Customizing the Pattern Model.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join28.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Assets .StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Customizing the Assets.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join29.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Customizing the Guidance.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join30.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Customizing the Automation.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join31.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.How To: Customizing the Toolkit Info.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join32.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join33.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join34.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Reference.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a View.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Collection or an Element.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Variable Property.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Changing the Cardinality.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Changing the Ordering.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Showing ‘Hidden’ Elements.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Arranging Shapes on Pattern Model.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join35.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a VS Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Text Template.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join36.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Editing Guidance.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Building Guidance.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Join37.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Template Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring an Event Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Context Menu Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Drag Drop Launch Point.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Command.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Command.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Adding a Wizard.StateOverride</Key>
<Value>False</Value>
</KeyValueOfstringstring>
<KeyValueOfstringstring>
<Key>Creating Pattern Toolkits.Configuring a Wizard.StateOverride</Key>