-
Notifications
You must be signed in to change notification settings - Fork 0
/
Petzold.sln
4960 lines (4960 loc) · 400 KB
/
Petzold.sln
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22823.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_3", "Chapter_3", "{D3B5F451-B7F2-428B-B7F0-D19BE0056B3C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TapTextBlock", "TapTextBlock", "{A121EF0D-1D44-4057-8464-1E5D68991A41}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TapTextBlock.Shared", "Chapter_3\TapTextBlock\TapTextBlock.Shared\TapTextBlock.Shared.shproj", "{D1F6ACE7-100D-4100-8FBF-79777A550216}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TapTextBlock.Windows", "Chapter_3\TapTextBlock\TapTextBlock.Windows\TapTextBlock.Windows.csproj", "{FF3172C2-8A81-4955-B18E-8F8E8602556E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TapTextBlock.WindowsPhone", "Chapter_3\TapTextBlock\TapTextBlock.WindowsPhone\TapTextBlock.WindowsPhone.csproj", "{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents0", "RoutedEvents0", "{13DCFB9E-8555-4DD5-831E-9923213F5F4A}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents0.Shared", "Chapter_3\RoutedEvents0\RoutedEvents0.Shared\RoutedEvents0.Shared.shproj", "{AD6F68F0-EED5-47C2-BFBC-BB98934D0E81}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents0.Windows", "Chapter_3\RoutedEvents0\RoutedEvents0.Windows\RoutedEvents0.Windows.csproj", "{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents0.WindowsPhone", "Chapter_3\RoutedEvents0\RoutedEvents0.WindowsPhone\RoutedEvents0.WindowsPhone.csproj", "{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents1", "RoutedEvents1", "{95A3A6DA-2787-4475-A240-72D323578CCF}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents1.Shared", "Chapter_3\RoutedEvents1\RoutedEvents1.Shared\RoutedEvents1.Shared.shproj", "{742F0B11-28EC-44E6-9095-41145E3C6F98}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents1.Windows", "Chapter_3\RoutedEvents1\RoutedEvents1.Windows\RoutedEvents1.Windows.csproj", "{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents1.WindowsPhone", "Chapter_3\RoutedEvents1\RoutedEvents1.WindowsPhone\RoutedEvents1.WindowsPhone.csproj", "{7A77725E-3DB8-4404-BF14-FAD794687B0B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents2", "RoutedEvents2", "{5E538CBD-00D9-41BE-A332-2ED325D50755}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents2.Shared", "Chapter_3\RoutedEvents2\RoutedEvents2.Shared\RoutedEvents2.Shared.shproj", "{0060F9ED-BB8D-401E-8463-01DA0CF02EB6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents2.Windows", "Chapter_3\RoutedEvents2\RoutedEvents2.Windows\RoutedEvents2.Windows.csproj", "{D789FEFA-E673-42A4-BDE4-E327B5601553}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents2.WindowsPhone", "Chapter_3\RoutedEvents2\RoutedEvents2.WindowsPhone\RoutedEvents2.WindowsPhone.csproj", "{0689E164-B517-42C6-BF24-0DBDF90542E5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents3", "RoutedEvents3", "{6415DBB3-1A60-413D-87B9-860C297BD903}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents3.Shared", "Chapter_3\RoutedEvents3\RoutedEvents3.Shared\RoutedEvents3.Shared.shproj", "{7189F4CD-0E5A-4D9F-9E02-288760A4D9AF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents3.Windows", "Chapter_3\RoutedEvents3\RoutedEvents3.Windows\RoutedEvents3.Windows.csproj", "{5385258A-7449-4F36-877A-F0EB297449C0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents3.WindowsPhone", "Chapter_3\RoutedEvents3\RoutedEvents3.WindowsPhone\RoutedEvents3.WindowsPhone.csproj", "{CDEE815E-F880-4CCA-87DF-CFD1C0F94597}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents4", "RoutedEvents4", "{45EBFF2F-D34B-4613-9313-225ABF2FF2D9}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents4.Shared", "Chapter_3\RoutedEvents4\RoutedEvents4.Shared\RoutedEvents4.Shared.shproj", "{B1BF41D8-6198-4DA7-9E9B-EC30045ED09F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents4.Windows", "Chapter_3\RoutedEvents4\RoutedEvents4.Windows\RoutedEvents4.Windows.csproj", "{1E2706BC-5E28-4BA5-B511-B8A953994927}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents4.WindowsPhone", "Chapter_3\RoutedEvents4\RoutedEvents4.WindowsPhone\RoutedEvents4.WindowsPhone.csproj", "{B3031025-7863-45E5-928E-264E2AE1CD4D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents5", "RoutedEvents5", "{5ECF169E-0397-447C-A160-DA82322C6385}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents5.Shared", "Chapter_3\RoutedEvents5\RoutedEvents5.Shared\RoutedEvents5.Shared.shproj", "{388DE97D-A1A1-46EC-AA58-F10B619CC4D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents5.Windows", "Chapter_3\RoutedEvents5\RoutedEvents5.Windows\RoutedEvents5.Windows.csproj", "{AD56F85F-0A23-42F4-9267-D2F5316F5E7F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents5.WindowsPhone", "Chapter_3\RoutedEvents5\RoutedEvents5.WindowsPhone\RoutedEvents5.WindowsPhone.csproj", "{1FA6D46C-77E9-4F44-B5F5-3049A0308D39}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents6", "RoutedEvents6", "{17CFB47C-E97C-4B89-BA28-16B02409908A}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents6.Shared", "Chapter_3\RoutedEvents6\RoutedEvents6.Shared\RoutedEvents6.Shared.shproj", "{2FDD45A9-02AC-4EE8-B1E9-BFF8424D6EEA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents6.Windows", "Chapter_3\RoutedEvents6\RoutedEvents6.Windows\RoutedEvents6.Windows.csproj", "{B282876D-3CCF-4931-AFB3-840A58F032A6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents6.WindowsPhone", "Chapter_3\RoutedEvents6\RoutedEvents6.WindowsPhone\RoutedEvents6.WindowsPhone.csproj", "{057F0104-35E0-4CE6-9678-8C226AE2B66B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RoutedEvents7", "RoutedEvents7", "{B781E037-229C-46A2-AE56-A24936B6BAEA}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RoutedEvents7.Shared", "Chapter_3\RoutedEvents7\RoutedEvents7.Shared\RoutedEvents7.Shared.shproj", "{31AB4095-3707-4B06-B933-01ABD34E6246}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents7.Windows", "Chapter_3\RoutedEvents7\RoutedEvents7.Windows\RoutedEvents7.Windows.csproj", "{230843C9-24BC-4C62-A69E-E940A4A60D07}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoutedEvents7.WindowsPhone", "Chapter_3\RoutedEvents7\RoutedEvents7.WindowsPhone\RoutedEvents7.WindowsPhone.csproj", "{C352C3F7-91A6-4BB5-B409-78848DB5A2CF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_1", "Chapter_1", "{B8448E40-0270-43B4-A8BF-1EBD7F0513CC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_2", "Chapter_2", "{6DF9A0F3-B29B-434B-8636-7BE1D284BF53}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hello", "Hello", "{9B2C4C77-1844-4BFD-882E-02F2B94F0296}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Hello.Shared", "Chapter_1\Hello\Hello.Shared\Hello.Shared.shproj", "{4DA66D4B-617B-4C99-93F6-2D7E5B874DA3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hello.Windows", "Chapter_1\Hello\Hello.Windows\Hello.Windows.csproj", "{6685CE82-9F0A-456D-BA58-A71D23FDB5DF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hello.WindowsPhone", "Chapter_1\Hello\Hello.WindowsPhone\Hello.WindowsPhone.csproj", "{5C02EC93-3C3A-420C-8691-097ADF4B89A2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloImage", "HelloImage", "{88C7FD1D-1459-480B-A7F2-4995FBFD83A7}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloImage.Shared", "Chapter_1\HelloImage\HelloImage.Shared\HelloImage.Shared.shproj", "{54B4F0A6-F06D-4203-B43C-74B7EDA8AD1E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloImage.Windows", "Chapter_1\HelloImage\HelloImage.Windows\HelloImage.Windows.csproj", "{04FC3AA6-98C0-4E14-B9F1-1B11DFD2C132}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloImage.WindowsPhone", "Chapter_1\HelloImage\HelloImage.WindowsPhone\HelloImage.WindowsPhone.csproj", "{547D44AB-77D1-46F6-9FE1-BD05A7BBD1F3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloLocalImage", "HelloLocalImage", "{5BD6BC2E-71B6-47E9-A30B-AD0488747E72}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloLocalImage.Shared", "Chapter_1\HelloLocalImage\HelloLocalImage.Shared\HelloLocalImage.Shared.shproj", "{AEF1D07A-C877-4194-BE23-AC41FFD6752D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloLocalImage.Windows", "Chapter_1\HelloLocalImage\HelloLocalImage.Windows\HelloLocalImage.Windows.csproj", "{BC4DC958-A5C6-4285-95A3-D069F801ED3A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloLocalImage.WindowsPhone", "Chapter_1\HelloLocalImage\HelloLocalImage.WindowsPhone\HelloLocalImage.WindowsPhone.csproj", "{1F584C28-692D-464C-8CEE-EE15E16725BC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WrappedText", "WrappedText", "{957CF8CD-C43E-4DA1-9191-E26B83B58698}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WrappedText.Shared", "Chapter_1\WrappedText\WrappedText.Shared\WrappedText.Shared.shproj", "{C064D0AF-2949-45DE-9EC8-987586EBCBF0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WrappedText.Windows", "Chapter_1\WrappedText\WrappedText.Windows\WrappedText.Windows.csproj", "{B09A21F0-3519-439D-8351-7F780046DD73}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WrappedText.WindowsPhone", "Chapter_1\WrappedText\WrappedText.WindowsPhone\WrappedText.WindowsPhone.csproj", "{CFF21F5A-3CC7-487C-BFFC-E0D3842D27B8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "OverlappedStackedText", "OverlappedStackedText", "{222C04FE-86CD-436C-8C42-D2884A7EAA74}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "OverlappedStackedText.Shared", "Chapter_1\OverlappedStackedText\OverlappedStackedText.Shared\OverlappedStackedText.Shared.shproj", "{95DCB456-9D0D-42A9-830E-8F25F8872D6F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OverlappedStackedText.Windows", "Chapter_1\OverlappedStackedText\OverlappedStackedText.Windows\OverlappedStackedText.Windows.csproj", "{DF540B37-79F5-4616-98F3-F2B642BC9D1D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OverlappedStackedText.WindowsPhone", "Chapter_1\OverlappedStackedText\OverlappedStackedText.WindowsPhone\OverlappedStackedText.WindowsPhone.csproj", "{ABE94B4A-9641-4D1E-B020-FC79465A2343}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "InternationalHelloWorld", "InternationalHelloWorld", "{BE6ADDD9-32C1-4397-8747-16B29E78C4D9}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "InternationalHelloWorld.Shared", "Chapter_1\InternationalHelloWorld\InternationalHelloWorld.Shared\InternationalHelloWorld.Shared.shproj", "{240E80DB-652D-466D-BB5C-D413883E31F9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InternationalHelloWorld.Windows", "Chapter_1\InternationalHelloWorld\InternationalHelloWorld.Windows\InternationalHelloWorld.Windows.csproj", "{CF2584BC-81EA-4629-B6AF-8EB3E2D3D3C6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InternationalHelloWorld.WindowsPhone", "Chapter_1\InternationalHelloWorld\InternationalHelloWorld.WindowsPhone\InternationalHelloWorld.WindowsPhone.csproj", "{73E0F7CB-2E9F-4D78-BE0D-4BB9A52E5F08}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloAudio", "HelloAudio", "{5DCD3FBA-6B97-4749-B62A-FFE3EDF198A9}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloAudio.Shared", "Chapter_1\HelloAudio\HelloAudio.Shared\HelloAudio.Shared.shproj", "{1A8EE1DB-1E0B-4B8B-A8FB-D13BC277E496}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAudio.Windows", "Chapter_1\HelloAudio\HelloAudio.Windows\HelloAudio.Windows.csproj", "{C5F755F6-1475-4C89-A36B-D6EEDA86CFE0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloAudio.WindowsPhone", "Chapter_1\HelloAudio\HelloAudio.WindowsPhone\HelloAudio.WindowsPhone.csproj", "{3C949D39-19F5-44D2-9682-8D6E6940727C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloVideo", "HelloVideo", "{F25E61E9-257C-4C77-B23B-D3B5BC0FDFA7}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloVideo.Shared", "Chapter_1\HelloVideo\HelloVideo.Shared\HelloVideo.Shared.shproj", "{8E304DE1-810A-409F-A168-918FE9B141B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVideo.Windows", "Chapter_1\HelloVideo\HelloVideo.Windows\HelloVideo.Windows.csproj", "{BFC56116-AD94-493F-A41A-309AB091B152}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVideo.WindowsPhone", "Chapter_1\HelloVideo\HelloVideo.WindowsPhone\HelloVideo.WindowsPhone.csproj", "{52777789-3857-4492-BDE1-77D62201706F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloCode", "HelloCode", "{7D71F5D8-656E-42D1-B92E-86AF3AF1106E}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloCode.Shared", "Chapter_1\HelloCode\HelloCode.Shared\HelloCode.Shared.shproj", "{02D05EA1-0EF4-4B1B-A698-F9911F40C6FF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloCode.Windows", "Chapter_1\HelloCode\HelloCode.Windows\HelloCode.Windows.csproj", "{48F249A9-0772-4B48-93C7-F5681A895907}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloCode.WindowsPhone", "Chapter_1\HelloCode\HelloCode.WindowsPhone\HelloCode.WindowsPhone.csproj", "{59962562-3CCA-4B3F-A31B-65ACAF5C2479}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloImageCode", "HelloImageCode", "{95B08407-A8AE-4039-A01A-463ACBF25A58}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloImageCode.Shared", "Chapter_1\HelloImageCode\HelloImageCode.Shared\HelloImageCode.Shared.shproj", "{D868861E-EDB9-40AF-8ACA-2603CF9131DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloImageCode.Windows", "Chapter_1\HelloImageCode\HelloImageCode.Windows\HelloImageCode.Windows.csproj", "{32C007BC-AB08-4F1F-B095-87766F3FEE84}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloImageCode.WindowsPhone", "Chapter_1\HelloImageCode\HelloImageCode.WindowsPhone\HelloImageCode.WindowsPhone.csproj", "{222F9361-AC51-465F-843D-47A8F3120C70}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloLocalImageCode", "HelloLocalImageCode", "{D82473F2-D73A-430F-815D-D370F7FE0F13}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloLocalImageCode.Shared", "Chapter_1\HelloLocalImageCode\HelloLocalImageCode.Shared\HelloLocalImageCode.Shared.shproj", "{621936A2-09B1-44F0-9EBE-ED85620880C0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloLocalImageCode.Windows", "Chapter_1\HelloLocalImageCode\HelloLocalImageCode.Windows\HelloLocalImageCode.Windows.csproj", "{0A63A82F-7120-4CAB-82DA-D509DB2EF7DB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloLocalImageCode.WindowsPhone", "Chapter_1\HelloLocalImageCode\HelloLocalImageCode.WindowsPhone\HelloLocalImageCode.WindowsPhone.csproj", "{8CBDB855-D093-4443-9804-2CB3ADC15FC1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StrippedDownHello", "StrippedDownHello", "{D746A682-6F57-4DB7-8780-59D529DA60F4}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "StrippedDownHello.Shared", "Chapter_1\StrippedDownHello\StrippedDownHello.Shared\StrippedDownHello.Shared.shproj", "{34F60C5A-57A6-4B24-98B8-145125A7A611}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StrippedDownHello.Windows", "Chapter_1\StrippedDownHello\StrippedDownHello.Windows\StrippedDownHello.Windows.csproj", "{25B88EE4-D46B-4F5A-8893-CF25A6F27A6E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GradientBrushCode", "GradientBrushCode", "{7B011E72-C39D-40EA-B11E-91F9DBA5C35D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "GradientBrushCode.Shared", "Chapter_2\GradientBrushCode\GradientBrushCode.Shared\GradientBrushCode.Shared.shproj", "{FE34CC36-C396-4093-9538-512EAB8EB836}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GradientBrushCode.Windows", "Chapter_2\GradientBrushCode\GradientBrushCode.Windows\GradientBrushCode.Windows.csproj", "{4835F9A2-70C0-4304-BE49-3E3B8243CD1B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GradientBrushCode.WindowsPhone", "Chapter_2\GradientBrushCode\GradientBrushCode.WindowsPhone\GradientBrushCode.WindowsPhone.csproj", "{53D356FA-5282-4F51-A1C6-63BF6E0088B2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GradientBrushMarkup", "GradientBrushMarkup", "{6282F947-FEEF-4944-AC8E-F3C2E45ACCAA}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "GradientBrushMarkup.Shared", "Chapter_2\GradientBrushMarkup\GradientBrushMarkup.Shared\GradientBrushMarkup.Shared.shproj", "{A081286C-BE39-4722-B2A3-B90CFC774880}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GradientBrushMarkup.Windows", "Chapter_2\GradientBrushMarkup\GradientBrushMarkup.Windows\GradientBrushMarkup.Windows.csproj", "{1BE9C75F-4E5F-4A93-9170-96995ADC2C3A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GradientBrushMarkup.WindowsPhone", "Chapter_2\GradientBrushMarkup\GradientBrushMarkup.WindowsPhone\GradientBrushMarkup.WindowsPhone.csproj", "{BE0B0F81-33F0-4822-AE4B-A021E1938AE3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TextFormatting", "TextFormatting", "{2276459A-B0F0-4387-8473-AFC370DF8103}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TextFormatting.Shared", "Chapter_2\TextFormatting\TextFormatting.Shared\TextFormatting.Shared.shproj", "{83AB47F9-30F7-4E0A-9A67-6ACC8DC93152}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextFormatting.Windows", "Chapter_2\TextFormatting\TextFormatting.Windows\TextFormatting.Windows.csproj", "{6FF9F4A6-AD38-4A1F-848F-EF45E0A4F183}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextFormatting.WindowsPhone", "Chapter_2\TextFormatting\TextFormatting.WindowsPhone\TextFormatting.WindowsPhone.csproj", "{DE26EE04-317D-4E09-BEEA-BA5976C5A847}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SharedBrush", "SharedBrush", "{1CA94BD8-3BFB-4E35-AB23-8331B1CE44AD}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SharedBrush.Shared", "Chapter_2\SharedBrush\SharedBrush.Shared\SharedBrush.Shared.shproj", "{20ACF86D-5CEB-4262-B1CE-FDB9B5BE7223}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrush.Windows", "Chapter_2\SharedBrush\SharedBrush.Windows\SharedBrush.Windows.csproj", "{3879D6B9-C04B-476B-A9BB-B65C7EF6A409}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrush.WindowsPhone", "Chapter_2\SharedBrush\SharedBrush.WindowsPhone\SharedBrush.WindowsPhone.csproj", "{1BE4667B-F804-4F46-AFC7-79B4A1D1FBE5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Spiral", "Spiral", "{E1697FAA-2838-40B4-B8B1-6F3C3D4A2863}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Spiral.Shared", "Chapter_2\Spiral\Spiral.Shared\Spiral.Shared.shproj", "{2585DD85-15BB-4C59-AF02-DF05CAC7801F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spiral.Windows", "Chapter_2\Spiral\Spiral.Windows\Spiral.Windows.csproj", "{A922ECDA-A915-42FC-BCB0-1BE29A1D28D1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spiral.WindowsPhone", "Chapter_2\Spiral\Spiral.WindowsPhone\Spiral.WindowsPhone.csproj", "{6AF39583-BCDB-431D-BF28-4CFBBF0DC0FB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StretchedSpiral", "StretchedSpiral", "{3BCA1EC8-EB08-4D59-8599-FA4F850C482D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "StretchedSpiral.Shared", "Chapter_2\StretchedSpiral\StretchedSpiral.Shared\StretchedSpiral.Shared.shproj", "{92E03921-74D6-4777-AD68-FC0810654576}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StretchedSpiral.Windows", "Chapter_2\StretchedSpiral\StretchedSpiral.Windows\StretchedSpiral.Windows.csproj", "{0D31B2E7-42E9-4100-91D9-E3F179F657A9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StretchedSpiral.WindowsPhone", "Chapter_2\StretchedSpiral\StretchedSpiral.WindowsPhone\StretchedSpiral.WindowsPhone.csproj", "{C58B9AAD-7272-41B2-AC0B-88502BF81955}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ImageBrushSpiral", "ImageBrushSpiral", "{2721330C-263F-463F-AAF7-11D499D6FA67}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ImageBrushSpiral.Shared", "Chapter_2\ImageBrushSpiral\ImageBrushSpiral.Shared\ImageBrushSpiral.Shared.shproj", "{F9415AFB-3337-4267-A47F-0E689F5D1A0E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageBrushSpiral.Windows", "Chapter_2\ImageBrushSpiral\ImageBrushSpiral.Windows\ImageBrushSpiral.Windows.csproj", "{89C5B17D-6FE2-4A6B-810B-7FD5CA007CEC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageBrushSpiral.WindowsPhone", "Chapter_2\ImageBrushSpiral\ImageBrushSpiral.WindowsPhone\ImageBrushSpiral.WindowsPhone.csproj", "{D31E6A47-8723-4201-8A1B-482E94A78AE6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloVectorGraphics", "HelloVectorGraphics", "{1BE5F74A-AD92-4149-BF70-B1C17A775BF2}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloVectorGraphics.Shared", "Chapter_2\HelloVectorGraphics\HelloVectorGraphics.Shared\HelloVectorGraphics.Shared.shproj", "{7D77C78A-1911-43BE-AEB0-97050B38C774}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVectorGraphics.Windows", "Chapter_2\HelloVectorGraphics\HelloVectorGraphics.Windows\HelloVectorGraphics.Windows.csproj", "{42D331BD-C899-4684-9051-DDFB34CF53B6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVectorGraphics.WindowsPhone", "Chapter_2\HelloVectorGraphics\HelloVectorGraphics.WindowsPhone\HelloVectorGraphics.WindowsPhone.csproj", "{015396AD-99D3-4A9D-841A-EB0E67BF3EA5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HelloVectorGraphicsPath", "HelloVectorGraphicsPath", "{64793FD0-54B9-4B1A-AD6D-13301E24467F}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "HelloVectorGraphicsPath.Shared", "Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.Shared\HelloVectorGraphicsPath.Shared.shproj", "{9BB4ADF3-A067-4E67-B2E8-E8AECE79818D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVectorGraphicsPath.Windows", "Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.Windows\HelloVectorGraphicsPath.Windows.csproj", "{6822FE25-7128-47AA-B0CE-C5D9699778D1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloVectorGraphicsPath.WindowsPhone", "Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.WindowsPhone\HelloVectorGraphicsPath.WindowsPhone.csproj", "{8C691E2F-E897-44D1-8714-FA418DB8CE2B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PathMarkupSyntaxCode", "PathMarkupSyntaxCode", "{8CA19404-E1A5-455B-B9E1-59E945126F40}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "PathMarkupSyntaxCode.Shared", "Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.Shared\PathMarkupSyntaxCode.Shared.shproj", "{2D4B10D0-614F-4DDD-9B3E-77D3F1070AE5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PathMarkupSyntaxCode.Windows", "Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.Windows\PathMarkupSyntaxCode.Windows.csproj", "{A951FAE7-13A9-422C-A2C2-7A6B3FC9150D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PathMarkupSyntaxCode.WindowsPhone", "Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.WindowsPhone\PathMarkupSyntaxCode.WindowsPhone.csproj", "{3148A813-4663-4680-B6CB-2685DF5E93CF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TextStretch", "TextStretch", "{EB4B3FAF-7E82-44E6-A588-C8FE14AF07C3}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TextStretch.Shared", "Chapter_2\TextStretch\TextStretch.Shared\TextStretch.Shared.shproj", "{DE8990A4-2B5A-49EB-94E3-8AA5E43F8D95}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextStretch.Windows", "Chapter_2\TextStretch\TextStretch.Windows\TextStretch.Windows.csproj", "{FF4EE71A-E3CB-42B9-9029-3FB8F2CACBD6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextStretch.WindowsPhone", "Chapter_2\TextStretch\TextStretch.WindowsPhone\TextStretch.WindowsPhone.csproj", "{B13BE672-D0C2-4C52-82BF-DDAFD1A3EA8D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VectorGraphicsStretch", "VectorGraphicsStretch", "{DE453058-F540-42AE-AED8-2E2005D050DD}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "VectorGraphicsStretch.Shared", "Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.Shared\VectorGraphicsStretch.Shared.shproj", "{1F9794B2-4B7F-4540-8701-7873584C6282}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VectorGraphicsStretch.Windows", "Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.Windows\VectorGraphicsStretch.Windows.csproj", "{6D1B4E7F-39C5-4DA6-B872-FEBD0779CEB6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VectorGraphicsStretch.WindowsPhone", "Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.WindowsPhone\VectorGraphicsStretch.WindowsPhone.csproj", "{9CB7545F-9534-4C79-82DF-F766CC5E93AF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SharedBrushWithStyle", "SharedBrushWithStyle", "{BA23F8DC-9630-45CB-965B-621CAD28DFFD}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SharedBrushWithStyle.Shared", "Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.Shared\SharedBrushWithStyle.Shared.shproj", "{FD2026C7-F783-441A-AA58-64DAB7FFFF7A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrushWithStyle.Windows", "Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.Windows\SharedBrushWithStyle.Windows.csproj", "{55C3408B-BCCB-450B-8639-CA2963D50BED}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrushWithStyle.WindowsPhone", "Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.WindowsPhone\SharedBrushWithStyle.WindowsPhone.csproj", "{64D1F1A0-D3FD-43A8-A4D9-79CD8D86399A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SharedBrushWithBinding", "SharedBrushWithBinding", "{40E031D0-CBC3-4E64-AEBE-6154C58424F6}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SharedBrushWithBinding.Shared", "Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.Shared\SharedBrushWithBinding.Shared.shproj", "{8FD806BC-B0B6-4C1F-82AC-476A99B76D4C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrushWithBinding.Windows", "Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.Windows\SharedBrushWithBinding.Windows.csproj", "{E9A7D8E3-94FE-4C66-A721-79257C0B8C1E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedBrushWithBinding.WindowsPhone", "Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.WindowsPhone\SharedBrushWithBinding.WindowsPhone.csproj", "{23B50C6D-41A0-43EC-877F-75384C1C27C4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WhatSize", "WhatSize", "{3D925AD7-E6FA-44D0-A3AA-5510EFAC4D41}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WhatSize.Shared", "Chapter_3\WhatSize\WhatSize.Shared\WhatSize.Shared.shproj", "{2B4A13C1-52CD-4006-AA97-6B4DCEDCA824}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSize.Windows", "Chapter_3\WhatSize\WhatSize.Windows\WhatSize.Windows.csproj", "{08A1E193-95C5-4C1E-BB38-D8ABD0C795F7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSize.WindowsPhone", "Chapter_3\WhatSize\WhatSize.WindowsPhone\WhatSize.WindowsPhone.csproj", "{FF775EA7-BB3C-4772-8E1F-B8121F1C094A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DigitalClock", "DigitalClock", "{CD782340-6D2B-46FC-8C8F-1F31F11BBC28}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DigitalClock.Shared", "Chapter_3\DigitalClock\DigitalClock.Shared\DigitalClock.Shared.shproj", "{BD6ADD4F-80BD-428D-B184-3963024FB7B2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalClock.Windows", "Chapter_3\DigitalClock\DigitalClock.Windows\DigitalClock.Windows.csproj", "{4C22D466-3FDA-4849-A801-8E5D4DD4B30B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalClock.WindowsPhone", "Chapter_3\DigitalClock\DigitalClock.WindowsPhone\DigitalClock.WindowsPhone.csproj", "{BF28035C-F922-4BCC-92C6-617639DA41F3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ExpandingText", "ExpandingText", "{556B439F-9964-4AA4-AFDD-B28E1C3946CF}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ExpandingText.Shared", "Chapter_3\ExpandingText\ExpandingText.Shared\ExpandingText.Shared.shproj", "{35F252FE-9D29-4719-896B-43146E9EBDA7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExpandingText.Windows", "Chapter_3\ExpandingText\ExpandingText.Windows\ExpandingText.Windows.csproj", "{18BF5EAC-F547-4708-A8C6-D6A48BEA544F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExpandingText.WindowsPhone", "Chapter_3\ExpandingText\ExpandingText.WindowsPhone\ExpandingText.WindowsPhone.csproj", "{05005CE7-51D6-4064-AD98-BB1755E36155}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ManualBrushAnimation", "ManualBrushAnimation", "{AAB7051A-75EC-4054-BFA1-3C4F99456919}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ManualBrushAnimation.Shared", "Chapter_3\ManualBrushAnimation\ManualBrushAnimation.Shared\ManualBrushAnimation.Shared.shproj", "{7419E3BF-46CE-4D0E-A08F-E1A0B3832245}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManualBrushAnimation.Windows", "Chapter_3\ManualBrushAnimation\ManualBrushAnimation.Windows\ManualBrushAnimation.Windows.csproj", "{D593BCEC-AE3E-4268-9D1B-B2756E345224}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManualBrushAnimation.WindowsPhone", "Chapter_3\ManualBrushAnimation\ManualBrushAnimation.WindowsPhone\ManualBrushAnimation.WindowsPhone.csproj", "{1E103D83-F8FE-4569-AC39-63E056D5E877}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ManualColorAnimation", "ManualColorAnimation", "{457CF282-0FE0-46E9-93BB-D90CCD65BB70}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ManualColorAnimation.Shared", "Chapter_3\ManualColorAnimation\ManualColorAnimation.Shared\ManualColorAnimation.Shared.shproj", "{C126C309-0789-4CAF-9561-14E815D95BE6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManualColorAnimation.Windows", "Chapter_3\ManualColorAnimation\ManualColorAnimation.Windows\ManualColorAnimation.Windows.csproj", "{B173C522-1729-4C46-A5F6-6FF4EA4F0DB9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManualColorAnimation.WindowsPhone", "Chapter_3\ManualColorAnimation\ManualColorAnimation.WindowsPhone\ManualColorAnimation.WindowsPhone.csproj", "{D44A447F-8ACE-49BC-9FAD-E0CEB9575863}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RainbowEight", "RainbowEight", "{585EF205-1047-4FE8-AF20-C8CF8E7B8FB1}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "RainbowEight.Shared", "Chapter_3\RainbowEight\RainbowEight.Shared\RainbowEight.Shared.shproj", "{8019000A-D570-46BC-BD23-CBCA8E48B0E5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainbowEight.Windows", "Chapter_3\RainbowEight\RainbowEight.Windows\RainbowEight.Windows.csproj", "{414136BB-42AA-4BE0-ACC1-99BB6AF9D322}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RainbowEight.WindowsPhone", "Chapter_3\RainbowEight\RainbowEight.WindowsPhone\RainbowEight.WindowsPhone.csproj", "{961200C8-F321-46A5-8E18-C626C858E815}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_4", "Chapter_4", "{CA2EA30B-98DA-43E4-9F5C-E072EC3B8F4F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NaiveBorderedText", "NaiveBorderedText", "{32669E01-5567-42B1-B577-85D932DECCBE}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "NaiveBorderedText.Shared", "Chapter_4\NaiveBorderedText\NaiveBorderedText.Shared\NaiveBorderedText.Shared.shproj", "{8BA43146-C85F-4FC8-849C-0838A328F7F9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NaiveBorderedText.Windows", "Chapter_4\NaiveBorderedText\NaiveBorderedText.Windows\NaiveBorderedText.Windows.csproj", "{D6796B19-9041-46AE-984E-4116FAA23E3C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NaiveBorderedText.WindowsPhone", "Chapter_4\NaiveBorderedText\NaiveBorderedText.WindowsPhone\NaiveBorderedText.WindowsPhone.csproj", "{8AD09B68-C114-482A-B7B9-77EE0DC14B12}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BetterBorderedText", "BetterBorderedText", "{82BB62F0-695E-4FC8-9A81-A21A838467A7}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "BetterBorderedText.Shared", "Chapter_4\BetterBorderedText\BetterBorderedText.Shared\BetterBorderedText.Shared.shproj", "{395880A8-6ACF-4CFF-9986-0CC07C74C869}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BetterBorderedText.Windows", "Chapter_4\BetterBorderedText\BetterBorderedText.Windows\BetterBorderedText.Windows.csproj", "{056FA1CB-5512-4498-8390-058E9F1364B2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BetterBorderedText.WindowsPhone", "Chapter_4\BetterBorderedText\BetterBorderedText.WindowsPhone\BetterBorderedText.WindowsPhone.csproj", "{050FA990-B34A-4B54-8B0C-A2E3063F0B2F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleEllipse", "SimpleEllipse", "{5414A44A-3BB9-4EC9-BB44-AEBADA9DA9B2}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SimpleEllipse.Shared", "Chapter_4\SimpleEllipse\SimpleEllipse.Shared\SimpleEllipse.Shared.shproj", "{E00DB46D-1ACF-4B5E-8C15-BC04B44EE466}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleEllipse.Windows", "Chapter_4\SimpleEllipse\SimpleEllipse.Windows\SimpleEllipse.Windows.csproj", "{F9F01FA4-E480-4213-A9DB-017EBE897F76}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleEllipse.WindowsPhone", "Chapter_4\SimpleEllipse\SimpleEllipse.WindowsPhone\SimpleEllipse.WindowsPhone.csproj", "{3EA0B9C5-B7D3-404F-B3EE-59E2C3DAED1C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleVerticalStack", "SimpleVerticalStack", "{0A9B1988-D0D8-4C41-A28B-649AE9FFCD84}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SimpleVerticalStack.Shared", "Chapter_4\SimpleVerticalStack\SimpleVerticalStack.Shared\SimpleVerticalStack.Shared.shproj", "{838962D7-447A-4DAD-B303-5D1AB4B5E879}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleVerticalStack.Windows", "Chapter_4\SimpleVerticalStack\SimpleVerticalStack.Windows\SimpleVerticalStack.Windows.csproj", "{9576C869-108E-4191-8E75-575B6098A6B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleVerticalStack.WindowsPhone", "Chapter_4\SimpleVerticalStack\SimpleVerticalStack.WindowsPhone\SimpleVerticalStack.WindowsPhone.csproj", "{53BFB111-E20E-4731-A2CD-80BF331D4B4C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleHorizontalStack", "SimpleHorizontalStack", "{25120E4D-44DE-4438-8DA0-4BDAAE10FED9}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SimpleHorizontalStack.Shared", "Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.Shared\SimpleHorizontalStack.Shared.shproj", "{D311EBF0-01C2-4956-A4CD-86E9111355C4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleHorizontalStack.Windows", "Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.Windows\SimpleHorizontalStack.Windows.csproj", "{4E021DD9-AE1A-41BB-9D19-2FBC98D878FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleHorizontalStack.WindowsPhone", "Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.WindowsPhone\SimpleHorizontalStack.WindowsPhone.csproj", "{4FC06E28-85AF-4BBD-B5AF-B460BB2CEC62}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WhatSizeWithBindings", "WhatSizeWithBindings", "{53FCCF1F-2D86-47F0-B130-3EE094215D19}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WhatSizeWithBindings.Shared", "Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.Shared\WhatSizeWithBindings.Shared.shproj", "{7F2E2340-04D4-4F0D-9A8B-F3662641782C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSizeWithBindings.Windows", "Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.Windows\WhatSizeWithBindings.Windows.csproj", "{B850CFBD-B333-478D-8530-1B53AFD128D3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSizeWithBindings.WindowsPhone", "Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.WindowsPhone\WhatSizeWithBindings.WindowsPhone.csproj", "{E707E639-F661-4394-8728-D39E1579B43D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WhatSizeWithBindingConverter", "WhatSizeWithBindingConverter", "{865277AF-E983-481C-B11F-A6A2630977A4}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WhatSizeWithBindingConverter.Shared", "Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.Shared\WhatSizeWithBindingConverter.Shared.shproj", "{85E44137-4233-49CC-8E33-2570B4DB8127}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSizeWithBindingConverter.Windows", "Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.Windows\WhatSizeWithBindingConverter.Windows.csproj", "{69273E47-F29D-464C-8F94-7C4B5769FB8C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhatSizeWithBindingConverter.WindowsPhone", "Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.WindowsPhone\WhatSizeWithBindingConverter.WindowsPhone.csproj", "{074CCD24-B4DB-477C-8A32-1053B30FA5B0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StackPanelWithScrolling", "StackPanelWithScrolling", "{CC9DB195-2192-44B8-A007-49923BE6B451}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "StackPanelWithScrolling.Shared", "Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.Shared\StackPanelWithScrolling.Shared.shproj", "{F338AD23-BD67-44B3-93C1-EE3702280750}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StackPanelWithScrolling.Windows", "Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.Windows\StackPanelWithScrolling.Windows.csproj", "{19CC2B73-7E87-4C47-A4A7-A7187BE389DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StackPanelWithScrolling.WindowsPhone", "Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.WindowsPhone\StackPanelWithScrolling.WindowsPhone.csproj", "{7B58E9AD-5C80-4968-865C-40549BFCE49D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DependencyObjectClassHierarchy", "DependencyObjectClassHierarchy", "{2DE24156-40B3-4170-A75B-2904CFFD1DA6}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DependencyObjectClassHierarchy.Shared", "Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.Shared\DependencyObjectClassHierarchy.Shared.shproj", "{4B00AAED-3BCE-439D-AF72-85CE6A432941}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyObjectClassHierarchy.Windows", "Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.Windows\DependencyObjectClassHierarchy.Windows.csproj", "{86086669-5F60-4426-A1CA-D887C5D2FE88}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyObjectClassHierarchy.WindowsPhone", "Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.WindowsPhone\DependencyObjectClassHierarchy.WindowsPhone.csproj", "{EE8B171C-EED1-41ED-85A5-59BB13A66C1A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorList1", "ColorList1", "{960EB01B-ED5B-445B-9C93-B582AE24DDD8}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorList1.Shared", "Chapter_4\ColorList1\ColorList1.Shared\ColorList1.Shared.shproj", "{84A3F97E-4C5F-46E0-8FF5-2F0B047F4D6F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList1.Windows", "Chapter_4\ColorList1\ColorList1.Windows\ColorList1.Windows.csproj", "{EF28CDE3-E65F-4F57-8D0C-FB9D8A5E6F0E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList1.WindowsPhone", "Chapter_4\ColorList1\ColorList1.WindowsPhone\ColorList1.WindowsPhone.csproj", "{5D8CDA5C-9AEC-4A7B-B83A-D481BD3FECD1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorList2", "ColorList2", "{3D9A1008-3B16-42A0-8897-FD19E7A32668}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorList2.Shared", "Chapter_4\ColorList2\ColorList2.Shared\ColorList2.Shared.shproj", "{7A3E5DA4-AA77-48C2-9EDC-381DE018181A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList2.Windows", "Chapter_4\ColorList2\ColorList2.Windows\ColorList2.Windows.csproj", "{47C5AC4E-3045-4274-90A6-45D71C44EE6A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList2.WindowsPhone", "Chapter_4\ColorList2\ColorList2.WindowsPhone\ColorList2.WindowsPhone.csproj", "{6B90429F-5A7B-49D7-A031-F4D4DD5101F0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorList3", "ColorList3", "{788C78E2-D381-43A3-A6CD-7FD5CE42032F}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorList3.Shared", "Chapter_4\ColorList3\ColorList3.Shared\ColorList3.Shared.shproj", "{40116F28-73A6-4A13-90FC-006EED79F433}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList3.Windows", "Chapter_4\ColorList3\ColorList3.Windows\ColorList3.Windows.csproj", "{9F2BD6FC-C388-49C8-89F6-9D7421D9D27F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorList3.WindowsPhone", "Chapter_4\ColorList3\ColorList3.WindowsPhone\ColorList3.WindowsPhone.csproj", "{695CC2BC-F7E5-4937-A650-846ACA6F9706}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Petzold.Windows10.Controls", "Chapter_4\ColorList3\Petzold.Windows10.Controls\Petzold.Windows10.Controls.csproj", "{EE7AB976-6633-4A3E-BB05-83FC49494D1A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorWrap", "ColorWrap", "{F18AD60A-75FA-4FF7-A6AC-73D6A0E7376D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorWrap.Shared", "Chapter_4\ColorWrap\ColorWrap.Shared\ColorWrap.Shared.shproj", "{670A86CD-3BEA-4D87-880B-569F7629A677}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorWrap.Windows", "Chapter_4\ColorWrap\ColorWrap.Windows\ColorWrap.Windows.csproj", "{AA26CDBC-B6DC-4737-B16E-5C78AEC7E277}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorWrap.WindowsPhone", "Chapter_4\ColorWrap\ColorWrap.WindowsPhone\ColorWrap.WindowsPhone.csproj", "{40F5AC99-8C9D-47C4-99E7-569D48B66EED}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TextOnCanvas", "TextOnCanvas", "{4E64C95D-F6F1-40A9-A584-8427D94EFD1C}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TextOnCanvas.Shared", "Chapter_4\TextOnCanvas\TextOnCanvas.Shared\TextOnCanvas.Shared.shproj", "{0E302295-B577-4FE8-BD06-252C4A9ADC61}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextOnCanvas.Windows", "Chapter_4\TextOnCanvas\TextOnCanvas.Windows\TextOnCanvas.Windows.csproj", "{E57E5ACB-C739-4861-A96A-8DBFE1E5DB9A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextOnCanvas.WindowsPhone", "Chapter_4\TextOnCanvas\TextOnCanvas.WindowsPhone\TextOnCanvas.WindowsPhone.csproj", "{94B701EA-F5DC-4632-9EAE-7503884DA17A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TapAndShowPoint", "TapAndShowPoint", "{A43EF81F-0E93-4780-AB3E-B27666B35371}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TapAndShowPoint.Shared", "Chapter_4\TapAndShowPoint\TapAndShowPoint.Shared\TapAndShowPoint.Shared.shproj", "{42FF5EB9-6611-436B-8B9E-C0FB955AE686}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TapAndShowPoint.Windows", "Chapter_4\TapAndShowPoint\TapAndShowPoint.Windows\TapAndShowPoint.Windows.csproj", "{48665700-4FFD-4C6B-93D2-FB310471F3AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TapAndShowPoint.WindowsPhone", "Chapter_4\TapAndShowPoint\TapAndShowPoint.WindowsPhone\TapAndShowPoint.WindowsPhone.csproj", "{1DAA87DC-5A04-4B15-863C-E4AEB8EDC594}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TextInSmallGrid", "TextInSmallGrid", "{B2DF7875-B19D-49B4-8733-0D7119F62126}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TextInSmallGrid.Shared", "Chapter_4\TextInSmallGrid\TextInSmallGrid.Shared\TextInSmallGrid.Shared.shproj", "{F143B747-71E0-4DB0-9D47-CB8783D9004D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextInSmallGrid.Windows", "Chapter_4\TextInSmallGrid\TextInSmallGrid.Windows\TextInSmallGrid.Windows.csproj", "{28E09233-EC03-436B-ACE3-7C51CC298AFB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextInSmallGrid.WindowsPhone", "Chapter_4\TextInSmallGrid\TextInSmallGrid.WindowsPhone\TextInSmallGrid.WindowsPhone.csproj", "{B95444A3-A617-408E-B1FA-7DA57615E39D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_5", "Chapter_5", "{F2C8784F-7260-4F13-8DCC-9B0BF7C27104}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SliderEvents", "SliderEvents", "{42C96C30-D22B-4081-8FB8-BB62D85D8CB2}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SliderEvents.Shared", "Chapter_5\SliderEvents\SliderEvents.Shared\SliderEvents.Shared.shproj", "{F4A4D31C-9028-4522-98EA-E3A72C3EC642}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderEvents.Windows", "Chapter_5\SliderEvents\SliderEvents.Windows\SliderEvents.Windows.csproj", "{898C512C-7A37-4FC2-A277-B98BBDA9188C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderEvents.WindowsPhone", "Chapter_5\SliderEvents\SliderEvents.WindowsPhone\SliderEvents.WindowsPhone.csproj", "{70B17588-7DF6-41A8-870E-C971CA53E327}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SliderBindings", "SliderBindings", "{B56BA4FC-4A76-4BA5-B0F3-887372E5685B}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SliderBindings.Shared", "Chapter_5\SliderBindings\SliderBindings.Shared\SliderBindings.Shared.shproj", "{766B9C3B-C4BB-4BFD-8A02-5A1DAA047626}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderBindings.Windows", "Chapter_5\SliderBindings\SliderBindings.Windows\SliderBindings.Windows.csproj", "{4AD91FB5-0859-46CB-B4C4-4F012B9A13E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderBindings.WindowsPhone", "Chapter_5\SliderBindings\SliderBindings.WindowsPhone\SliderBindings.WindowsPhone.csproj", "{74E8CE3E-8C72-4EE8-BB3B-D7E4D71A51AD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleColorScroll", "SimpleColorScroll", "{73CC1C44-88D2-4F4D-A518-3D2B28BC2F8D}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SimpleColorScroll.Shared", "Chapter_5\SimpleColorScroll\SimpleColorScroll.Shared\SimpleColorScroll.Shared.shproj", "{E9DA07A2-E5DA-4C14-BAB0-20F284B9CFDA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleColorScroll.Windows", "Chapter_5\SimpleColorScroll\SimpleColorScroll.Windows\SimpleColorScroll.Windows.csproj", "{23EA4DA9-7E15-4A41-B8F9-C762B523DF5B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleColorScroll.WindowsPhone", "Chapter_5\SimpleColorScroll\SimpleColorScroll.WindowsPhone\SimpleColorScroll.WindowsPhone.csproj", "{F43E47BE-1FB1-4F02-AF81-0C3D77875B61}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "OrientableColorScroll", "OrientableColorScroll", "{32CC6734-DF47-46AC-AFB0-E16847D04B48}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "OrientableColorScroll.Shared", "Chapter_5\OrientableColorScroll\OrientableColorScroll.Shared\OrientableColorScroll.Shared.shproj", "{3038407A-EA68-47BB-942E-4D5B82908A67}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OrientableColorScroll.Windows", "Chapter_5\OrientableColorScroll\OrientableColorScroll.Windows\OrientableColorScroll.Windows.csproj", "{2BF9EB77-6DA1-4441-9F4F-4C62994E00CE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OrientableColorScroll.WindowsPhone", "Chapter_5\OrientableColorScroll\OrientableColorScroll.WindowsPhone\OrientableColorScroll.WindowsPhone.csproj", "{5E72CE1D-59F0-4A63-9553-D65BCCA3EB2A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorScrollWithValueConverter", "ColorScrollWithValueConverter", "{AF2582E6-1D04-4AD7-9904-851F6EC89923}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorScrollWithValueConverter.Shared", "Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.Shared\ColorScrollWithValueConverter.Shared.shproj", "{4A738317-03F3-4D95-8954-DE1E5F943861}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorScrollWithValueConverter.Windows", "Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.Windows\ColorScrollWithValueConverter.Windows.csproj", "{657C81B1-AFB1-43E6-AB6E-BAC43DF8F5B0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorScrollWithValueConverter.WindowsPhone", "Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.WindowsPhone\ColorScrollWithValueConverter.WindowsPhone.csproj", "{44880579-5DF3-4105-B1D6-B1F7FC68DB4F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SliderSketch", "SliderSketch", "{BE419178-4E09-468F-B211-20AA8FD99260}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SliderSketch.Shared", "Chapter_5\SliderSketch\SliderSketch.Shared\SliderSketch.Shared.shproj", "{8E5DF399-E01E-4E15-8DB1-F96C021B636C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderSketch.Windows", "Chapter_5\SliderSketch\SliderSketch.Windows\SliderSketch.Windows.csproj", "{4D7536B1-21D3-41FD-B372-C7050345B054}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderSketch.WindowsPhone", "Chapter_5\SliderSketch\SliderSketch.WindowsPhone\SliderSketch.WindowsPhone.csproj", "{AFEC744C-1B75-4B51-BF8F-A112CDC00BEC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ButtonVarieties", "ButtonVarieties", "{B7B77187-258F-44E1-9434-330865860A98}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ButtonVarieties.Shared", "Chapter_5\ButtonVarieties\ButtonVarieties.Shared\ButtonVarieties.Shared.shproj", "{099C7E66-102B-4644-9C13-9F915914E5B5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ButtonVarieties.Windows", "Chapter_5\ButtonVarieties\ButtonVarieties.Windows\ButtonVarieties.Windows.csproj", "{3F7524F7-639C-4FCF-8291-563316EC9451}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ButtonVarieties.WindowsPhone", "Chapter_5\ButtonVarieties\ButtonVarieties.WindowsPhone\ButtonVarieties.WindowsPhone.csproj", "{9104ABC2-B5F5-484C-97E2-5C3F0930371C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleKeypad", "SimpleKeypad", "{0280371C-1D2B-4E9A-8CE8-15B256DD115E}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SimpleKeypad.Shared", "Chapter_5\SimpleKeypad\SimpleKeypad.Shared\SimpleKeypad.Shared.shproj", "{51ED1381-2B83-4650-A7C6-BBD265A984E9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleKeypad.Windows", "Chapter_5\SimpleKeypad\SimpleKeypad.Windows\SimpleKeypad.Windows.csproj", "{CC07CB34-B411-4CA2-973F-79BC52241604}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleKeypad.WindowsPhone", "Chapter_5\SimpleKeypad\SimpleKeypad.WindowsPhone\SimpleKeypad.WindowsPhone.csproj", "{52011953-A7C9-49DD-9ECB-55D1ED868F17}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DependencyProperties", "DependencyProperties", "{F3BDF920-6AC2-4291-A932-14933B53D9C3}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DependencyProperties.Shared", "Chapter_5\DependencyProperties\DependencyProperties.Shared\DependencyProperties.Shared.shproj", "{651A9540-07A2-4F71-8D67-6DD3D523A939}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyProperties.Windows", "Chapter_5\DependencyProperties\DependencyProperties.Windows\DependencyProperties.Windows.csproj", "{D194DD94-E078-4039-908A-E476DEDD780C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyProperties.WindowsPhone", "Chapter_5\DependencyProperties\DependencyProperties.WindowsPhone\DependencyProperties.WindowsPhone.csproj", "{CC3C31E1-7CF3-4F31-9150-83BAEF73E16A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DependencyPropertiesWithBindings", "DependencyPropertiesWithBindings", "{78AF5CB1-4BB6-4E9D-BA58-A6A2FB0246A1}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "DependencyPropertiesWithBindings.Shared", "Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.Shared\DependencyPropertiesWithBindings.Shared.shproj", "{E5F9CC69-7453-4731-8462-1F00847BE76B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyPropertiesWithBindings.Windows", "Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.Windows\DependencyPropertiesWithBindings.Windows.csproj", "{884445F6-6030-4CE7-9E6D-2537C08DAB8B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyPropertiesWithBindings.WindowsPhone", "Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.WindowsPhone\DependencyPropertiesWithBindings.WindowsPhone.csproj", "{B8D05A14-6794-469B-8884-AEAB6552F1B4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LineCapsAndJoins", "LineCapsAndJoins", "{40AEFA4B-22E0-4BBE-823B-8368A529401A}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "LineCapsAndJoins.Shared", "Chapter_5\LineCapsAndJoins\LineCapsAndJoins.Shared\LineCapsAndJoins.Shared.shproj", "{1D525B87-7D9D-4CB0-90F9-C59D9BA81FFA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LineCapsAndJoins.Windows", "Chapter_5\LineCapsAndJoins\LineCapsAndJoins.Windows\LineCapsAndJoins.Windows.csproj", "{02290658-B3CE-4CDE-9451-FEDB1205DA71}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LineCapsAndJoins.WindowsPhone", "Chapter_5\LineCapsAndJoins\LineCapsAndJoins.WindowsPhone\LineCapsAndJoins.WindowsPhone.csproj", "{2E8FAE38-012E-4755-8185-B6E0363DA24F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LineCapsAndJoinsWithCustomClass", "LineCapsAndJoinsWithCustomClass", "{39491EE8-92F9-41F1-A795-28584A4E5D2C}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "LineCapsAndJoinsWithCustomClass.Shared", "Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.Shared\LineCapsAndJoinsWithCustomClass.Shared.shproj", "{B9A34716-6463-4795-8020-E032F35B8768}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LineCapsAndJoinsWithCustomClass.Windows", "Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.Windows\LineCapsAndJoinsWithCustomClass.Windows.csproj", "{36B643AE-F1A9-4082-BF50-AFD853BEB945}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LineCapsAndJoinsWithCustomClass.WindowsPhone", "Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.WindowsPhone\LineCapsAndJoinsWithCustomClass.WindowsPhone.csproj", "{4DD12C7B-4E3D-4AB7-971D-138E32021118}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TextBoxInputScopes", "TextBoxInputScopes", "{747704FC-F560-4BAF-879F-42D1C55BCB17}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "TextBoxInputScopes.Shared", "Chapter_5\TextBoxInputScopes\TextBoxInputScopes.Shared\TextBoxInputScopes.Shared.shproj", "{CDE74A88-348F-40D7-BB9F-C56406C88711}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextBoxInputScopes.Windows", "Chapter_5\TextBoxInputScopes\TextBoxInputScopes.Windows\TextBoxInputScopes.Windows.csproj", "{A5DC2B7B-A686-4915-BD03-6514271BF258}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextBoxInputScopes.WindowsPhone", "Chapter_5\TextBoxInputScopes\TextBoxInputScopes.WindowsPhone\TextBoxInputScopes.WindowsPhone.csproj", "{AB4222CB-2252-44CA-91D4-4EA44BF33BA9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlphabetBlocks", "AlphabetBlocks", "{5FD92227-A83D-4805-974D-1DF491EE14DB}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "AlphabetBlocks.Shared", "Chapter_5\AlphabetBlocks\AlphabetBlocks.Shared\AlphabetBlocks.Shared.shproj", "{DA75557D-315D-4298-A291-7B91A2581464}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlphabetBlocks.Windows", "Chapter_5\AlphabetBlocks\AlphabetBlocks.Windows\AlphabetBlocks.Windows.csproj", "{662AFBA2-982A-4C92-A92F-BEC8DCE1517C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlphabetBlocks.WindowsPhone", "Chapter_5\AlphabetBlocks\AlphabetBlocks.WindowsPhone\AlphabetBlocks.WindowsPhone.csproj", "{128BBF9F-BC1F-4165-9053-D2809B8225F5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_6", "Chapter_6", "{AD6C8522-EEA7-437D-A6C0-088A614E6320}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ColorScrollWithViewModel", "ColorScrollWithViewModel", "{2FA07BA3-82F3-43F4-9395-DF473B05C111}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ColorScrollWithViewModel.Shared", "Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.Shared\ColorScrollWithViewModel.Shared.shproj", "{3DF64EA7-1D77-46AD-9BE3-5B9401469858}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorScrollWithViewModel.Windows", "Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.Windows\ColorScrollWithViewModel.Windows.csproj", "{0B3D7D7B-4B47-4E55-89B8-4799F7A9CDAE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorScrollWithViewModel.WindowsPhone", "Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.WindowsPhone\ColorScrollWithViewModel.WindowsPhone.csproj", "{93801D52-2DB5-454B-AB67-620CACC2D936}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorScrollWithDataContext", "Chapter_6\ColorScrollWithDataContext\ColorScrollWithDataContext.csproj", "{F277BE9C-3F96-4693-ABE7-3E4F195908DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorTextBoxes", "Chapter_6\ColorTextBoxes\ColorTextBoxes.csproj", "{3766693B-0B23-4044-9153-6CBB6C1E4800}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorTextBoxesWithEvents", "Chapter_6\ColorTextBoxesWithEvents\ColorTextBoxesWithEvents.csproj", "{725B808C-CE14-45A1-9ED2-C1B5489335E2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeypadWithViewModel", "Chapter_6\KeypadWithViewModel\KeypadWithViewModel.csproj", "{5FA5C1FE-199E-422E-8B6B-3D5816D02033}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_7", "Chapter_7", "{DED773A5-BCEB-44BF-8494-96D4AC29D2CE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HowToAsync1", "Chapter_7\HowToAsync1\HowToAsync1.csproj", "{527A007B-3698-41A8-8C09-68977F851E7C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HowToAsync2", "Chapter_7\HowToAsync2\HowToAsync2.csproj", "{88F9FD16-D8C5-4A54-9D63-73D842269E5D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HowToAsync3", "Chapter_7\HowToAsync3\HowToAsync3.csproj", "{899A937E-3B31-47A4-9CCA-9B327F4890DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HowToCancelAsync", "Chapter_7\HowToCancelAsync\HowToCancelAsync.csproj", "{4E45973C-803F-43A2-9A38-B1ED75B42668}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrimitivePad", "Chapter_7\PrimitivePad\PrimitivePad.csproj", "{424DC7BB-3722-4CA6-81C9-77A80252E98E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuspendResumeLog", "Chapter_7\SuspendResumeLog\SuspendResumeLog.csproj", "{A3B7BEB7-D1C4-4A00-B82B-1D0F399C9A69}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuickNotes", "Chapter_7\QuickNotes\QuickNotes.csproj", "{E6C32CEA-DDEC-44C6-B42C-835273719F93}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WordFreq", "Chapter_7\WordFreq\WordFreq.csproj", "{14740D79-AF9F-42B1-BE67-502DDE3621D7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Chapter_8", "Chapter_8", "{AB3FAF46-AFA7-4185-81AC-2F68154E3F10}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleContextMenu", "Chapter_8\SimpleContextMenu\SimpleContextMenu.csproj", "{644C8C6D-6DCF-4B90-9529-5F9B2CCAEE68}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleContextDialog", "Chapter_8\SimpleContextDialog\SimpleContextDialog.csproj", "{1864E5AF-DB05-4A55-913A-C0F9FCA5E52D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnconventionalAppBar", "Chapter_8\UnconventionalAppBar\UnconventionalAppBar.csproj", "{9682DA73-5D40-49C7-9352-677D05C44C76}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LookAtAppBarButtonStyles", "Chapter_8\LookAtAppBarButtonStyles\LookAtAppBarButtonStyles.csproj", "{617B65AD-61B4-475C-A1FC-0CD329C30157}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SegoeSymbols", "Chapter_8\SegoeSymbols\SegoeSymbols.csproj", "{7D46D185-5451-41E7-97F3-E7952E82A0B5}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
Chapter_2\SharedBrush\SharedBrush.Shared\SharedBrush.Shared.projitems*{20acf86d-5ceb-4262-b1ce-fdb9b5be7223}*SharedItemsImports = 13
Chapter_3\ManualBrushAnimation\ManualBrushAnimation.Shared\ManualBrushAnimation.Shared.projitems*{1e103d83-f8fe-4569-ac39-63e056d5e877}*SharedItemsImports = 4
Chapter_1\HelloLocalImageCode\HelloLocalImageCode.Shared\HelloLocalImageCode.Shared.projitems*{621936a2-09b1-44f0-9ebe-ed85620880c0}*SharedItemsImports = 13
Chapter_5\ButtonVarieties\ButtonVarieties.Shared\ButtonVarieties.Shared.projitems*{099c7e66-102b-4644-9c13-9f915914e5b5}*SharedItemsImports = 13
Chapter_1\HelloImage\HelloImage.Shared\HelloImage.Shared.projitems*{04fc3aa6-98c0-4e14-b9f1-1b11dfd2c132}*SharedItemsImports = 4
Chapter_5\SliderEvents\SliderEvents.Shared\SliderEvents.Shared.projitems*{f4a4d31c-9028-4522-98ea-e3a72c3ec642}*SharedItemsImports = 13
Chapter_1\OverlappedStackedText\OverlappedStackedText.Shared\OverlappedStackedText.Shared.projitems*{95dcb456-9d0d-42a9-830e-8f25f8872d6f}*SharedItemsImports = 13
Chapter_3\RoutedEvents0\RoutedEvents0.Shared\RoutedEvents0.Shared.projitems*{f52d9fcd-5df3-40d0-af7d-2fa2d7c8da9e}*SharedItemsImports = 4
Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.Shared\WhatSizeWithBindings.Shared.projitems*{7f2e2340-04d4-4f0d-9a8b-f3662641782c}*SharedItemsImports = 13
Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.Shared\DependencyPropertiesWithBindings.Shared.projitems*{e5f9cc69-7453-4731-8462-1f00847be76b}*SharedItemsImports = 13
Chapter_5\AlphabetBlocks\AlphabetBlocks.Shared\AlphabetBlocks.Shared.projitems*{da75557d-315d-4298-a291-7b91a2581464}*SharedItemsImports = 13
Chapter_3\RoutedEvents6\RoutedEvents6.Shared\RoutedEvents6.Shared.projitems*{2fdd45a9-02ac-4ee8-b1e9-bff8424d6eea}*SharedItemsImports = 13
Chapter_1\InternationalHelloWorld\InternationalHelloWorld.Shared\InternationalHelloWorld.Shared.projitems*{240e80db-652d-466d-bb5c-d413883e31f9}*SharedItemsImports = 13
Chapter_5\SliderSketch\SliderSketch.Shared\SliderSketch.Shared.projitems*{8e5df399-e01e-4e15-8db1-f96c021b636c}*SharedItemsImports = 13
Chapter_5\OrientableColorScroll\OrientableColorScroll.Shared\OrientableColorScroll.Shared.projitems*{3038407a-ea68-47bb-942e-4d5b82908a67}*SharedItemsImports = 13
Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.Shared\ColorScrollWithValueConverter.Shared.projitems*{4a738317-03f3-4d95-8954-de1e5f943861}*SharedItemsImports = 13
Chapter_1\HelloLocalImage\HelloLocalImage.Shared\HelloLocalImage.Shared.projitems*{1f584c28-692d-464c-8cee-ee15e16725bc}*SharedItemsImports = 4
Chapter_2\ImageBrushSpiral\ImageBrushSpiral.Shared\ImageBrushSpiral.Shared.projitems*{89c5b17d-6fe2-4a6b-810b-7fd5ca007cec}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoins\LineCapsAndJoins.Shared\LineCapsAndJoins.Shared.projitems*{2e8fae38-012e-4755-8185-b6e0363da24f}*SharedItemsImports = 4
Chapter_2\Spiral\Spiral.Shared\Spiral.Shared.projitems*{6af39583-bcdb-431d-bf28-4cfbbf0dc0fb}*SharedItemsImports = 4
Chapter_4\ColorWrap\ColorWrap.Shared\ColorWrap.Shared.projitems*{40f5ac99-8c9d-47c4-99e7-569d48b66eed}*SharedItemsImports = 4
Chapter_2\SharedBrush\SharedBrush.Shared\SharedBrush.Shared.projitems*{1be4667b-f804-4f46-afc7-79b4a1d1fbe5}*SharedItemsImports = 4
Chapter_3\RainbowEight\RainbowEight.Shared\RainbowEight.Shared.projitems*{414136bb-42aa-4be0-acc1-99bb6af9d322}*SharedItemsImports = 4
Chapter_4\SimpleVerticalStack\SimpleVerticalStack.Shared\SimpleVerticalStack.Shared.projitems*{838962d7-447a-4dad-b303-5d1ab4b5e879}*SharedItemsImports = 13
Chapter_5\SimpleColorScroll\SimpleColorScroll.Shared\SimpleColorScroll.Shared.projitems*{23ea4da9-7e15-4a41-b8f9-c762b523df5b}*SharedItemsImports = 4
Chapter_1\HelloVideo\HelloVideo.Shared\HelloVideo.Shared.projitems*{8e304de1-810a-409f-a168-918fe9b141b3}*SharedItemsImports = 13
Chapter_4\TextOnCanvas\TextOnCanvas.Shared\TextOnCanvas.Shared.projitems*{0e302295-b577-4fe8-bd06-252c4a9adc61}*SharedItemsImports = 13
Chapter_3\RainbowEight\RainbowEight.Shared\RainbowEight.Shared.projitems*{8019000a-d570-46bc-bd23-cbca8e48b0e5}*SharedItemsImports = 13
Chapter_1\HelloImage\HelloImage.Shared\HelloImage.Shared.projitems*{547d44ab-77d1-46f6-9fe1-bd05a7bbd1f3}*SharedItemsImports = 4
Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.Shared\HelloVectorGraphicsPath.Shared.projitems*{8c691e2f-e897-44d1-8714-fa418db8ce2b}*SharedItemsImports = 4
Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.Shared\StackPanelWithScrolling.Shared.projitems*{f338ad23-bd67-44b3-93c1-ee3702280750}*SharedItemsImports = 13
Chapter_5\SimpleKeypad\SimpleKeypad.Shared\SimpleKeypad.Shared.projitems*{52011953-a7c9-49dd-9ecb-55d1ed868f17}*SharedItemsImports = 4
Chapter_3\RainbowEight\RainbowEight.Shared\RainbowEight.Shared.projitems*{961200c8-f321-46a5-8e18-c626c858e815}*SharedItemsImports = 4
Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.Shared\WhatSizeWithBindingConverter.Shared.projitems*{074ccd24-b4db-477c-8a32-1053b30fa5b0}*SharedItemsImports = 4
Chapter_4\TapAndShowPoint\TapAndShowPoint.Shared\TapAndShowPoint.Shared.projitems*{1daa87dc-5a04-4b15-863c-e4aeb8edc594}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoins\LineCapsAndJoins.Shared\LineCapsAndJoins.Shared.projitems*{1d525b87-7d9d-4cb0-90f9-c59d9ba81ffa}*SharedItemsImports = 13
Chapter_2\GradientBrushMarkup\GradientBrushMarkup.Shared\GradientBrushMarkup.Shared.projitems*{a081286c-be39-4722-b2a3-b90cfc774880}*SharedItemsImports = 13
Chapter_1\HelloAudio\HelloAudio.Shared\HelloAudio.Shared.projitems*{3c949d39-19f5-44d2-9682-8d6e6940727c}*SharedItemsImports = 4
Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.Shared\ColorScrollWithValueConverter.Shared.projitems*{44880579-5df3-4105-b1d6-b1f7fc68db4f}*SharedItemsImports = 4
Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.Shared\VectorGraphicsStretch.Shared.projitems*{6d1b4e7f-39c5-4da6-b872-febd0779ceb6}*SharedItemsImports = 4
Chapter_5\SliderSketch\SliderSketch.Shared\SliderSketch.Shared.projitems*{4d7536b1-21d3-41fd-b372-c7050345b054}*SharedItemsImports = 4
Chapter_2\StretchedSpiral\StretchedSpiral.Shared\StretchedSpiral.Shared.projitems*{0d31b2e7-42e9-4100-91d9-e3f179f657a9}*SharedItemsImports = 4
Chapter_1\HelloLocalImageCode\HelloLocalImageCode.Shared\HelloLocalImageCode.Shared.projitems*{0a63a82f-7120-4cab-82da-d509db2ef7db}*SharedItemsImports = 4
Chapter_4\TextOnCanvas\TextOnCanvas.Shared\TextOnCanvas.Shared.projitems*{e57e5acb-c739-4861-a96a-8dbfe1e5db9a}*SharedItemsImports = 4
Chapter_4\TextInSmallGrid\TextInSmallGrid.Shared\TextInSmallGrid.Shared.projitems*{28e09233-ec03-436b-ace3-7c51cc298afb}*SharedItemsImports = 4
Chapter_3\TapTextBlock\TapTextBlock.Shared\TapTextBlock.Shared.projitems*{d1f6ace7-100d-4100-8fbf-79777a550216}*SharedItemsImports = 13
Chapter_1\HelloCode\HelloCode.Shared\HelloCode.Shared.projitems*{48f249a9-0772-4b48-93c7-f5681a895907}*SharedItemsImports = 4
Chapter_3\RoutedEvents2\RoutedEvents2.Shared\RoutedEvents2.Shared.projitems*{0060f9ed-bb8d-401e-8463-01da0cf02eb6}*SharedItemsImports = 13
Chapter_3\RoutedEvents6\RoutedEvents6.Shared\RoutedEvents6.Shared.projitems*{057f0104-35e0-4ce6-9678-8c226ae2b66b}*SharedItemsImports = 4
Chapter_2\TextStretch\TextStretch.Shared\TextStretch.Shared.projitems*{b13be672-d0c2-4c52-82bf-ddafd1a3ea8d}*SharedItemsImports = 4
Chapter_3\RoutedEvents1\RoutedEvents1.Shared\RoutedEvents1.Shared.projitems*{7a77725e-3db8-4404-bf14-fad794687b0b}*SharedItemsImports = 4
Chapter_3\ManualColorAnimation\ManualColorAnimation.Shared\ManualColorAnimation.Shared.projitems*{d44a447f-8ace-49bc-9fad-e0ceb9575863}*SharedItemsImports = 4
Chapter_3\RoutedEvents2\RoutedEvents2.Shared\RoutedEvents2.Shared.projitems*{0689e164-b517-42c6-bf24-0dbdf90542e5}*SharedItemsImports = 4
Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.Shared\StackPanelWithScrolling.Shared.projitems*{19cc2b73-7e87-4c47-a4a7-a7187be389da}*SharedItemsImports = 4
Chapter_1\InternationalHelloWorld\InternationalHelloWorld.Shared\InternationalHelloWorld.Shared.projitems*{cf2584bc-81ea-4629-b6af-8eb3e2d3d3c6}*SharedItemsImports = 4
Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.Shared\PathMarkupSyntaxCode.Shared.projitems*{a951fae7-13a9-422c-a2c2-7a6b3fc9150d}*SharedItemsImports = 4
Chapter_5\SimpleKeypad\SimpleKeypad.Shared\SimpleKeypad.Shared.projitems*{51ed1381-2b83-4650-a7c6-bbd265a984e9}*SharedItemsImports = 13
Chapter_4\ColorList3\ColorList3.Shared\ColorList3.Shared.projitems*{9f2bd6fc-c388-49c8-89f6-9d7421d9d27f}*SharedItemsImports = 4
Chapter_1\OverlappedStackedText\OverlappedStackedText.Shared\OverlappedStackedText.Shared.projitems*{abe94b4a-9641-4d1e-b020-fc79465a2343}*SharedItemsImports = 4
Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.Shared\WhatSizeWithBindings.Shared.projitems*{e707e639-f661-4394-8728-d39e1579b43d}*SharedItemsImports = 4
Chapter_2\GradientBrushMarkup\GradientBrushMarkup.Shared\GradientBrushMarkup.Shared.projitems*{1be9c75f-4e5f-4a93-9170-96995adc2c3a}*SharedItemsImports = 4
Chapter_5\SliderEvents\SliderEvents.Shared\SliderEvents.Shared.projitems*{70b17588-7df6-41a8-870e-c971ca53e327}*SharedItemsImports = 4
Chapter_2\ImageBrushSpiral\ImageBrushSpiral.Shared\ImageBrushSpiral.Shared.projitems*{f9415afb-3337-4267-a47f-0e689f5d1a0e}*SharedItemsImports = 13
Chapter_4\ColorList2\ColorList2.Shared\ColorList2.Shared.projitems*{6b90429f-5a7b-49d7-a031-f4d4dd5101f0}*SharedItemsImports = 4
Chapter_5\TextBoxInputScopes\TextBoxInputScopes.Shared\TextBoxInputScopes.Shared.projitems*{ab4222cb-2252-44ca-91d4-4ea44bf33ba9}*SharedItemsImports = 4
Chapter_3\ManualColorAnimation\ManualColorAnimation.Shared\ManualColorAnimation.Shared.projitems*{b173c522-1729-4c46-a5f6-6ff4ea4f0db9}*SharedItemsImports = 4
Chapter_1\HelloImageCode\HelloImageCode.Shared\HelloImageCode.Shared.projitems*{222f9361-ac51-465f-843d-47a8f3120c70}*SharedItemsImports = 4
Chapter_1\HelloLocalImage\HelloLocalImage.Shared\HelloLocalImage.Shared.projitems*{bc4dc958-a5c6-4285-95a3-d069f801ed3a}*SharedItemsImports = 4
Chapter_3\ManualBrushAnimation\ManualBrushAnimation.Shared\ManualBrushAnimation.Shared.projitems*{d593bcec-ae3e-4268-9d1b-b2756e345224}*SharedItemsImports = 4
Chapter_1\HelloLocalImage\HelloLocalImage.Shared\HelloLocalImage.Shared.projitems*{aef1d07a-c877-4194-be23-ac41ffd6752d}*SharedItemsImports = 13
Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.Shared\DependencyPropertiesWithBindings.Shared.projitems*{884445f6-6030-4ce7-9e6d-2537c08dab8b}*SharedItemsImports = 4
Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.Shared\SharedBrushWithStyle.Shared.projitems*{64d1f1a0-d3fd-43a8-a4d9-79cd8d86399a}*SharedItemsImports = 4
Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.Shared\SimpleHorizontalStack.Shared.projitems*{4e021dd9-ae1a-41bb-9d19-2fbc98d878fc}*SharedItemsImports = 4
Chapter_4\SimpleEllipse\SimpleEllipse.Shared\SimpleEllipse.Shared.projitems*{3ea0b9c5-b7d3-404f-b3ee-59e2c3daed1c}*SharedItemsImports = 4
Chapter_1\HelloImage\HelloImage.Shared\HelloImage.Shared.projitems*{54b4f0a6-f06d-4203-b43c-74b7eda8ad1e}*SharedItemsImports = 13
Chapter_5\OrientableColorScroll\OrientableColorScroll.Shared\OrientableColorScroll.Shared.projitems*{5e72ce1d-59f0-4a63-9553-d65bcca3eb2a}*SharedItemsImports = 4
Chapter_3\ManualColorAnimation\ManualColorAnimation.Shared\ManualColorAnimation.Shared.projitems*{c126c309-0789-4caf-9561-14e815d95be6}*SharedItemsImports = 13
Chapter_4\SimpleVerticalStack\SimpleVerticalStack.Shared\SimpleVerticalStack.Shared.projitems*{9576c869-108e-4191-8e75-575b6098a6b3}*SharedItemsImports = 4
Chapter_3\RoutedEvents2\RoutedEvents2.Shared\RoutedEvents2.Shared.projitems*{d789fefa-e673-42a4-bde4-e327b5601553}*SharedItemsImports = 4
Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.Shared\HelloVectorGraphicsPath.Shared.projitems*{9bb4adf3-a067-4e67-b2e8-e8aece79818d}*SharedItemsImports = 13
Chapter_3\ManualBrushAnimation\ManualBrushAnimation.Shared\ManualBrushAnimation.Shared.projitems*{7419e3bf-46ce-4d0e-a08f-e1a0b3832245}*SharedItemsImports = 13
Chapter_1\HelloAudio\HelloAudio.Shared\HelloAudio.Shared.projitems*{1a8ee1db-1e0b-4b8b-a8fb-d13bc277e496}*SharedItemsImports = 13
Chapter_5\DependencyProperties\DependencyProperties.Shared\DependencyProperties.Shared.projitems*{d194dd94-e078-4039-908a-e476dedd780c}*SharedItemsImports = 4
Chapter_3\RoutedEvents3\RoutedEvents3.Shared\RoutedEvents3.Shared.projitems*{5385258a-7449-4f36-877a-f0eb297449c0}*SharedItemsImports = 4
Chapter_2\TextFormatting\TextFormatting.Shared\TextFormatting.Shared.projitems*{83ab47f9-30f7-4e0a-9a67-6acc8dc93152}*SharedItemsImports = 13
Chapter_2\HelloVectorGraphicsPath\HelloVectorGraphicsPath.Shared\HelloVectorGraphicsPath.Shared.projitems*{6822fe25-7128-47aa-b0ce-c5d9699778d1}*SharedItemsImports = 4
Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.Shared\ColorScrollWithViewModel.Shared.projitems*{93801d52-2db5-454b-ab67-620cacc2d936}*SharedItemsImports = 4
Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.Shared\WhatSizeWithBindingConverter.Shared.projitems*{85e44137-4233-49cc-8e33-2570b4db8127}*SharedItemsImports = 13
Chapter_4\TapAndShowPoint\TapAndShowPoint.Shared\TapAndShowPoint.Shared.projitems*{42ff5eb9-6611-436b-8b9e-c0fb955ae686}*SharedItemsImports = 13
Chapter_5\SimpleColorScroll\SimpleColorScroll.Shared\SimpleColorScroll.Shared.projitems*{f43e47be-1fb1-4f02-af81-0c3d77875b61}*SharedItemsImports = 4
Chapter_4\WhatSizeWithBindingConverter\WhatSizeWithBindingConverter.Shared\WhatSizeWithBindingConverter.Shared.projitems*{69273e47-f29d-464c-8f94-7c4b5769fb8c}*SharedItemsImports = 4
Chapter_4\ColorList1\ColorList1.Shared\ColorList1.Shared.projitems*{84a3f97e-4c5f-46e0-8ff5-2f0b047f4d6f}*SharedItemsImports = 13
Chapter_4\ColorList2\ColorList2.Shared\ColorList2.Shared.projitems*{7a3e5da4-aa77-48c2-9edc-381de018181a}*SharedItemsImports = 13
Chapter_5\SliderBindings\SliderBindings.Shared\SliderBindings.Shared.projitems*{766b9c3b-c4bb-4bfd-8a02-5a1daa047626}*SharedItemsImports = 13
Chapter_3\ExpandingText\ExpandingText.Shared\ExpandingText.Shared.projitems*{35f252fe-9d29-4719-896b-43146e9ebda7}*SharedItemsImports = 13
Chapter_3\RoutedEvents4\RoutedEvents4.Shared\RoutedEvents4.Shared.projitems*{b3031025-7863-45e5-928e-264e2ae1cd4d}*SharedItemsImports = 4
Chapter_3\RoutedEvents7\RoutedEvents7.Shared\RoutedEvents7.Shared.projitems*{230843c9-24bc-4c62-a69e-e940a4a60d07}*SharedItemsImports = 4
Chapter_2\Spiral\Spiral.Shared\Spiral.Shared.projitems*{2585dd85-15bb-4c59-af02-df05cac7801f}*SharedItemsImports = 13
Chapter_3\ExpandingText\ExpandingText.Shared\ExpandingText.Shared.projitems*{05005ce7-51d6-4064-ad98-bb1755e36155}*SharedItemsImports = 4
Chapter_4\ColorList1\ColorList1.Shared\ColorList1.Shared.projitems*{ef28cde3-e65f-4f57-8d0c-fb9d8a5e6f0e}*SharedItemsImports = 4
Chapter_2\HelloVectorGraphics\HelloVectorGraphics.Shared\HelloVectorGraphics.Shared.projitems*{7d77c78a-1911-43be-aeb0-97050b38c774}*SharedItemsImports = 13
Chapter_1\HelloCode\HelloCode.Shared\HelloCode.Shared.projitems*{02d05ea1-0ef4-4b1b-a698-f9911f40c6ff}*SharedItemsImports = 13
Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.Shared\DependencyObjectClassHierarchy.Shared.projitems*{4b00aaed-3bce-439d-af72-85ce6a432941}*SharedItemsImports = 13
Chapter_3\RoutedEvents4\RoutedEvents4.Shared\RoutedEvents4.Shared.projitems*{1e2706bc-5e28-4ba5-b511-b8a953994927}*SharedItemsImports = 4
Chapter_3\RoutedEvents0\RoutedEvents0.Shared\RoutedEvents0.Shared.projitems*{ad6f68f0-eed5-47c2-bfbc-bb98934d0e81}*SharedItemsImports = 13
Chapter_3\RoutedEvents3\RoutedEvents3.Shared\RoutedEvents3.Shared.projitems*{cdee815e-f880-4cca-87df-cfd1c0f94597}*SharedItemsImports = 4
Chapter_1\WrappedText\WrappedText.Shared\WrappedText.Shared.projitems*{b09a21f0-3519-439d-8351-7f780046dd73}*SharedItemsImports = 4
Chapter_3\TapTextBlock\TapTextBlock.Shared\TapTextBlock.Shared.projitems*{ff3172c2-8a81-4955-b18e-8f8e8602556e}*SharedItemsImports = 4
Chapter_3\WhatSize\WhatSize.Shared\WhatSize.Shared.projitems*{ff775ea7-bb3c-4772-8e1f-b8121f1c094a}*SharedItemsImports = 4
Chapter_4\TapAndShowPoint\TapAndShowPoint.Shared\TapAndShowPoint.Shared.projitems*{48665700-4ffd-4c6b-93d2-fb310471f3aa}*SharedItemsImports = 4
Chapter_3\DigitalClock\DigitalClock.Shared\DigitalClock.Shared.projitems*{4c22d466-3fda-4849-a801-8e5d4dd4b30b}*SharedItemsImports = 4
Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.Shared\VectorGraphicsStretch.Shared.projitems*{9cb7545f-9534-4c79-82df-f766cc5e93af}*SharedItemsImports = 4
Chapter_1\HelloCode\HelloCode.Shared\HelloCode.Shared.projitems*{59962562-3cca-4b3f-a31b-65acaf5c2479}*SharedItemsImports = 4
Chapter_5\SimpleKeypad\SimpleKeypad.Shared\SimpleKeypad.Shared.projitems*{cc07cb34-b411-4ca2-973f-79bc52241604}*SharedItemsImports = 4
Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.Shared\DependencyObjectClassHierarchy.Shared.projitems*{86086669-5f60-4426-a1ca-d887c5d2fe88}*SharedItemsImports = 4
Chapter_1\Hello\Hello.Shared\Hello.Shared.projitems*{4da66d4b-617b-4c99-93f6-2d7e5b874da3}*SharedItemsImports = 13
Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.Shared\SharedBrushWithBinding.Shared.projitems*{e9a7d8e3-94fe-4c66-a721-79257c0b8c1e}*SharedItemsImports = 4
Chapter_3\DigitalClock\DigitalClock.Shared\DigitalClock.Shared.projitems*{bd6add4f-80bd-428d-b184-3963024fb7b2}*SharedItemsImports = 13
Chapter_2\GradientBrushCode\GradientBrushCode.Shared\GradientBrushCode.Shared.projitems*{4835f9a2-70c0-4304-be49-3e3b8243cd1b}*SharedItemsImports = 4
Chapter_4\NaiveBorderedText\NaiveBorderedText.Shared\NaiveBorderedText.Shared.projitems*{d6796b19-9041-46ae-984e-4116faa23e3c}*SharedItemsImports = 4
Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.Shared\ColorScrollWithViewModel.Shared.projitems*{0b3d7d7b-4b47-4e55-89b8-4799f7a9cdae}*SharedItemsImports = 4
Chapter_1\HelloAudio\HelloAudio.Shared\HelloAudio.Shared.projitems*{c5f755f6-1475-4c89-a36b-d6eeda86cfe0}*SharedItemsImports = 4
Chapter_3\RoutedEvents7\RoutedEvents7.Shared\RoutedEvents7.Shared.projitems*{31ab4095-3707-4b06-b933-01abd34e6246}*SharedItemsImports = 13
Chapter_3\TapTextBlock\TapTextBlock.Shared\TapTextBlock.Shared.projitems*{8b3c9aec-33ed-4cf4-b5d6-b1ce177795bc}*SharedItemsImports = 4
Chapter_3\RoutedEvents6\RoutedEvents6.Shared\RoutedEvents6.Shared.projitems*{b282876d-3ccf-4931-afb3-840a58f032a6}*SharedItemsImports = 4
Chapter_5\OrientableColorScroll\OrientableColorScroll.Shared\OrientableColorScroll.Shared.projitems*{2bf9eb77-6da1-4441-9f4f-4c62994e00ce}*SharedItemsImports = 4
Chapter_4\ColorWrap\ColorWrap.Shared\ColorWrap.Shared.projitems*{670a86cd-3bea-4d87-880b-569f7629a677}*SharedItemsImports = 13
Chapter_5\ButtonVarieties\ButtonVarieties.Shared\ButtonVarieties.Shared.projitems*{3f7524f7-639c-4fcf-8291-563316ec9451}*SharedItemsImports = 4
Chapter_5\SliderBindings\SliderBindings.Shared\SliderBindings.Shared.projitems*{4ad91fb5-0859-46cb-b4c4-4f012b9a13e8}*SharedItemsImports = 4
Chapter_5\DependencyProperties\DependencyProperties.Shared\DependencyProperties.Shared.projitems*{651a9540-07a2-4f71-8d67-6dd3d523a939}*SharedItemsImports = 13
Chapter_4\WhatSizeWithBindings\WhatSizeWithBindings.Shared\WhatSizeWithBindings.Shared.projitems*{b850cfbd-b333-478d-8530-1b53afd128d3}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.Shared\LineCapsAndJoinsWithCustomClass.Shared.projitems*{4dd12c7b-4e3d-4ab7-971d-138e32021118}*SharedItemsImports = 4
Chapter_3\WhatSize\WhatSize.Shared\WhatSize.Shared.projitems*{2b4a13c1-52cd-4006-aa97-6b4dcedca824}*SharedItemsImports = 13
Chapter_1\WrappedText\WrappedText.Shared\WrappedText.Shared.projitems*{cff21f5a-3cc7-487c-bffc-e0d3842d27b8}*SharedItemsImports = 4
Chapter_4\ColorList1\ColorList1.Shared\ColorList1.Shared.projitems*{5d8cda5c-9aec-4a7b-b83a-d481bd3fecd1}*SharedItemsImports = 4
Chapter_1\HelloImageCode\HelloImageCode.Shared\HelloImageCode.Shared.projitems*{d868861e-edb9-40af-8aca-2603cf9131da}*SharedItemsImports = 13
Chapter_4\BetterBorderedText\BetterBorderedText.Shared\BetterBorderedText.Shared.projitems*{050fa990-b34a-4b54-8b0c-a2e3063f0b2f}*SharedItemsImports = 4
Chapter_4\TextOnCanvas\TextOnCanvas.Shared\TextOnCanvas.Shared.projitems*{94b701ea-f5dc-4632-9eae-7503884da17a}*SharedItemsImports = 4
Chapter_5\SliderSketch\SliderSketch.Shared\SliderSketch.Shared.projitems*{afec744c-1b75-4b51-bf8f-a112cdc00bec}*SharedItemsImports = 4
Chapter_1\InternationalHelloWorld\InternationalHelloWorld.Shared\InternationalHelloWorld.Shared.projitems*{73e0f7cb-2e9f-4d78-be0d-4bb9a52e5f08}*SharedItemsImports = 4
Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.Shared\SharedBrushWithBinding.Shared.projitems*{23b50c6d-41a0-43ec-877f-75384c1c27c4}*SharedItemsImports = 4
Chapter_3\RoutedEvents1\RoutedEvents1.Shared\RoutedEvents1.Shared.projitems*{4d77f24f-69c0-4dc8-8aee-3ce20eb852e7}*SharedItemsImports = 4
Chapter_2\StretchedSpiral\StretchedSpiral.Shared\StretchedSpiral.Shared.projitems*{92e03921-74d6-4777-ad68-fc0810654576}*SharedItemsImports = 13
Chapter_4\ColorList3\ColorList3.Shared\ColorList3.Shared.projitems*{695cc2bc-f7e5-4937-a650-846aca6f9706}*SharedItemsImports = 4
Chapter_2\Spiral\Spiral.Shared\Spiral.Shared.projitems*{a922ecda-a915-42fc-bcb0-1be29a1d28d1}*SharedItemsImports = 4
Chapter_2\ImageBrushSpiral\ImageBrushSpiral.Shared\ImageBrushSpiral.Shared.projitems*{d31e6a47-8723-4201-8a1b-482e94a78ae6}*SharedItemsImports = 4
Chapter_4\SimpleEllipse\SimpleEllipse.Shared\SimpleEllipse.Shared.projitems*{f9f01fa4-e480-4213-a9db-017ebe897f76}*SharedItemsImports = 4
Chapter_1\HelloVideo\HelloVideo.Shared\HelloVideo.Shared.projitems*{52777789-3857-4492-bde1-77d62201706f}*SharedItemsImports = 4
Chapter_3\RoutedEvents1\RoutedEvents1.Shared\RoutedEvents1.Shared.projitems*{742f0b11-28ec-44e6-9095-41145e3c6f98}*SharedItemsImports = 13
Chapter_1\HelloImageCode\HelloImageCode.Shared\HelloImageCode.Shared.projitems*{32c007bc-ab08-4f1f-b095-87766f3fee84}*SharedItemsImports = 4
Chapter_1\HelloVideo\HelloVideo.Shared\HelloVideo.Shared.projitems*{bfc56116-ad94-493f-a41a-309ab091b152}*SharedItemsImports = 4
Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.Shared\SharedBrushWithStyle.Shared.projitems*{55c3408b-bccb-450b-8639-ca2963d50bed}*SharedItemsImports = 4
Chapter_2\TextStretch\TextStretch.Shared\TextStretch.Shared.projitems*{ff4ee71a-e3cb-42b9-9029-3fb8f2cacbd6}*SharedItemsImports = 4
Chapter_3\DigitalClock\DigitalClock.Shared\DigitalClock.Shared.projitems*{bf28035c-f922-4bcc-92c6-617639da41f3}*SharedItemsImports = 4
Chapter_3\RoutedEvents7\RoutedEvents7.Shared\RoutedEvents7.Shared.projitems*{c352c3f7-91a6-4bb5-b409-78848db5a2cf}*SharedItemsImports = 4
Chapter_5\SimpleColorScroll\SimpleColorScroll.Shared\SimpleColorScroll.Shared.projitems*{e9da07a2-e5da-4c14-bab0-20f284b9cfda}*SharedItemsImports = 13
Chapter_2\VectorGraphicsStretch\VectorGraphicsStretch.Shared\VectorGraphicsStretch.Shared.projitems*{1f9794b2-4b7f-4540-8701-7873584c6282}*SharedItemsImports = 13
Chapter_2\TextFormatting\TextFormatting.Shared\TextFormatting.Shared.projitems*{6ff9f4a6-ad38-4a1f-848f-ef45e0a4f183}*SharedItemsImports = 4
Chapter_2\GradientBrushMarkup\GradientBrushMarkup.Shared\GradientBrushMarkup.Shared.projitems*{be0b0f81-33f0-4822-ae4b-a021e1938ae3}*SharedItemsImports = 4
Chapter_5\SliderBindings\SliderBindings.Shared\SliderBindings.Shared.projitems*{74e8ce3e-8c72-4ee8-bb3b-d7e4d71a51ad}*SharedItemsImports = 4
Chapter_4\SimpleVerticalStack\SimpleVerticalStack.Shared\SimpleVerticalStack.Shared.projitems*{53bfb111-e20e-4731-a2cd-80bf331d4b4c}*SharedItemsImports = 4
Chapter_4\ColorList2\ColorList2.Shared\ColorList2.Shared.projitems*{47c5ac4e-3045-4274-90a6-45d71c44ee6a}*SharedItemsImports = 4
Chapter_4\ColorList3\ColorList3.Shared\ColorList3.Shared.projitems*{40116f28-73a6-4a13-90fc-006eed79f433}*SharedItemsImports = 13
Chapter_5\DependencyProperties\DependencyProperties.Shared\DependencyProperties.Shared.projitems*{cc3c31e1-7cf3-4f31-9150-83baef73e16a}*SharedItemsImports = 4
Chapter_3\RoutedEvents0\RoutedEvents0.Shared\RoutedEvents0.Shared.projitems*{018f0b8f-4db6-4e44-bfb5-76e8158c479b}*SharedItemsImports = 4
Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.Shared\PathMarkupSyntaxCode.Shared.projitems*{2d4b10d0-614f-4ddd-9b3e-77d3f1070ae5}*SharedItemsImports = 13
Chapter_3\ExpandingText\ExpandingText.Shared\ExpandingText.Shared.projitems*{18bf5eac-f547-4708-a8c6-d6a48bea544f}*SharedItemsImports = 4
Chapter_3\RoutedEvents4\RoutedEvents4.Shared\RoutedEvents4.Shared.projitems*{b1bf41d8-6198-4da7-9e9b-ec30045ed09f}*SharedItemsImports = 13
Chapter_5\TextBoxInputScopes\TextBoxInputScopes.Shared\TextBoxInputScopes.Shared.projitems*{cde74a88-348f-40d7-bb9f-c56406c88711}*SharedItemsImports = 13
Chapter_4\NaiveBorderedText\NaiveBorderedText.Shared\NaiveBorderedText.Shared.projitems*{8ad09b68-c114-482a-b7b9-77ee0dc14b12}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.Shared\LineCapsAndJoinsWithCustomClass.Shared.projitems*{b9a34716-6463-4795-8020-e032f35b8768}*SharedItemsImports = 13
Chapter_1\StrippedDownHello\StrippedDownHello.Shared\StrippedDownHello.Shared.projitems*{25b88ee4-d46b-4f5a-8893-cf25a6f27a6e}*SharedItemsImports = 4
Chapter_2\StretchedSpiral\StretchedSpiral.Shared\StretchedSpiral.Shared.projitems*{c58b9aad-7272-41b2-ac0b-88502bf81955}*SharedItemsImports = 4
Chapter_5\AlphabetBlocks\AlphabetBlocks.Shared\AlphabetBlocks.Shared.projitems*{662afba2-982a-4c92-a92f-bec8dce1517c}*SharedItemsImports = 4
Chapter_4\ColorWrap\ColorWrap.Shared\ColorWrap.Shared.projitems*{aa26cdbc-b6dc-4737-b16e-5c78aec7e277}*SharedItemsImports = 4
Chapter_3\WhatSize\WhatSize.Shared\WhatSize.Shared.projitems*{08a1e193-95c5-4c1e-bb38-d8abd0c795f7}*SharedItemsImports = 4
Chapter_4\SimpleEllipse\SimpleEllipse.Shared\SimpleEllipse.Shared.projitems*{e00db46d-1acf-4b5e-8c15-bc04b44ee466}*SharedItemsImports = 13
Chapter_5\SliderEvents\SliderEvents.Shared\SliderEvents.Shared.projitems*{898c512c-7a37-4fc2-a277-b98bbda9188c}*SharedItemsImports = 4
Chapter_4\TextInSmallGrid\TextInSmallGrid.Shared\TextInSmallGrid.Shared.projitems*{f143b747-71e0-4db0-9d47-cb8783d9004d}*SharedItemsImports = 13
Chapter_4\NaiveBorderedText\NaiveBorderedText.Shared\NaiveBorderedText.Shared.projitems*{8ba43146-c85f-4fc8-849c-0838a328f7f9}*SharedItemsImports = 13
Chapter_2\SharedBrush\SharedBrush.Shared\SharedBrush.Shared.projitems*{3879d6b9-c04b-476b-a9bb-b65c7ef6a409}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoins\LineCapsAndJoins.Shared\LineCapsAndJoins.Shared.projitems*{02290658-b3ce-4cde-9451-fedb1205da71}*SharedItemsImports = 4
Chapter_2\PathMarkupSyntaxCode\PathMarkupSyntaxCode.Shared\PathMarkupSyntaxCode.Shared.projitems*{3148a813-4663-4680-b6cb-2685df5e93cf}*SharedItemsImports = 4
Chapter_1\OverlappedStackedText\OverlappedStackedText.Shared\OverlappedStackedText.Shared.projitems*{df540b37-79f5-4616-98f3-f2b642bc9d1d}*SharedItemsImports = 4
Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.Shared\SimpleHorizontalStack.Shared.projitems*{d311ebf0-01c2-4956-a4cd-86e9111355c4}*SharedItemsImports = 13
Chapter_2\TextFormatting\TextFormatting.Shared\TextFormatting.Shared.projitems*{de26ee04-317d-4e09-beea-ba5976c5a847}*SharedItemsImports = 4
Chapter_4\BetterBorderedText\BetterBorderedText.Shared\BetterBorderedText.Shared.projitems*{056fa1cb-5512-4498-8390-058e9f1364b2}*SharedItemsImports = 4
Chapter_2\HelloVectorGraphics\HelloVectorGraphics.Shared\HelloVectorGraphics.Shared.projitems*{42d331bd-c899-4684-9051-ddfb34cf53b6}*SharedItemsImports = 4
Chapter_3\RoutedEvents3\RoutedEvents3.Shared\RoutedEvents3.Shared.projitems*{7189f4cd-0e5a-4d9f-9e02-288760a4d9af}*SharedItemsImports = 13
Chapter_3\RoutedEvents5\RoutedEvents5.Shared\RoutedEvents5.Shared.projitems*{1fa6d46c-77e9-4f44-b5f5-3049a0308d39}*SharedItemsImports = 4
Chapter_4\DependencyObjectClassHierarchy\DependencyObjectClassHierarchy.Shared\DependencyObjectClassHierarchy.Shared.projitems*{ee8b171c-eed1-41ed-85a5-59bb13a66c1a}*SharedItemsImports = 4
Chapter_1\Hello\Hello.Shared\Hello.Shared.projitems*{6685ce82-9f0a-456d-ba58-a71d23fdb5df}*SharedItemsImports = 4
Chapter_4\BetterBorderedText\BetterBorderedText.Shared\BetterBorderedText.Shared.projitems*{395880a8-6acf-4cff-9986-0cc07c74c869}*SharedItemsImports = 13
Chapter_4\TextInSmallGrid\TextInSmallGrid.Shared\TextInSmallGrid.Shared.projitems*{b95444a3-a617-408e-b1fa-7da57615e39d}*SharedItemsImports = 4
Chapter_2\GradientBrushCode\GradientBrushCode.Shared\GradientBrushCode.Shared.projitems*{53d356fa-5282-4f51-a1c6-63bf6e0088b2}*SharedItemsImports = 4
Chapter_5\TextBoxInputScopes\TextBoxInputScopes.Shared\TextBoxInputScopes.Shared.projitems*{a5dc2b7b-a686-4915-bd03-6514271bf258}*SharedItemsImports = 4
Chapter_4\StackPanelWithScrolling\StackPanelWithScrolling.Shared\StackPanelWithScrolling.Shared.projitems*{7b58e9ad-5c80-4968-865c-40549bfce49d}*SharedItemsImports = 4
Chapter_5\LineCapsAndJoinsWithCustomClass\LineCapsAndJoinsWithCustomClass.Shared\LineCapsAndJoinsWithCustomClass.Shared.projitems*{36b643ae-f1a9-4082-bf50-afd853beb945}*SharedItemsImports = 4
Chapter_3\RoutedEvents5\RoutedEvents5.Shared\RoutedEvents5.Shared.projitems*{388de97d-a1a1-46ec-aa58-f10b619cc4d8}*SharedItemsImports = 13
Chapter_1\Hello\Hello.Shared\Hello.Shared.projitems*{5c02ec93-3c3a-420c-8691-097adf4b89a2}*SharedItemsImports = 4
Chapter_2\GradientBrushCode\GradientBrushCode.Shared\GradientBrushCode.Shared.projitems*{fe34cc36-c396-4093-9538-512eab8eb836}*SharedItemsImports = 13
Chapter_2\SharedBrushWithStyle\SharedBrushWithStyle.Shared\SharedBrushWithStyle.Shared.projitems*{fd2026c7-f783-441a-aa58-64dab7ffff7a}*SharedItemsImports = 13
Chapter_1\HelloLocalImageCode\HelloLocalImageCode.Shared\HelloLocalImageCode.Shared.projitems*{8cbdb855-d093-4443-9804-2cb3adc15fc1}*SharedItemsImports = 4
Chapter_5\ColorScrollWithValueConverter\ColorScrollWithValueConverter.Shared\ColorScrollWithValueConverter.Shared.projitems*{657c81b1-afb1-43e6-ab6e-bac43df8f5b0}*SharedItemsImports = 4
Chapter_1\WrappedText\WrappedText.Shared\WrappedText.Shared.projitems*{c064d0af-2949-45de-9ec8-987586ebcbf0}*SharedItemsImports = 13
Chapter_5\DependencyPropertiesWithBindings\DependencyPropertiesWithBindings.Shared\DependencyPropertiesWithBindings.Shared.projitems*{b8d05a14-6794-469b-8884-aeab6552f1b4}*SharedItemsImports = 4
Chapter_2\HelloVectorGraphics\HelloVectorGraphics.Shared\HelloVectorGraphics.Shared.projitems*{015396ad-99d3-4a9d-841a-eb0e67bf3ea5}*SharedItemsImports = 4
Chapter_3\RoutedEvents5\RoutedEvents5.Shared\RoutedEvents5.Shared.projitems*{ad56f85f-0a23-42f4-9267-d2f5316f5e7f}*SharedItemsImports = 4
Chapter_1\StrippedDownHello\StrippedDownHello.Shared\StrippedDownHello.Shared.projitems*{34f60c5a-57a6-4b24-98b8-145125a7a611}*SharedItemsImports = 13
Chapter_2\SharedBrushWithBinding\SharedBrushWithBinding.Shared\SharedBrushWithBinding.Shared.projitems*{8fd806bc-b0b6-4c1f-82ac-476a99b76d4c}*SharedItemsImports = 13
Chapter_5\ButtonVarieties\ButtonVarieties.Shared\ButtonVarieties.Shared.projitems*{9104abc2-b5f5-484c-97e2-5c3f0930371c}*SharedItemsImports = 4
Chapter_6\ColorScrollWithViewModel\ColorScrollWithViewModel.Shared\ColorScrollWithViewModel.Shared.projitems*{3df64ea7-1d77-46ad-9be3-5b9401469858}*SharedItemsImports = 13
Chapter_5\AlphabetBlocks\AlphabetBlocks.Shared\AlphabetBlocks.Shared.projitems*{128bbf9f-bc1f-4165-9053-d2809b8225f5}*SharedItemsImports = 4
Chapter_4\SimpleHorizontalStack\SimpleHorizontalStack.Shared\SimpleHorizontalStack.Shared.projitems*{4fc06e28-85af-4bbd-b5af-b460bb2cec62}*SharedItemsImports = 4
Chapter_2\TextStretch\TextStretch.Shared\TextStretch.Shared.projitems*{de8990a4-2b5a-49eb-94e3-8aa5e43f8d95}*SharedItemsImports = 13
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|ARM.ActiveCfg = Debug|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|ARM.Build.0 = Debug|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|ARM.Deploy.0 = Debug|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x64.ActiveCfg = Debug|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x64.Build.0 = Debug|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x64.Deploy.0 = Debug|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x86.ActiveCfg = Debug|x86
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x86.Build.0 = Debug|x86
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Debug|x86.Deploy.0 = Debug|x86
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|Any CPU.Build.0 = Release|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|Any CPU.Deploy.0 = Release|Any CPU
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|ARM.ActiveCfg = Release|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|ARM.Build.0 = Release|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|ARM.Deploy.0 = Release|ARM
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x64.ActiveCfg = Release|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x64.Build.0 = Release|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x64.Deploy.0 = Release|x64
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x86.ActiveCfg = Release|x86
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x86.Build.0 = Release|x86
{FF3172C2-8A81-4955-B18E-8F8E8602556E}.Release|x86.Deploy.0 = Release|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|ARM.ActiveCfg = Debug|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|ARM.Build.0 = Debug|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|ARM.Deploy.0 = Debug|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x64.ActiveCfg = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x64.Build.0 = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x64.Deploy.0 = Debug|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x86.ActiveCfg = Debug|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x86.Build.0 = Debug|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Debug|x86.Deploy.0 = Debug|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|Any CPU.Build.0 = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|Any CPU.Deploy.0 = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|ARM.ActiveCfg = Release|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|ARM.Build.0 = Release|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|ARM.Deploy.0 = Release|ARM
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x64.ActiveCfg = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x64.Build.0 = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x64.Deploy.0 = Release|Any CPU
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x86.ActiveCfg = Release|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x86.Build.0 = Release|x86
{8B3C9AEC-33ED-4CF4-B5D6-B1CE177795BC}.Release|x86.Deploy.0 = Release|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|ARM.ActiveCfg = Debug|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|ARM.Build.0 = Debug|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|ARM.Deploy.0 = Debug|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x64.ActiveCfg = Debug|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x64.Build.0 = Debug|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x64.Deploy.0 = Debug|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x86.ActiveCfg = Debug|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x86.Build.0 = Debug|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Debug|x86.Deploy.0 = Debug|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|Any CPU.Build.0 = Release|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|Any CPU.Deploy.0 = Release|Any CPU
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|ARM.ActiveCfg = Release|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|ARM.Build.0 = Release|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|ARM.Deploy.0 = Release|ARM
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x64.ActiveCfg = Release|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x64.Build.0 = Release|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x64.Deploy.0 = Release|x64
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x86.ActiveCfg = Release|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x86.Build.0 = Release|x86
{F52D9FCD-5DF3-40D0-AF7D-2FA2D7C8DA9E}.Release|x86.Deploy.0 = Release|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|ARM.ActiveCfg = Debug|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|ARM.Build.0 = Debug|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|ARM.Deploy.0 = Debug|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x64.ActiveCfg = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x64.Build.0 = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x64.Deploy.0 = Debug|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x86.ActiveCfg = Debug|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x86.Build.0 = Debug|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Debug|x86.Deploy.0 = Debug|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|Any CPU.Build.0 = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|Any CPU.Deploy.0 = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|ARM.ActiveCfg = Release|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|ARM.Build.0 = Release|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|ARM.Deploy.0 = Release|ARM
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x64.ActiveCfg = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x64.Build.0 = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x64.Deploy.0 = Release|Any CPU
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x86.ActiveCfg = Release|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x86.Build.0 = Release|x86
{018F0B8F-4DB6-4E44-BFB5-76E8158C479B}.Release|x86.Deploy.0 = Release|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|ARM.ActiveCfg = Debug|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|ARM.Build.0 = Debug|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|ARM.Deploy.0 = Debug|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x64.ActiveCfg = Debug|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x64.Build.0 = Debug|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x64.Deploy.0 = Debug|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x86.ActiveCfg = Debug|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x86.Build.0 = Debug|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Debug|x86.Deploy.0 = Debug|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|Any CPU.Build.0 = Release|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|Any CPU.Deploy.0 = Release|Any CPU
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|ARM.ActiveCfg = Release|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|ARM.Build.0 = Release|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|ARM.Deploy.0 = Release|ARM
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x64.ActiveCfg = Release|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x64.Build.0 = Release|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x64.Deploy.0 = Release|x64
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x86.ActiveCfg = Release|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x86.Build.0 = Release|x86
{4D77F24F-69C0-4DC8-8AEE-3CE20EB852E7}.Release|x86.Deploy.0 = Release|x86
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|ARM.ActiveCfg = Debug|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|ARM.Build.0 = Debug|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|ARM.Deploy.0 = Debug|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x64.ActiveCfg = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x64.Build.0 = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x64.Deploy.0 = Debug|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x86.ActiveCfg = Debug|x86
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x86.Build.0 = Debug|x86
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Debug|x86.Deploy.0 = Debug|x86
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|Any CPU.Build.0 = Release|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|Any CPU.Deploy.0 = Release|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|ARM.ActiveCfg = Release|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|ARM.Build.0 = Release|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|ARM.Deploy.0 = Release|ARM
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|x64.ActiveCfg = Release|Any CPU
{7A77725E-3DB8-4404-BF14-FAD794687B0B}.Release|x64.Build.0 = Release|Any CPU