This repository was archived by the owner on Feb 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathappsettings.json
More file actions
2354 lines (2346 loc) · 226 KB
/
appsettings.json
File metadata and controls
2354 lines (2346 loc) · 226 KB
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
{
"ConnectionStrings": {
"AzureStorageAccount": "UseDevelopmentStorage=true;"
},
"Logging": {
"LogLevel": {
"Default": "Warning",
"System": "Warning",
"Microsoft": "Warning"
}
},
"Redirects": [
{ "redirect/recommended-release": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "redirect/releases/wix3.feed$": "/releases/feeds/wix3-11.feed" },
{ "redirect/releases/wix(\\d+).(\\d+).feed$": "/releases/feeds/wix$1-$2.feed" },
{ "redirect/?(.*)$": "$1" },
{ "releases/v3.11.2/stable": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "releases/v3.11.1/stable": "https://github.com/wixtoolset/wix3/releases/tag/wix3111rtm" },
{ "releases/v3.11.1/rc": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "releases/v3.11/stable": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "releases/v3.11/rc2": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "releases/v3.11/rc": "https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm" },
{ "releases/v3.11/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.10.4/stable": "https://github.com/wixtoolset/wix3/releases/tag/wix3104rtm" },
{ "releases/v3.10.4/rc": "https://github.com/wixtoolset/wix3/releases/tag/wix3104rtm" },
{ "releases/v3.10/stable": "https://github.com/wixtoolset/wix3/releases/tag/wix3104rtm" },
{ "releases/v3.10/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.9/stable": "https://wix.codeplex.com/releases/view/610859" },
{ "releases/v3.9/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.8/stable": "https://wix.codeplex.com/releases/view/115492" },
{ "releases/v3.8/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.7/rc": "http://wix.codeplex.com/releases/view/98028" },
{ "releases/v3.7/stable": "http://wix.codeplex.com/releases/view/99514" },
{ "releases/v3.7/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.6/beta": "http://wix.codeplex.com/releases/view/75656" },
{ "releases/v3.6/rc": "http://wix.codeplex.com/releases/view/88566" },
{ "releases/v3.6/rc0": "http://wix.codeplex.com/releases/view/85409" },
{ "releases/v3.6/stable": "https://wix.codeplex.com/releases/view/93929" },
{ "releases/v3.6/ProjectAggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "releases/v3.5/stable": "https://wix.codeplex.com/releases/view/60102" },
{ "releases/v3.0/stable": "https://wix.codeplex.com/releases/view/44406" },
{ "releases/v2.0/stable": "https://wix.codeplex.com/releases/view/44405" },
{ "releases": "/docs/releasenotes/"},
{ "issues/search/(.+)": "https://github.com/wixtoolset/issues/issues" },
{ "issues/(.+)": "https://github.com/wixtoolset/issues/issues/$1" },
{ "issues": "https://github.com/wixtoolset/issues/issues" },
{ "about/license": "/docs/about/" },
{ "development": "/docs/development/" },
{ "*tutorial.html": "https://www.firegiant.com/wix/tutorial/" },
{ "*tutorial/index.html": "https://www.firegiant.com/wix/tutorial/" },
{ "documentation/tutorial": "https://www.firegiant.com/wix/tutorial/" },
{ "documentation/book": "https://www.packtpub.com/product/wix-3-6-a-developer-s-guide-to-windows-installer-xml" },
{ "documentation/book2": "https://www.packtpub.com/web-development/wix-cookbook" },
{ "documentation/stackoverflow": "http://stackoverflow.com/questions/tagged/wix?sort=newest" },
{ "documentation/error217": "/docs/tools/validation/" },
{ "documentation/mailinglist": "/docs/gethelp/" },
{ "*mailinglist.html": "/docs/gethelp/" },
{ "*mailinglists.html": "/docs/gethelp/" },
{ "*news.html": "/news/" },
{ "docs": "/docs/intro/" },
{ "docs/reference/schema/(.*)": "/docs/schema/$1" },
{ "docs/reference/api/(.*)": "/docs/api/$1" },
{ "docs/reference/(.*)": "/docs/tools/$1" },
{ "docs/fourthree_bundles": "docs/fourthree/faqs" },
{ "documentation": "/docs/intro/" },
{ "*img/logo.gif": "content/logo.gif" },
{ "*projectaggregator2.msi": "http://static.wixtoolset.org/releases/ProjectAggregator2/ProjectAggregator2.msi" },
{ "*votive.html": "/docs/v3/votive/" },
{ "*votive.html": "/docs/v3/votive/" },
{ "*manual-wix2/online_tutorial.htm": "/documentation/tutorial" },
{ "*manual-wix2/robmen.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20040405.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20040414.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20040511.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20040516.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20040520.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20041122.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/robmen_20041130.htm": "http://robmensching.com/blog/" },
{ "*manual-wix2/blogs.htm": "/news/" },
{ "*manual-wix2/wix_index.htm": "/docs/v3/" },
{ "*manual-wix2/authoring.htm": "/docs/v3/howtos/" },
{ "*manual-wix2/authoring_custom_actions.htm": "/docs/v3/howtos/" },
{ "*manual-wix2/authoring_first_file.htm": "/docs/v3/howtos/" },
{ "*manual-wix2/authoring_getting_started.htm": "/docs/v3/howtos/" },
{ "*manual-wix2/authoring_merge_modules.htm": "/docs/v3/howtos/" },
{ "*manual-wix2/building_wix.htm": "/docs/v3/wixdev/building_wix/" },
{ "*manual-wix2/candle.htm": "/docs/v3/overview/candle/" },
{ "*manual-wix2/dark.htm": "/docs/v3/overview/dark/" },
{ "*manual-wix2/extensions.htm": "/docs/v3/wixdev/extensions/" },
{ "*manual-wix2/files.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/help.htm": "/docs/v3/main/help/" },
{ "*manual-wix2/light.htm": "/docs/v3/overview/light/" },
{ "*manual-wix2/msi.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/msitowix.htm": "/docs/v3/overview/msitowix/" },
{ "*manual-wix2/msm.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/overview.htm": "/docs/v3/overview/" },
{ "*manual-wix2/patch_building.htm": "/docs/v3/patching/patch_building/" },
{ "*manual-wix2/perfmon.htm": "/docs/v3/customactions/perfmon/" },
{ "*manual-wix2/preprocessor.htm": "/docs/v3/overview/preprocessor/" },
{ "*manual-wix2/qtexec.htm": "/docs/v3/customactions/qtexec/" },
{ "*manual-wix2/standard_customactions.htm": "/docs/v3/customactions/" },
{ "*manual-wix2/tools.htm": "/docs/v3/overview/tools/" },
{ "*manual-wix2/using_server_customactions.htm": "/docs/v3/customactions/" },
{ "*manual-wix2/votive.htm": "/docs/v3/votive/" },
{ "*manual-wix2/wixobj.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/wixui_dialog_library.htm": "/docs/v3/wixui/wixui_dialog_library/" },
{ "*manual-wix2/wxi.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/wxs.htm": "/docs/v3/overview/files/" },
{ "*manual-wix2/mmc_xsd_extendednodetype.htm": "/docs/v3/xsd/mmc/extendednodetype/" },
{ "*manual-wix2/mmc_xsd_index.htm": "/docs/v3/xsd/mmc/" },
{ "*manual-wix2/mmc_xsd_publishednodetype.htm": "/docs/v3/xsd/mmc/publishednodetype/" },
{ "*manual-wix2/mmc_xsd_resources.htm": "/docs/v3/xsd/mmc/resources/" },
{ "*manual-wix2/mmc_xsd_simple_type_uuid.htm": "/docs/v3/xsd/mmc/simple_type_uuid/" },
{ "*manual-wix2/mmc_xsd_snapin.htm": "/docs/v3/xsd/mmc/snapin/" },
{ "*manual-wix2/netfx_xsd_index.htm": "/docs/v3/xsd/netfx/" },
{ "*manual-wix2/netfx_xsd_nativeimage.htm": "/docs/v3/xsd/netfx/nativeimage/" },
{ "*manual-wix2/netfx_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/netfx/simple_type_yesnotype/" },
{ "*manual-wix2/pubca_xsd_complusapplication.htm": "/docs/v3/xsd/complus/complusapplication/" },
{ "*manual-wix2/pubca_xsd_complusapplicationrole.htm": "/docs/v3/xsd/complus/complusapplicationrole/" },
{ "*manual-wix2/pubca_xsd_complusassembly.htm": "/docs/v3/xsd/complus/complusassembly/" },
{ "*manual-wix2/pubca_xsd_complusassemblydependency.htm": "/docs/v3/xsd/complus/complusassemblydependency/" },
{ "*manual-wix2/pubca_xsd_compluscomponent.htm": "/docs/v3/xsd/complus/compluscomponent/" },
{ "*manual-wix2/pubca_xsd_complusgroupinapplicationrole.htm": "/docs/v3/xsd/complus/complusgroupinapplicationrole/" },
{ "*manual-wix2/pubca_xsd_complusgroupinpartitionrole.htm": "/docs/v3/xsd/complus/complusgroupinpartitionrole/" },
{ "*manual-wix2/pubca_xsd_complusinterface.htm": "/docs/v3/xsd/complus/complusinterface/" },
{ "*manual-wix2/pubca_xsd_complusmethod.htm": "/docs/v3/xsd/complus/complusmethod/" },
{ "*manual-wix2/pubca_xsd_compluspartition.htm": "/docs/v3/xsd/complus/compluspartition/" },
{ "*manual-wix2/pubca_xsd_compluspartitionrole.htm": "/docs/v3/xsd/complus/compluspartitionrole/" },
{ "*manual-wix2/pubca_xsd_compluspartitionuser.htm": "/docs/v3/xsd/complus/compluspartitionuser/" },
{ "*manual-wix2/pubca_xsd_complusroleforcomponent.htm": "/docs/v3/xsd/complus/complusroleforcomponent/" },
{ "*manual-wix2/pubca_xsd_complusroleforinterface.htm": "/docs/v3/xsd/complus/complusroleforinterface/" },
{ "*manual-wix2/pubca_xsd_complusroleformethod.htm": "/docs/v3/xsd/complus/complusroleformethod/" },
{ "*manual-wix2/pubca_xsd_complussubscription.htm": "/docs/v3/xsd/complus/complussubscription/" },
{ "*manual-wix2/pubca_xsd_complususerinapplicationrole.htm": "/docs/v3/xsd/complus/complususerinapplicationrole/" },
{ "*manual-wix2/pubca_xsd_complususerinpartitionrole.htm": "/docs/v3/xsd/complus/complususerinpartitionrole/" },
{ "*manual-wix2/pubca_xsd_index.htm": "/docs/v3/xsd/complus/" },
{ "*manual-wix2/pubca_xsd_messagequeue.htm": "/docs/v3/xsd/msmq/messagequeue/" },
{ "*manual-wix2/pubca_xsd_messagequeuepermission.htm": "/docs/v3/xsd/msmq/messagequeuepermission/" },
{ "*manual-wix2/pubca_xsd_simple_type_uuid.htm": "/docs/v3/xsd/complus/simple_type_uuid/" },
{ "*manual-wix2/pubca_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/msmq/simple_type_yesnotype/" },
{ "*manual-wix2/vs_xsd_helpcollection.htm": "/docs/v3/xsd/vs/helpcollection/" },
{ "*manual-wix2/vs_xsd_helpcollectionref.htm": "/docs/v3/xsd/vs/helpcollectionref/" },
{ "*manual-wix2/vs_xsd_helpfile.htm": "/docs/v3/xsd/vs/helpfile/" },
{ "*manual-wix2/vs_xsd_helpfileref.htm": "/docs/v3/xsd/vs/helpfileref/" },
{ "*manual-wix2/vs_xsd_helpfilter.htm": "/docs/v3/xsd/vs/helpfilter/" },
{ "*manual-wix2/vs_xsd_helpfilterref.htm": "/docs/v3/xsd/vs/helpfilterref/" },
{ "*manual-wix2/vs_xsd_index.htm": "/docs/v3/xsd/vs/" },
{ "*manual-wix2/vs_xsd_plugcollectioninto.htm": "/docs/v3/xsd/vs/plugcollectioninto/" },
{ "*manual-wix2/wix_xsd_adminexecutesequence.htm": "/docs/v3/xsd/wix/adminexecutesequence/" },
{ "*manual-wix2/wix_xsd_adminuisequence.htm": "/docs/v3/xsd/wix/adminuisequence/" },
{ "*manual-wix2/wix_xsd_advertiseexecutesequence.htm": "/docs/v3/xsd/wix/advertiseexecutesequence/" },
{ "*manual-wix2/wix_xsd_allocateregistryspace.htm": "/docs/v3/xsd/wix/allocateregistryspace/" },
{ "*manual-wix2/wix_xsd_appdata.htm": "/docs/v3/xsd/wix/appdata/" },
{ "*manual-wix2/wix_xsd_appid.htm": "/docs/v3/xsd/wix/appid/" },
{ "*manual-wix2/wix_xsd_appsearch.htm": "/docs/v3/xsd/wix/appsearch/" },
{ "*manual-wix2/wix_xsd_assemblyname.htm": "/docs/v3/xsd/wix/assemblyname/" },
{ "*manual-wix2/wix_xsd_billboard.htm": "/docs/v3/xsd/wix/billboard/" },
{ "*manual-wix2/wix_xsd_billboardaction.htm": "/docs/v3/xsd/wix/billboardaction/" },
{ "*manual-wix2/wix_xsd_binary.htm": "/docs/v3/xsd/wix/binary/" },
{ "*manual-wix2/wix_xsd_bindimage.htm": "/docs/v3/xsd/wix/bindimage/" },
{ "*manual-wix2/wix_xsd_category.htm": "/docs/v3/xsd/wix/category/" },
{ "*manual-wix2/wix_xsd_ccpsearch.htm": "/docs/v3/xsd/wix/ccpsearch/" },
{ "*manual-wix2/wix_xsd_certificate.htm": "/docs/v3/xsd/iis/certificate/" },
{ "*manual-wix2/wix_xsd_certificateref.htm": "/docs/v3/xsd/iis/certificateref/" },
{ "*manual-wix2/wix_xsd_class.htm": "/docs/v3/xsd/wix/class/" },
{ "*manual-wix2/wix_xsd_column.htm": "/docs/v3/xsd/wix/column/" },
{ "*manual-wix2/wix_xsd_combobox.htm": "/docs/v3/xsd/wix/combobox/" },
{ "*manual-wix2/wix_xsd_compliancecheck.htm": "/docs/v3/xsd/wix/compliancecheck/" },
{ "*manual-wix2/wix_xsd_compliancedrive.htm": "/docs/v3/xsd/wix/compliancedrive/" },
{ "*manual-wix2/wix_xsd_component.htm": "/docs/v3/xsd/wix/component/" },
{ "*manual-wix2/wix_xsd_componentgroup.htm": "/docs/v3/xsd/wix/componentgroup/" },
{ "*manual-wix2/wix_xsd_componentgroupref.htm": "/docs/v3/xsd/wix/componentgroupref/" },
{ "*manual-wix2/wix_xsd_componentref.htm": "/docs/v3/xsd/wix/componentref/" },
{ "*manual-wix2/wix_xsd_componentsearch.htm": "/docs/v3/xsd/wix/componentsearch/" },
{ "*manual-wix2/wix_xsd_condition.htm": "/docs/v3/xsd/wix/condition/" },
{ "*manual-wix2/wix_xsd_configuration.htm": "/docs/v3/xsd/wix/configuration/" },
{ "*manual-wix2/wix_xsd_configurationdata.htm": "/docs/v3/xsd/wix/configurationdata/" },
{ "*manual-wix2/wix_xsd_control.htm": "/docs/v3/xsd/wix/control/" },
{ "*manual-wix2/wix_xsd_copyfile.htm": "/docs/v3/xsd/wix/copyfile/" },
{ "*manual-wix2/wix_xsd_costfinalize.htm": "/docs/v3/xsd/wix/costfinalize/" },
{ "*manual-wix2/wix_xsd_costinitialize.htm": "/docs/v3/xsd/wix/costinitialize/" },
{ "*manual-wix2/wix_xsd_createfolder.htm": "/docs/v3/xsd/wix/createfolder/" },
{ "*manual-wix2/wix_xsd_createfolders.htm": "/docs/v3/xsd/wix/createfolders/" },
{ "*manual-wix2/wix_xsd_createshortcuts.htm": "/docs/v3/xsd/wix/createshortcuts/" },
{ "*manual-wix2/wix_xsd_custom.htm": "/docs/v3/xsd/wix/custom/" },
{ "*manual-wix2/wix_xsd_customaction.htm": "/docs/v3/xsd/wix/customaction/" },
{ "*manual-wix2/wix_xsd_customactionref.htm": "/docs/v3/xsd/wix/customactionref/" },
{ "*manual-wix2/wix_xsd_customproperty.htm": "/docs/v3/xsd/wix/customproperty/" },
{ "*manual-wix2/wix_xsd_customtable.htm": "/docs/v3/xsd/wix/customtable/" },
{ "*manual-wix2/wix_xsd_data.htm": "/docs/v3/xsd/wix/data/" },
{ "*manual-wix2/wix_xsd_deleteservices.htm": "/docs/v3/xsd/wix/deleteservices/" },
{ "*manual-wix2/wix_xsd_dependency.htm": "/docs/v3/xsd/wix/dependency/" },
{ "*manual-wix2/wix_xsd_dialog.htm": "/docs/v3/xsd/wix/dialog/" },
{ "*manual-wix2/wix_xsd_dialogref.htm": "/docs/v3/xsd/wix/dialogref/" },
{ "*manual-wix2/wix_xsd_digitalcertificate.htm": "/docs/v3/xsd/wix/digitalcertificate/" },
{ "*manual-wix2/wix_xsd_digitalcertificateref.htm": "/docs/v3/xsd/wix/digitalcertificateref/" },
{ "*manual-wix2/wix_xsd_digitalsignature.htm": "/docs/v3/xsd/wix/digitalsignature/" },
{ "*manual-wix2/wix_xsd_directory.htm": "/docs/v3/xsd/wix/directory/" },
{ "*manual-wix2/wix_xsd_directoryref.htm": "/docs/v3/xsd/wix/directoryref/" },
{ "*manual-wix2/wix_xsd_directorysearch.htm": "/docs/v3/xsd/wix/directorysearch/" },
{ "*manual-wix2/wix_xsd_directorysearchref.htm": "/docs/v3/xsd/wix/directorysearchref/" },
{ "*manual-wix2/wix_xsd_disablerollback.htm": "/docs/v3/xsd/wix/disablerollback/" },
{ "*manual-wix2/wix_xsd_duplicatefiles.htm": "/docs/v3/xsd/wix/duplicatefiles/" },
{ "*manual-wix2/wix_xsd_ensuretable.htm": "/docs/v3/xsd/wix/ensuretable/" },
{ "*manual-wix2/wix_xsd_environment.htm": "/docs/v3/xsd/wix/environment/" },
{ "*manual-wix2/wix_xsd_error.htm": "/docs/v3/xsd/wix/error/" },
{ "*manual-wix2/wix_xsd_exclusion.htm": "/docs/v3/xsd/wix/exclusion/" },
{ "*manual-wix2/wix_xsd_executeaction.htm": "/docs/v3/xsd/wix/executeaction/" },
{ "*manual-wix2/wix_xsd_extension.htm": "/docs/v3/xsd/wix/extension/" },
{ "*manual-wix2/wix_xsd_externalfile.htm": "/docs/v3/xsd/wix/externalfile/" },
{ "*manual-wix2/wix_xsd_family.htm": "/docs/v3/xsd/wix/family/" },
{ "*manual-wix2/wix_xsd_feature.htm": "/docs/v3/xsd/wix/feature/" },
{ "*manual-wix2/wix_xsd_featureref.htm": "/docs/v3/xsd/wix/featureref/" },
{ "*manual-wix2/wix_xsd_file.htm": "/docs/v3/xsd/wix/file/" },
{ "*manual-wix2/wix_xsd_filecost.htm": "/docs/v3/xsd/wix/filecost/" },
{ "*manual-wix2/wix_xsd_filesearch.htm": "/docs/v3/xsd/wix/filesearch/" },
{ "*manual-wix2/wix_xsd_filesearchref.htm": "/docs/v3/xsd/wix/filesearchref/" },
{ "*manual-wix2/wix_xsd_fileshare.htm": "/docs/v3/xsd/util/fileshare/" },
{ "*manual-wix2/wix_xsd_filetypemask.htm": "/docs/v3/xsd/wix/filetypemask/" },
{ "*manual-wix2/wix_xsd_findrelatedproducts.htm": "/docs/v3/xsd/wix/findrelatedproducts/" },
{ "*manual-wix2/wix_xsd_forcereboot.htm": "/docs/v3/xsd/wix/forcereboot/" },
{ "*manual-wix2/wix_xsd_fragment.htm": "/docs/v3/xsd/wix/fragment/" },
{ "*manual-wix2/wix_xsd_fragmentref.htm": "/docs/v3/xsd/wix/" },
{ "*manual-wix2/wix_xsd_group.htm": "/docs/v3/xsd/util/group/" },
{ "*manual-wix2/wix_xsd_groupref.htm": "/docs/v3/xsd/util/groupref/" },
{ "*manual-wix2/wix_xsd_httpheader.htm": "/docs/v3/xsd/iis/httpheader/" },
{ "*manual-wix2/wix_xsd_icon.htm": "/docs/v3/xsd/wix/icon/" },
{ "*manual-wix2/wix_xsd_ignoremodularization.htm": "/docs/v3/xsd/wix/ignoremodularization/" },
{ "*manual-wix2/wix_xsd_ignorerange.htm": "/docs/v3/xsd/wix/ignorerange/" },
{ "*manual-wix2/wix_xsd_include.htm": "/docs/v3/xsd/wix/include/" },
{ "*manual-wix2/wix_xsd_index.htm": "/docs/v3/xsd/wix/" },
{ "*manual-wix2/wix_xsd_inifile.htm": "/docs/v3/xsd/wix/inifile/" },
{ "*manual-wix2/wix_xsd_inifilesearch.htm": "/docs/v3/xsd/wix/inifilesearch/" },
{ "*manual-wix2/wix_xsd_installadminpackage.htm": "/docs/v3/xsd/wix/installadminpackage/" },
{ "*manual-wix2/wix_xsd_installexecute.htm": "/docs/v3/xsd/wix/installexecute/" },
{ "*manual-wix2/wix_xsd_installexecuteagain.htm": "/docs/v3/xsd/wix/installexecuteagain/" },
{ "*manual-wix2/wix_xsd_installexecutesequence.htm": "/docs/v3/xsd/wix/installexecutesequence/" },
{ "*manual-wix2/wix_xsd_installfiles.htm": "/docs/v3/xsd/wix/installfiles/" },
{ "*manual-wix2/wix_xsd_installfinalize.htm": "/docs/v3/xsd/wix/installfinalize/" },
{ "*manual-wix2/wix_xsd_installinitialize.htm": "/docs/v3/xsd/wix/installinitialize/" },
{ "*manual-wix2/wix_xsd_installodbc.htm": "/docs/v3/xsd/wix/installodbc/" },
{ "*manual-wix2/wix_xsd_installservices.htm": "/docs/v3/xsd/wix/installservices/" },
{ "*manual-wix2/wix_xsd_installuisequence.htm": "/docs/v3/xsd/wix/installuisequence/" },
{ "*manual-wix2/wix_xsd_installvalidate.htm": "/docs/v3/xsd/wix/installvalidate/" },
{ "*manual-wix2/wix_xsd_interface.htm": "/docs/v3/xsd/wix/interface/" },
{ "*manual-wix2/wix_xsd_isolatecomponent.htm": "/docs/v3/xsd/wix/isolatecomponent/" },
{ "*manual-wix2/wix_xsd_isolatecomponents.htm": "/docs/v3/xsd/wix/isolatecomponents/" },
{ "*manual-wix2/wix_xsd_launchconditions.htm": "/docs/v3/xsd/wix/launchconditions/" },
{ "*manual-wix2/wix_xsd_listbox.htm": "/docs/v3/xsd/wix/listbox/" },
{ "*manual-wix2/wix_xsd_listitem.htm": "/docs/v3/xsd/wix/listitem/" },
{ "*manual-wix2/wix_xsd_listview.htm": "/docs/v3/xsd/wix/listview/" },
{ "*manual-wix2/wix_xsd_media.htm": "/docs/v3/xsd/wix/media/" },
{ "*manual-wix2/wix_xsd_merge.htm": "/docs/v3/xsd/wix/merge/" },
{ "*manual-wix2/wix_xsd_mergeref.htm": "/docs/v3/xsd/wix/mergeref/" },
{ "*manual-wix2/wix_xsd_migratefeaturestates.htm": "/docs/v3/xsd/wix/migratefeaturestates/" },
{ "*manual-wix2/wix_xsd_mime.htm": "/docs/v3/xsd/wix/mime/" },
{ "*manual-wix2/wix_xsd_mimemap.htm": "/docs/v3/xsd/iis/mimemap/" },
{ "*manual-wix2/wix_xsd_module.htm": "/docs/v3/xsd/wix/module/" },
{ "*manual-wix2/wix_xsd_movefiles.htm": "/docs/v3/xsd/wix/movefiles/" },
{ "*manual-wix2/wix_xsd_msipublishassemblies.htm": "/docs/v3/xsd/wix/msipublishassemblies/" },
{ "*manual-wix2/wix_xsd_msiunpublishassemblies.htm": "/docs/v3/xsd/wix/msiunpublishassemblies/" },
{ "*manual-wix2/wix_xsd_odbcdatasource.htm": "/docs/v3/xsd/wix/odbcdatasource/" },
{ "*manual-wix2/wix_xsd_odbcdriver.htm": "/docs/v3/xsd/wix/odbcdriver/" },
{ "*manual-wix2/wix_xsd_odbctranslator.htm": "/docs/v3/xsd/wix/odbctranslator/" },
{ "*manual-wix2/wix_xsd_package.htm": "/docs/v3/xsd/wix/package/" },
{ "*manual-wix2/wix_xsd_patch.htm": "/docs/v3/xsd/wix/patch/" },
{ "*manual-wix2/wix_xsd_patchcertificates.htm": "/docs/v3/xsd/wix/patchcertificates/" },
{ "*manual-wix2/wix_xsd_patchcreation.htm": "/docs/v3/xsd/wix/patchcreation/" },
{ "*manual-wix2/wix_xsd_patchfiles.htm": "/docs/v3/xsd/wix/patchfiles/" },
{ "*manual-wix2/wix_xsd_patchinformation.htm": "/docs/v3/xsd/wix/patchinformation/" },
{ "*manual-wix2/wix_xsd_patchmetadata.htm": "/docs/v3/xsd/wix/patchmetadata/" },
{ "*manual-wix2/wix_xsd_patchpackage.htm": "/docs/v3/xsd/wix/patch/" },
{ "*manual-wix2/wix_xsd_patchproperty.htm": "/docs/v3/xsd/wix/patchproperty/" },
{ "*manual-wix2/wix_xsd_patchsequence.htm": "/docs/v3/xsd/wix/patchsequence/" },
{ "*manual-wix2/wix_xsd_perfcounter.htm": "/docs/v3/xsd/util/perfcounter/" },
{ "*manual-wix2/wix_xsd_permission.htm": "/docs/v3/xsd/wix/permission/" },
{ "*manual-wix2/wix_xsd_processcomponents.htm": "/docs/v3/xsd/wix/processcomponents/" },
{ "*manual-wix2/wix_xsd_product.htm": "/docs/v3/xsd/wix/product/" },
{ "*manual-wix2/wix_xsd_progid.htm": "/docs/v3/xsd/wix/progid/" },
{ "*manual-wix2/wix_xsd_progresstext.htm": "/docs/v3/xsd/wix/progresstext/" },
{ "*manual-wix2/wix_xsd_property.htm": "/docs/v3/xsd/wix/property/" },
{ "*manual-wix2/wix_xsd_propertyref.htm": "/docs/v3/xsd/wix/propertyref/" },
{ "*manual-wix2/wix_xsd_protectfile.htm": "/docs/v3/xsd/wix/protectfile/" },
{ "*manual-wix2/wix_xsd_protectrange.htm": "/docs/v3/xsd/wix/protectrange/" },
{ "*manual-wix2/wix_xsd_publish.htm": "/docs/v3/xsd/wix/publish/" },
{ "*manual-wix2/wix_xsd_publishcomponents.htm": "/docs/v3/xsd/wix/publishcomponents/" },
{ "*manual-wix2/wix_xsd_publishfeatures.htm": "/docs/v3/xsd/wix/publishfeatures/" },
{ "*manual-wix2/wix_xsd_publishproduct.htm": "/docs/v3/xsd/wix/publishproduct/" },
{ "*manual-wix2/wix_xsd_radiobutton.htm": "/docs/v3/xsd/wix/radiobutton/" },
{ "*manual-wix2/wix_xsd_radiobuttongroup.htm": "/docs/v3/xsd/wix/radiobuttongroup/" },
{ "*manual-wix2/wix_xsd_recycletime.htm": "/docs/v3/xsd/iis/recycletime/" },
{ "*manual-wix2/wix_xsd_registerclassinfo.htm": "/docs/v3/xsd/wix/registerclassinfo/" },
{ "*manual-wix2/wix_xsd_registercomplus.htm": "/docs/v3/xsd/wix/registercomplus/" },
{ "*manual-wix2/wix_xsd_registerextensioninfo.htm": "/docs/v3/xsd/wix/registerextensioninfo/" },
{ "*manual-wix2/wix_xsd_registerfonts.htm": "/docs/v3/xsd/wix/registerfonts/" },
{ "*manual-wix2/wix_xsd_registermimeinfo.htm": "/docs/v3/xsd/wix/registermimeinfo/" },
{ "*manual-wix2/wix_xsd_registerproduct.htm": "/docs/v3/xsd/wix/registerproduct/" },
{ "*manual-wix2/wix_xsd_registerprogidinfo.htm": "/docs/v3/xsd/wix/registerprogidinfo/" },
{ "*manual-wix2/wix_xsd_registertypelibraries.htm": "/docs/v3/xsd/wix/registertypelibraries/" },
{ "*manual-wix2/wix_xsd_registeruser.htm": "/docs/v3/xsd/wix/registeruser/" },
{ "*manual-wix2/wix_xsd_registry.htm": "/docs/v3/xsd/wix/registry/" },
{ "*manual-wix2/wix_xsd_registrysearch.htm": "/docs/v3/xsd/wix/registrysearch/" },
{ "*manual-wix2/wix_xsd_registrysearchref.htm": "/docs/v3/xsd/wix/registrysearchref/" },
{ "*manual-wix2/wix_xsd_registryvalue.htm": "/docs/v3/xsd/wix/registryvalue/" },
{ "*manual-wix2/wix_xsd_removeduplicatefiles.htm": "/docs/v3/xsd/wix/removeduplicatefiles/" },
{ "*manual-wix2/wix_xsd_removeenvironmentstrings.htm": "/docs/v3/xsd/wix/removeenvironmentstrings/" },
{ "*manual-wix2/wix_xsd_removeexistingproducts.htm": "/docs/v3/xsd/wix/removeexistingproducts/" },
{ "*manual-wix2/wix_xsd_removefile.htm": "/docs/v3/xsd/wix/removefile/" },
{ "*manual-wix2/wix_xsd_removefiles.htm": "/docs/v3/xsd/wix/removefiles/" },
{ "*manual-wix2/wix_xsd_removefolder.htm": "/docs/v3/xsd/wix/removefolder/" },
{ "*manual-wix2/wix_xsd_removefolders.htm": "/docs/v3/xsd/wix/removefolders/" },
{ "*manual-wix2/wix_xsd_removeinivalues.htm": "/docs/v3/xsd/wix/removeinivalues/" },
{ "*manual-wix2/wix_xsd_removeodbc.htm": "/docs/v3/xsd/wix/removeodbc/" },
{ "*manual-wix2/wix_xsd_removeregistryvalues.htm": "/docs/v3/xsd/wix/removeregistryvalues/" },
{ "*manual-wix2/wix_xsd_removeshortcuts.htm": "/docs/v3/xsd/wix/removeshortcuts/" },
{ "*manual-wix2/wix_xsd_replacepatch.htm": "/docs/v3/xsd/wix/replacepatch/" },
{ "*manual-wix2/wix_xsd_reservecost.htm": "/docs/v3/xsd/wix/reservecost/" },
{ "*manual-wix2/wix_xsd_resolvesource.htm": "/docs/v3/xsd/wix/resolvesource/" },
{ "*manual-wix2/wix_xsd_rmccpsearch.htm": "/docs/v3/xsd/wix/rmccpsearch/" },
{ "*manual-wix2/wix_xsd_row.htm": "/docs/v3/xsd/wix/row/" },
{ "*manual-wix2/wix_xsd_schedulereboot.htm": "/docs/v3/xsd/wix/schedulereboot/" },
{ "*manual-wix2/wix_xsd_selfregmodules.htm": "/docs/v3/xsd/wix/selfregmodules/" },
{ "*manual-wix2/wix_xsd_selfunregmodules.htm": "/docs/v3/xsd/wix/selfunregmodules/" },
{ "*manual-wix2/wix_xsd_serviceargument.htm": "/docs/v3/xsd/wix/serviceargument/" },
{ "*manual-wix2/wix_xsd_serviceconfig.htm": "/docs/v3/xsd/wix/serviceconfig/" },
{ "*manual-wix2/wix_xsd_servicecontrol.htm": "/docs/v3/xsd/wix/servicecontrol/" },
{ "*manual-wix2/wix_xsd_servicedependency.htm": "/docs/v3/xsd/wix/servicedependency/" },
{ "*manual-wix2/wix_xsd_serviceinstall.htm": "/docs/v3/xsd/wix/serviceinstall/" },
{ "*manual-wix2/wix_xsd_setodbcfolders.htm": "/docs/v3/xsd/wix/setodbcfolders/" },
{ "*manual-wix2/wix_xsd_sfpcatalog.htm": "/docs/v3/xsd/wix/sfpcatalog/" },
{ "*manual-wix2/wix_xsd_sfpfile.htm": "/docs/v3/xsd/wix/sfpfile/" },
{ "*manual-wix2/wix_xsd_shortcut.htm": "/docs/v3/xsd/wix/shortcut/" },
{ "*manual-wix2/wix_xsd_show.htm": "/docs/v3/xsd/wix/show/" },
{ "*manual-wix2/wix_xsd_simple_type_autogenuuid.htm": "/docs/v3/xsd/wix/simple_type_autogenguid/" },
{ "*manual-wix2/wix_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/wix/simple_type_componentguid/" },
{ "*manual-wix2/wix_xsd_simple_type_hextype.htm": "/docs/v3/xsd/wix/simple_type_hextype/" },
{ "*manual-wix2/wix_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/wix/simple_type_localizableinteger/" },
{ "*manual-wix2/wix_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/wix/simple_type_longfilenametype/" },
{ "*manual-wix2/wix_xsd_simple_type_modularizetype.htm": "/docs/v3/xsd/wix/ignoremodularization/" },
{ "*manual-wix2/wix_xsd_simple_type_percenttype.htm": "/docs/v3/xsd/iis/simple_type_percenttype/" },
{ "*manual-wix2/wix_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/wix/simple_type_shortfilenametype/" },
{ "*manual-wix2/wix_xsd_simple_type_uuid.htm": "/docs/v3/xsd/complus/simple_type_uuid/" },
{ "*manual-wix2/wix_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/wix/simple_type_versiontype/" },
{ "*manual-wix2/wix_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/wix/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix2/wix_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/wix/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix2/wix_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/wix/simple_type_yesnodefaulttype/" },
{ "*manual-wix2/wix_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/wix/simple_type_yesnotype/" },
{ "*manual-wix2/wix_xsd_sqldatabase.htm": "/docs/v3/xsd/sql/sqldatabase/" },
{ "*manual-wix2/wix_xsd_sqlfilespec.htm": "/docs/v3/xsd/sql/sqlfilespec/" },
{ "*manual-wix2/wix_xsd_sqllogfilespec.htm": "/docs/v3/xsd/sql/sqllogfilespec/" },
{ "*manual-wix2/wix_xsd_sqlscript.htm": "/docs/v3/xsd/sql/sqlscript/" },
{ "*manual-wix2/wix_xsd_sqlstring.htm": "/docs/v3/xsd/sql/sqlstring/" },
{ "*manual-wix2/wix_xsd_startservices.htm": "/docs/v3/xsd/wix/startservices/" },
{ "*manual-wix2/wix_xsd_stopservices.htm": "/docs/v3/xsd/wix/stopservices/" },
{ "*manual-wix2/wix_xsd_subscribe.htm": "/docs/v3/xsd/wix/subscribe/" },
{ "*manual-wix2/wix_xsd_substitution.htm": "/docs/v3/xsd/wix/substitution/" },
{ "*manual-wix2/wix_xsd_symbolpath.htm": "/docs/v3/xsd/wix/symbolpath/" },
{ "*manual-wix2/wix_xsd_targetfile.htm": "/docs/v3/xsd/wix/targetfile/" },
{ "*manual-wix2/wix_xsd_targetimage.htm": "/docs/v3/xsd/wix/targetimage/" },
{ "*manual-wix2/wix_xsd_targetproductcode.htm": "/docs/v3/xsd/wix/targetproductcode/" },
{ "*manual-wix2/wix_xsd_text.htm": "/docs/v3/xsd/wix/text/" },
{ "*manual-wix2/wix_xsd_textstyle.htm": "/docs/v3/xsd/wix/textstyle/" },
{ "*manual-wix2/wix_xsd_typelib.htm": "/docs/v3/xsd/wix/typelib/" },
{ "*manual-wix2/wix_xsd_ui.htm": "/docs/v3/xsd/wix/ui/" },
{ "*manual-wix2/wix_xsd_uiref.htm": "/docs/v3/xsd/wix/uiref/" },
{ "*manual-wix2/wix_xsd_uitext.htm": "/docs/v3/xsd/wix/uitext/" },
{ "*manual-wix2/wix_xsd_unpublishcomponents.htm": "/docs/v3/xsd/wix/unpublishcomponents/" },
{ "*manual-wix2/wix_xsd_unpublishfeatures.htm": "/docs/v3/xsd/wix/unpublishfeatures/" },
{ "*manual-wix2/wix_xsd_unregisterclassinfo.htm": "/docs/v3/xsd/wix/unregisterclassinfo/" },
{ "*manual-wix2/wix_xsd_unregistercomplus.htm": "/docs/v3/xsd/wix/unregistercomplus/" },
{ "*manual-wix2/wix_xsd_unregisterextensioninfo.htm": "/docs/v3/xsd/wix/unregisterextensioninfo/" },
{ "*manual-wix2/wix_xsd_unregisterfonts.htm": "/docs/v3/xsd/wix/unregisterfonts/" },
{ "*manual-wix2/wix_xsd_unregistermimeinfo.htm": "/docs/v3/xsd/wix/unregistermimeinfo/" },
{ "*manual-wix2/wix_xsd_unregisterprogidinfo.htm": "/docs/v3/xsd/wix/unregisterprogidinfo/" },
{ "*manual-wix2/wix_xsd_unregistertypelibraries.htm": "/docs/v3/xsd/wix/unregistertypelibraries/" },
{ "*manual-wix2/wix_xsd_upgrade.htm": "/docs/v3/xsd/wix/upgrade/" },
{ "*manual-wix2/wix_xsd_upgradefile.htm": "/docs/v3/xsd/wix/upgradefile/" },
{ "*manual-wix2/wix_xsd_upgradeimage.htm": "/docs/v3/xsd/wix/upgradeimage/" },
{ "*manual-wix2/wix_xsd_upgradeversion.htm": "/docs/v3/xsd/wix/upgradeversion/" },
{ "*manual-wix2/wix_xsd_user.htm": "/docs/v3/xsd/util/user/" },
{ "*manual-wix2/wix_xsd_validateproductid.htm": "/docs/v3/xsd/wix/validateproductid/" },
{ "*manual-wix2/wix_xsd_verb.htm": "/docs/v3/xsd/wix/verb/" },
{ "*manual-wix2/wix_xsd_webaddress.htm": "/docs/v3/xsd/iis/webaddress/" },
{ "*manual-wix2/wix_xsd_webapplication.htm": "/docs/v3/xsd/iis/webapplication/" },
{ "*manual-wix2/wix_xsd_webapplicationextension.htm": "/docs/v3/xsd/iis/webapplicationextension/" },
{ "*manual-wix2/wix_xsd_webapppool.htm": "/docs/v3/xsd/iis/webapppool/" },
{ "*manual-wix2/wix_xsd_webdir.htm": "/docs/v3/xsd/iis/webdir/" },
{ "*manual-wix2/wix_xsd_webdirproperties.htm": "/docs/v3/xsd/iis/webdirproperties/" },
{ "*manual-wix2/wix_xsd_weberror.htm": "/docs/v3/xsd/iis/weberror/" },
{ "*manual-wix2/wix_xsd_webfilter.htm": "/docs/v3/xsd/iis/webfilter/" },
{ "*manual-wix2/wix_xsd_weblog.htm": "/docs/v3/xsd/iis/weblog/" },
{ "*manual-wix2/wix_xsd_webproperty.htm": "/docs/v3/xsd/iis/webproperty/" },
{ "*manual-wix2/wix_xsd_webserviceextension.htm": "/docs/v3/xsd/iis/webserviceextension/" },
{ "*manual-wix2/wix_xsd_website.htm": "/docs/v3/xsd/iis/website/" },
{ "*manual-wix2/wix_xsd_webvirtualdir.htm": "/docs/v3/xsd/iis/webvirtualdir/" },
{ "*manual-wix2/wix_xsd_wix.htm": "/docs/v3/xsd/wix/wix/" },
{ "*manual-wix2/wix_xsd_writeenvironmentstrings.htm": "/docs/v3/xsd/wix/writeenvironmentstrings/" },
{ "*manual-wix2/wix_xsd_writeinivalues.htm": "/docs/v3/xsd/wix/writeinivalues/" },
{ "*manual-wix2/wix_xsd_writeregistryvalues.htm": "/docs/v3/xsd/wix/writeregistryvalues/" },
{ "*manual-wix2/wix_xsd_xmlconfig.htm": "/docs/v3/xsd/util/xmlconfig/" },
{ "*manual-wix2/wix_xsd_xmlfile.htm": "/docs/v3/xsd/util/xmlfile/" },
{ "*manual-wix3/add_a_file.htm": "/docs/v3/howtos/files_and_registry/add_a_file/" },
{ "*manual-wix3/advanced_wix_topics_index.htm": "/docs/v3/howtos/" },
{ "*manual-wix3/alltools.htm": "/docs/v3/overview/alltools/" },
{ "*manual-wix3/authoring_bundle_application.htm": "/docs/v3/bundle/authoring_bundle_application/" },
{ "*manual-wix3/authoring_bundle_intro.htm": "/docs/v3/bundle/" },
{ "*manual-wix3/authoring_bundle_package_manifest.htm": "/docs/v3/bundle/authoring_bundle_package_manifest/" },
{ "*manual-wix3/authoring_bundle_skeleton.htm": "/docs/v3/bundle/authoring_bundle_skeleton/" },
{ "*manual-wix3/authoring_custom_actions.htm": "/docs/v3/wixdev/extensions/authoring_custom_actions/" },
{ "*manual-wix3/authoring_first_file.htm": "/docs/v3/howtos/" },
{ "*manual-wix3/authoring_first_msbuild_project.htm": "/docs/v3/msbuild/authoring_first_msbuild_project/" },
{ "*manual-wix3/authoring_first_votive_project.htm": "/docs/v3/votive/authoring_first_votive_project/" },
{ "*manual-wix3/authoring_getting_started.htm": "/docs/v3/howtos/" },
{ "*manual-wix3/authoring_merge_modules.htm": "/docs/v3/howtos/" },
{ "*manual-wix3/author_product_dependencies.htm": "/docs/v3/howtos/author_product_dependencies/" },
{ "*manual-wix3/bal_xsd_condition.htm": "/docs/v3/xsd/bal/condition/" },
{ "*manual-wix3/bal_xsd_index.htm": "/docs/v3/xsd/bal/" },
{ "*manual-wix3/bal_xsd_overridable.htm": "/docs/v3/xsd/bal/overridable/" },
{ "*manual-wix3/bal_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/bal/simple_type_autogenguid/" },
{ "*manual-wix3/bal_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/bal/simple_type_burncontainertype/" },
{ "*manual-wix3/bal_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/bal/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/bal_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/bal/simple_type_componentguid/" },
{ "*manual-wix3/bal_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/bal/simple_type_compressionleveltype/" },
{ "*manual-wix3/bal_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/bal/simple_type_compressionleveltype/" },
{ "*manual-wix3/bal_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/bal/simple_type_diskidtype/" },
{ "*manual-wix3/bal_xsd_simple_type_exittype.htm": "/docs/v3/xsd/bal/simple_type_exittype/" },
{ "*manual-wix3/bal_xsd_simple_type_guid.htm": "/docs/v3/xsd/bal/simple_type_guid/" },
{ "*manual-wix3/bal_xsd_simple_type_hextype.htm": "/docs/v3/xsd/bal/simple_type_hextype/" },
{ "*manual-wix3/bal_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/bal/simple_type_installuninstalltype/" },
{ "*manual-wix3/bal_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/bal/simple_type_localizableinteger/" },
{ "*manual-wix3/bal_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/bal/simple_type_longfilenametype/" },
{ "*manual-wix3/bal_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/bal/simple_type_preprocessorvariables/" },
{ "*manual-wix3/bal_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/bal/simple_type_registryroottype/" },
{ "*manual-wix3/bal_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/bal/simple_type_sequencetype/" },
{ "*manual-wix3/bal_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/bal/simple_type_shortfilenametype/" },
{ "*manual-wix3/bal_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/bal/simple_type_versiontype/" },
{ "*manual-wix3/bal_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/bal/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/bal_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/bal/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/bal/simple_type_yesnobuttontype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/bal/simple_type_yesnobuttontype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/bal/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/bal/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/bal/simple_type_yesnotype/" },
{ "*manual-wix3/bal_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/bal/simple_type_yesnotype/" },
{ "*manual-wix3/bal_xsd_wixmanagedbootstrapperapplicationhost.htm": "/docs/v3/xsd/bal/wixmanagedbootstrapperapplicationhost/" },
{ "*manual-wix3/bal_xsd_wixstandardbootstrapperapplication.htm": "/docs/v3/xsd/bal/wixstandardbootstrapperapplication/" },
{ "*manual-wix3/block_install_on_os.htm": "/docs/v3/howtos/redistributables_and_install_checks/block_install_on_os/" },
{ "*manual-wix3/bootstrapper_application.htm": "/docs/v3/bundle/ba/" },
{ "*manual-wix3/bootstrapper_application_interface.htm": "/docs/v3/bundle/ba/bootstrapper_application_interface/" },
{ "*manual-wix3/building_wix.htm": "/docs/v3/wixdev/building_wix/" },
{ "*manual-wix3/build_a_localized_version.htm": "/docs/v3/howtos/ui_and_localization/build_a_localized_version/" },
{ "*manual-wix3/bundle_author_chain.htm": "/docs/v3/bundle/bundle/bundle_author_chain/" },
{ "*manual-wix3/bundle_author_layoutdirectory.htm": "/docs/v3/bundle/" },
{ "*manual-wix3/bundle_built_in_variables.htm": "/docs/v3/bundle/bundle_built_in_variables/" },
{ "*manual-wix3/bundle_define_searches.htm": "/docs/v3/bundle/bundle_define_searches/" },
{ "*manual-wix3/candle.htm": "/docs/v3/overview/candle/" },
{ "*manual-wix3/check_for_dotnet.htm": "/docs/v3/howtos/redistributables_and_install_checks/check_for_dotnet/" },
{ "*manual-wix3/check_the_version_number.htm": "/docs/v3/howtos/files_and_registry/check_the_version_number/" },
{ "*manual-wix3/codepage.htm": "/docs/v3/overview/codepage/" },
{ "*manual-wix3/complus_xsd_complusapplication.htm": "/docs/v3/xsd/complus/complusapplication/" },
{ "*manual-wix3/complus_xsd_complusapplicationrole.htm": "/docs/v3/xsd/complus/complusapplicationrole/" },
{ "*manual-wix3/complus_xsd_complusassembly.htm": "/docs/v3/xsd/complus/complusassembly/" },
{ "*manual-wix3/complus_xsd_complusassemblydependency.htm": "/docs/v3/xsd/complus/complusassemblydependency/" },
{ "*manual-wix3/complus_xsd_compluscomponent.htm": "/docs/v3/xsd/complus/compluscomponent/" },
{ "*manual-wix3/complus_xsd_complusgroupinapplicationrole.htm": "/docs/v3/xsd/complus/complusgroupinapplicationrole/" },
{ "*manual-wix3/complus_xsd_complusgroupinpartitionrole.htm": "/docs/v3/xsd/complus/complusgroupinpartitionrole/" },
{ "*manual-wix3/complus_xsd_complusinterface.htm": "/docs/v3/xsd/complus/complusinterface/" },
{ "*manual-wix3/complus_xsd_complusmethod.htm": "/docs/v3/xsd/complus/complusmethod/" },
{ "*manual-wix3/complus_xsd_compluspartition.htm": "/docs/v3/xsd/complus/compluspartition/" },
{ "*manual-wix3/complus_xsd_compluspartitionrole.htm": "/docs/v3/xsd/complus/compluspartitionrole/" },
{ "*manual-wix3/complus_xsd_compluspartitionuser.htm": "/docs/v3/xsd/complus/compluspartitionuser/" },
{ "*manual-wix3/complus_xsd_complusroleforcomponent.htm": "/docs/v3/xsd/complus/complusroleforcomponent/" },
{ "*manual-wix3/complus_xsd_complusroleforinterface.htm": "/docs/v3/xsd/complus/complusroleforinterface/" },
{ "*manual-wix3/complus_xsd_complusroleformethod.htm": "/docs/v3/xsd/complus/complusroleformethod/" },
{ "*manual-wix3/complus_xsd_complussubscription.htm": "/docs/v3/xsd/complus/complussubscription/" },
{ "*manual-wix3/complus_xsd_complususerinapplicationrole.htm": "/docs/v3/xsd/complus/complususerinapplicationrole/" },
{ "*manual-wix3/complus_xsd_complususerinpartitionrole.htm": "/docs/v3/xsd/complus/complususerinpartitionrole/" },
{ "*manual-wix3/complus_xsd_index.htm": "/docs/v3/xsd/complus/" },
{ "*manual-wix3/complus_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/complus/simple_type_autogenguid/" },
{ "*manual-wix3/complus_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/complus/simple_type_burncontainertype/" },
{ "*manual-wix3/complus_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/complus/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/complus_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/complus/simple_type_componentguid/" },
{ "*manual-wix3/complus_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/complus/simple_type_compressionleveltype/" },
{ "*manual-wix3/complus_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/complus/simple_type_compressionleveltype/" },
{ "*manual-wix3/complus_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/complus/simple_type_diskidtype/" },
{ "*manual-wix3/complus_xsd_simple_type_exittype.htm": "/docs/v3/xsd/complus/simple_type_exittype/" },
{ "*manual-wix3/complus_xsd_simple_type_guid.htm": "/docs/v3/xsd/complus/simple_type_guid/" },
{ "*manual-wix3/complus_xsd_simple_type_hextype.htm": "/docs/v3/xsd/complus/simple_type_hextype/" },
{ "*manual-wix3/complus_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/complus/simple_type_installuninstalltype/" },
{ "*manual-wix3/complus_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/complus/simple_type_localizableinteger/" },
{ "*manual-wix3/complus_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/complus/simple_type_longfilenametype/" },
{ "*manual-wix3/complus_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/complus_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/complus/simple_type_preprocessorvariables/" },
{ "*manual-wix3/complus_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/complus/simple_type_registryroottype/" },
{ "*manual-wix3/complus_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/complus/simple_type_sequencetype/" },
{ "*manual-wix3/complus_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/complus/simple_type_shortfilenametype/" },
{ "*manual-wix3/complus_xsd_simple_type_uuid.htm": "/docs/v3/xsd/complus/simple_type_uuid/" },
{ "*manual-wix3/complus_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/complus/simple_type_versiontype/" },
{ "*manual-wix3/complus_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/complus/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/complus_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/complus/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/complus/simple_type_yesnobuttontype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/complus/simple_type_yesnobuttontype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/complus/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/complus/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/complus/simple_type_yesnotype/" },
{ "*manual-wix3/complus_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/complus/simple_type_yesnotype/" },
{ "*manual-wix3/configure_arp_appearance.htm": "/docs/v3/howtos/ui_and_localization/configure_arp_appearance/" },
{ "*manual-wix3/create_an_uninstall_shortcut.htm": "/docs/v3/howtos/files_and_registry/" },
{ "*manual-wix3/create_internet_shortcut.htm": "/docs/v3/howtos/files_and_registry/create_internet_shortcut/" },
{ "*manual-wix3/create_start_menu_shortcut.htm": "/docs/v3/howtos/files_and_registry/create_start_menu_shortcut/" },
{ "*manual-wix3/daily_builds.htm": "/docs/v3/msbuild/daily_builds/" },
{ "*manual-wix3/dark.htm": "/docs/v3/overview/dark/" },
{ "*manual-wix3/dependency_xsd_index.htm": "/docs/v3/xsd/dependency/" },
{ "*manual-wix3/dependency_xsd_providerkey.htm": "/docs/v3/xsd/dependency/providerkey/" },
{ "*manual-wix3/dependency_xsd_provides.htm": "/docs/v3/xsd/dependency/provides/" },
{ "*manual-wix3/dependency_xsd_requires.htm": "/docs/v3/xsd/dependency/requires/" },
{ "*manual-wix3/dependency_xsd_requiresref.htm": "/docs/v3/xsd/dependency/requiresref/" },
{ "*manual-wix3/dependency_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/dependency/simple_type_versiontype/" },
{ "*manual-wix3/dependency_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/dependency/simple_type_yesnotype/" },
{ "*manual-wix3/difxapp_xsd_driver.htm": "/docs/v3/xsd/difxapp/driver/" },
{ "*manual-wix3/difxapp_xsd_index.htm": "/docs/v3/xsd/difxapp/" },
{ "*manual-wix3/difxapp_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/difxapp/simple_type_autogenguid/" },
{ "*manual-wix3/difxapp_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/difxapp/simple_type_burncontainertype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/difxapp/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/difxapp/simple_type_componentguid/" },
{ "*manual-wix3/difxapp_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/difxapp/simple_type_compressionleveltype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/difxapp/simple_type_compressionleveltype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/difxapp/simple_type_diskidtype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_exittype.htm": "/docs/v3/xsd/difxapp/simple_type_exittype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_guid.htm": "/docs/v3/xsd/difxapp/simple_type_guid/" },
{ "*manual-wix3/difxapp_xsd_simple_type_hextype.htm": "/docs/v3/xsd/difxapp/simple_type_hextype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/difxapp/simple_type_installuninstalltype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/difxapp/simple_type_localizableinteger/" },
{ "*manual-wix3/difxapp_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/difxapp/simple_type_longfilenametype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/difxapp_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/difxapp/simple_type_preprocessorvariables/" },
{ "*manual-wix3/difxapp_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/difxapp/simple_type_registryroottype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/difxapp/simple_type_sequencetype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/difxapp/simple_type_shortfilenametype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/difxapp/simple_type_versiontype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/difxapp/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/difxapp/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/difxapp/simple_type_yesnobuttontype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/difxapp/simple_type_yesnobuttontype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/difxapp/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/difxapp/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/difxapp/simple_type_yesnotype/" },
{ "*manual-wix3/difxapp_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/difxapp/simple_type_yesnotype/" },
{ "*manual-wix3/directorysearchref.htm": "/docs/v3/howtos/files_and_registry/directorysearchref/" },
{ "*manual-wix3/extensions.htm": "/docs/v3/wixdev/extensions/extensions/" },
{ "*manual-wix3/extension_development.htm": "/docs/v3/wixdev/extensions/" },
{ "*manual-wix3/extension_development_intro.htm": "/docs/v3/wixdev/extensions/extension_development_intro/" },
{ "*manual-wix3/extension_development_preprocessor.htm": "/docs/v3/wixdev/extensions/extension_development_preprocessor/" },
{ "*manual-wix3/extension_development_simple_example.htm": "/docs/v3/wixdev/extensions/extension_development_simple_example/" },
{ "*manual-wix3/extension_usage_introduction.htm": "/docs/v3/howtos/general/extension_usage_introduction/" },
{ "*manual-wix3/files.htm": "/docs/v3/overview/files/" },
{ "*manual-wix3/files_and_registry_toc.htm": "/docs/v3/howtos/files_and_registry/" },
{ "*manual-wix3/firewall_xsd_firewallexception.htm": "/docs/v3/xsd/firewall/firewallexception/" },
{ "*manual-wix3/firewall_xsd_index.htm": "/docs/v3/xsd/firewall/" },
{ "*manual-wix3/firewall_xsd_remoteaddress.htm": "/docs/v3/xsd/firewall/remoteaddress/" },
{ "*manual-wix3/firewall_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/firewall/simple_type_autogenguid/" },
{ "*manual-wix3/firewall_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/firewall/simple_type_burncontainertype/" },
{ "*manual-wix3/firewall_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/firewall/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/firewall_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/firewall/simple_type_componentguid/" },
{ "*manual-wix3/firewall_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/firewall/simple_type_compressionleveltype/" },
{ "*manual-wix3/firewall_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/firewall/simple_type_compressionleveltype/" },
{ "*manual-wix3/firewall_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/firewall/simple_type_diskidtype/" },
{ "*manual-wix3/firewall_xsd_simple_type_exittype.htm": "/docs/v3/xsd/firewall/simple_type_exittype/" },
{ "*manual-wix3/firewall_xsd_simple_type_guid.htm": "/docs/v3/xsd/firewall/simple_type_guid/" },
{ "*manual-wix3/firewall_xsd_simple_type_hextype.htm": "/docs/v3/xsd/firewall/simple_type_hextype/" },
{ "*manual-wix3/firewall_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/firewall/simple_type_installuninstalltype/" },
{ "*manual-wix3/firewall_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/firewall/simple_type_localizableinteger/" },
{ "*manual-wix3/firewall_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/firewall/simple_type_longfilenametype/" },
{ "*manual-wix3/firewall_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/firewall/simple_type_preprocessorvariables/" },
{ "*manual-wix3/firewall_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/firewall/simple_type_registryroottype/" },
{ "*manual-wix3/firewall_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/firewall/simple_type_sequencetype/" },
{ "*manual-wix3/firewall_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/firewall/simple_type_shortfilenametype/" },
{ "*manual-wix3/firewall_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/firewall/simple_type_versiontype/" },
{ "*manual-wix3/firewall_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/firewall/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/firewall_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/firewall/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/firewall/simple_type_yesnobuttontype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/firewall/simple_type_yesnobuttontype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/firewall/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/firewall/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/firewall/simple_type_yesnotype/" },
{ "*manual-wix3/firewall_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/firewall/simple_type_yesnotype/" },
{ "*manual-wix3/gaming_xsd_game.htm": "/docs/v3/xsd/gaming/game/" },
{ "*manual-wix3/gaming_xsd_index.htm": "/docs/v3/xsd/gaming/" },
{ "*manual-wix3/gaming_xsd_isrichsavedgame.htm": "/docs/v3/xsd/gaming/isrichsavedgame/" },
{ "*manual-wix3/gaming_xsd_playtask.htm": "/docs/v3/xsd/gaming/playtask/" },
{ "*manual-wix3/gaming_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/gaming/simple_type_autogenguid/" },
{ "*manual-wix3/gaming_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/gaming/simple_type_burncontainertype/" },
{ "*manual-wix3/gaming_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/gaming/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/gaming_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/gaming/simple_type_componentguid/" },
{ "*manual-wix3/gaming_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/gaming/simple_type_compressionleveltype/" },
{ "*manual-wix3/gaming_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/gaming/simple_type_compressionleveltype/" },
{ "*manual-wix3/gaming_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/gaming/simple_type_diskidtype/" },
{ "*manual-wix3/gaming_xsd_simple_type_exittype.htm": "/docs/v3/xsd/gaming/simple_type_exittype/" },
{ "*manual-wix3/gaming_xsd_simple_type_guid.htm": "/docs/v3/xsd/gaming/simple_type_guid/" },
{ "*manual-wix3/gaming_xsd_simple_type_hextype.htm": "/docs/v3/xsd/gaming/simple_type_hextype/" },
{ "*manual-wix3/gaming_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/gaming/simple_type_installuninstalltype/" },
{ "*manual-wix3/gaming_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/gaming/simple_type_localizableinteger/" },
{ "*manual-wix3/gaming_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/gaming/simple_type_longfilenametype/" },
{ "*manual-wix3/gaming_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/gaming/" },
{ "*manual-wix3/gaming_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/gaming/simple_type_preprocessorvariables/" },
{ "*manual-wix3/gaming_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/gaming/simple_type_registryroottype/" },
{ "*manual-wix3/gaming_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/gaming/simple_type_sequencetype/" },
{ "*manual-wix3/gaming_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/gaming/simple_type_shortfilenametype/" },
{ "*manual-wix3/gaming_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/gaming/simple_type_versiontype/" },
{ "*manual-wix3/gaming_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/gaming/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/gaming_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/gaming/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/gaming/simple_type_yesnobuttontype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/gaming/simple_type_yesnobuttontype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/gaming/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/gaming/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/gaming/simple_type_yesnotype/" },
{ "*manual-wix3/gaming_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/gaming/simple_type_yesnotype/" },
{ "*manual-wix3/gaming_xsd_supporttask.htm": "/docs/v3/xsd/gaming/supporttask/" },
{ "*manual-wix3/general_toc.htm": "/docs/v3/howtos/general/" },
{ "*manual-wix3/generate_guids.htm": "/docs/v3/howtos/general/generate_guids/" },
{ "*manual-wix3/get_a_log.htm": "/docs/v3/howtos/general/get_a_log/" },
{ "*manual-wix3/heat.htm": "/docs/v3/overview/heat/" },
{ "*manual-wix3/help.htm": "/docs/v3/main/help/" },
{ "*manual-wix3/help_development.htm": "/docs/v3/wixdev/help_development/" },
{ "*manual-wix3/iis_xsd_certificate.htm": "/docs/v3/xsd/iis/certificate/" },
{ "*manual-wix3/iis_xsd_certificateref.htm": "/docs/v3/xsd/iis/certificateref/" },
{ "*manual-wix3/iis_xsd_httpheader.htm": "/docs/v3/xsd/iis/httpheader/" },
{ "*manual-wix3/iis_xsd_index.htm": "/docs/v3/xsd/iis/" },
{ "*manual-wix3/iis_xsd_mimemap.htm": "/docs/v3/xsd/iis/mimemap/" },
{ "*manual-wix3/iis_xsd_recycletime.htm": "/docs/v3/xsd/iis/recycletime/" },
{ "*manual-wix3/iis_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/iis/simple_type_autogenguid/" },
{ "*manual-wix3/iis_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/iis/simple_type_burncontainertype/" },
{ "*manual-wix3/iis_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/iis/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/iis_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/iis/simple_type_componentguid/" },
{ "*manual-wix3/iis_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/iis/simple_type_compressionleveltype/" },
{ "*manual-wix3/iis_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/iis/simple_type_compressionleveltype/" },
{ "*manual-wix3/iis_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/iis/simple_type_diskidtype/" },
{ "*manual-wix3/iis_xsd_simple_type_exittype.htm": "/docs/v3/xsd/iis/simple_type_exittype/" },
{ "*manual-wix3/iis_xsd_simple_type_guid.htm": "/docs/v3/xsd/iis/simple_type_guid/" },
{ "*manual-wix3/iis_xsd_simple_type_hextype.htm": "/docs/v3/xsd/iis/simple_type_hextype/" },
{ "*manual-wix3/iis_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/iis/simple_type_installuninstalltype/" },
{ "*manual-wix3/iis_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/iis/simple_type_localizableinteger/" },
{ "*manual-wix3/iis_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/iis/simple_type_longfilenametype/" },
{ "*manual-wix3/iis_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/iis/" },
{ "*manual-wix3/iis_xsd_simple_type_percenttype.htm": "/docs/v3/xsd/iis/simple_type_percenttype/" },
{ "*manual-wix3/iis_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/iis/simple_type_preprocessorvariables/" },
{ "*manual-wix3/iis_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/iis/simple_type_registryroottype/" },
{ "*manual-wix3/iis_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/iis/simple_type_sequencetype/" },
{ "*manual-wix3/iis_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/iis/simple_type_shortfilenametype/" },
{ "*manual-wix3/iis_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/iis/simple_type_versiontype/" },
{ "*manual-wix3/iis_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/iis/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/iis_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/iis/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/iis/simple_type_yesnobuttontype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/iis/simple_type_yesnobuttontype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/iis/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/iis/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/iis/simple_type_yesnotype/" },
{ "*manual-wix3/iis_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/iis/simple_type_yesnotype/" },
{ "*manual-wix3/iis_xsd_webaddress.htm": "/docs/v3/xsd/iis/webaddress/" },
{ "*manual-wix3/iis_xsd_webapplication.htm": "/docs/v3/xsd/iis/webapplication/" },
{ "*manual-wix3/iis_xsd_webapplicationextension.htm": "/docs/v3/xsd/iis/webapplicationextension/" },
{ "*manual-wix3/iis_xsd_webapppool.htm": "/docs/v3/xsd/iis/webapppool/" },
{ "*manual-wix3/iis_xsd_webdir.htm": "/docs/v3/xsd/iis/webdir/" },
{ "*manual-wix3/iis_xsd_webdirproperties.htm": "/docs/v3/xsd/iis/webdirproperties/" },
{ "*manual-wix3/iis_xsd_weberror.htm": "/docs/v3/xsd/iis/weberror/" },
{ "*manual-wix3/iis_xsd_webfilter.htm": "/docs/v3/xsd/iis/webfilter/" },
{ "*manual-wix3/iis_xsd_weblog.htm": "/docs/v3/xsd/iis/weblog/" },
{ "*manual-wix3/iis_xsd_webproperty.htm": "/docs/v3/xsd/iis/webproperty/" },
{ "*manual-wix3/iis_xsd_webserviceextension.htm": "/docs/v3/xsd/iis/webserviceextension/" },
{ "*manual-wix3/iis_xsd_website.htm": "/docs/v3/xsd/iis/website/" },
{ "*manual-wix3/iis_xsd_webvirtualdir.htm": "/docs/v3/xsd/iis/webvirtualdir/" },
{ "*manual-wix3/insignia.htm": "/docs/v3/overview/insignia/" },
{ "*manual-wix3/install_directx9.htm": "/docs/v3/howtos/redistributables_and_install_checks/install_directx9/" },
{ "*manual-wix3/install_dotnet.htm": "/docs/v3/howtos/redistributables_and_install_checks/install_dotnet/" },
{ "*manual-wix3/install_vcredist.htm": "/docs/v3/howtos/redistributables_and_install_checks/install_vcredist/" },
{ "*manual-wix3/isolatedapp_xsd_application.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_description.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_details.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_entrypoint.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_feed.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_icon.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_id.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_index.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_isolatedapp.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_manufacturer.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_name.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_package.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_previousfeed.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_simple_type_uuid.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_source.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_updaterate.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/isolatedapp_xsd_version.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/light.htm": "/docs/v3/overview/light/" },
{ "*manual-wix3/lit.htm": "/docs/v3/overview/lit/" },
{ "*manual-wix3/localized_extensions.htm": "/docs/v3/wixdev/extensions/localized_extensions/" },
{ "*manual-wix3/look_inside_msi.htm": "/docs/v3/howtos/general/look_inside_msi/" },
{ "*manual-wix3/lux.htm": "/docs/v3/overview/lux/" },
{ "*manual-wix3/lux_xsd_condition.htm": "/docs/v3/xsd/lux/condition/" },
{ "*manual-wix3/lux_xsd_expression.htm": "/docs/v3/xsd/lux/expression/" },
{ "*manual-wix3/lux_xsd_index.htm": "/docs/v3/xsd/lux/" },
{ "*manual-wix3/lux_xsd_mutation.htm": "/docs/v3/xsd/lux/mutation/" },
{ "*manual-wix3/lux_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/lux/simple_type_autogenguid/" },
{ "*manual-wix3/lux_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/lux/simple_type_burncontainertype/" },
{ "*manual-wix3/lux_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/lux/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/lux_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/lux/simple_type_componentguid/" },
{ "*manual-wix3/lux_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/lux/simple_type_compressionleveltype/" },
{ "*manual-wix3/lux_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/lux/simple_type_compressionleveltype/" },
{ "*manual-wix3/lux_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/lux/simple_type_diskidtype/" },
{ "*manual-wix3/lux_xsd_simple_type_exittype.htm": "/docs/v3/xsd/lux/simple_type_exittype/" },
{ "*manual-wix3/lux_xsd_simple_type_guid.htm": "/docs/v3/xsd/lux/simple_type_guid/" },
{ "*manual-wix3/lux_xsd_simple_type_hextype.htm": "/docs/v3/xsd/lux/simple_type_hextype/" },
{ "*manual-wix3/lux_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/lux/simple_type_installuninstalltype/" },
{ "*manual-wix3/lux_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/lux/simple_type_localizableinteger/" },
{ "*manual-wix3/lux_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/lux/simple_type_longfilenametype/" },
{ "*manual-wix3/lux_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/lux/simple_type_preprocessorvariables/" },
{ "*manual-wix3/lux_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/lux/simple_type_registryroottype/" },
{ "*manual-wix3/lux_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/lux/simple_type_sequencetype/" },
{ "*manual-wix3/lux_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/lux/simple_type_shortfilenametype/" },
{ "*manual-wix3/lux_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/lux/simple_type_versiontype/" },
{ "*manual-wix3/lux_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/lux/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/lux_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/lux/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/lux/simple_type_yesnobuttontype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/lux/simple_type_yesnobuttontype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/lux/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/lux/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/lux/simple_type_yesnotype/" },
{ "*manual-wix3/lux_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/lux/simple_type_yesnotype/" },
{ "*manual-wix3/lux_xsd_unittest.htm": "/docs/v3/xsd/lux/unittest/" },
{ "*manual-wix3/lux_xsd_unittestref.htm": "/docs/v3/xsd/lux/unittestref/" },
{ "*manual-wix3/main.htm": "/docs/v3/" },
{ "*manual-wix3/major_upgrade.htm": "/docs/v3/howtos/updates/major_upgrade/" },
{ "*manual-wix3/make_installer_localizable.htm": "/docs/v3/howtos/ui_and_localization/make_installer_localizable/" },
{ "*manual-wix3/merging_msm_into_msi.htm": "/docs/v3/howtos/" },
{ "*manual-wix3/msbuild.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/msbuild_target_reference_harvestdirectory.htm": "/docs/v3/msbuild/target_reference/harvestdirectory/" },
{ "*manual-wix3/msbuild_target_reference_harvestfile.htm": "/docs/v3/msbuild/target_reference/harvestfile/" },
{ "*manual-wix3/msbuild_target_reference_harvestprojects.htm": "/docs/v3/msbuild/target_reference/harvestprojects/" },
{ "*manual-wix3/msbuild_target_reference_toc.htm": "/docs/v3/msbuild/target_reference/" },
{ "*manual-wix3/msbuild_task_reference_candle.htm": "/docs/v3/msbuild/task_reference/candle/" },
{ "*manual-wix3/msbuild_task_reference_heatdirectory.htm": "/docs/v3/msbuild/task_reference/heatdirectory/" },
{ "*manual-wix3/msbuild_task_reference_heatfile.htm": "/docs/v3/msbuild/task_reference/heatfile/" },
{ "*manual-wix3/msbuild_task_reference_heatproject.htm": "/docs/v3/msbuild/task_reference/heatproject/" },
{ "*manual-wix3/msbuild_task_reference_light.htm": "/docs/v3/msbuild/task_reference/light/" },
{ "*manual-wix3/msbuild_task_reference_lit.htm": "/docs/v3/msbuild/task_reference/lit/" },
{ "*manual-wix3/msbuild_task_reference_toc.htm": "/docs/v3/msbuild/task_reference/" },
{ "*manual-wix3/msitowix.htm": "/docs/v3/overview/msitowix/" },
{ "*manual-wix3/msi_useful_links.htm": "/docs/v3/overview/msi_useful_links/" },
{ "*manual-wix3/msmq_xsd_index.htm": "/docs/v3/xsd/msmq/" },
{ "*manual-wix3/msmq_xsd_messagequeue.htm": "/docs/v3/xsd/msmq/messagequeue/" },
{ "*manual-wix3/msmq_xsd_messagequeuepermission.htm": "/docs/v3/xsd/msmq/messagequeuepermission/" },
{ "*manual-wix3/msmq_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/msmq/simple_type_autogenguid/" },
{ "*manual-wix3/msmq_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/msmq/simple_type_burncontainertype/" },
{ "*manual-wix3/msmq_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/msmq/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/msmq_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/msmq/simple_type_componentguid/" },
{ "*manual-wix3/msmq_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/msmq/simple_type_compressionleveltype/" },
{ "*manual-wix3/msmq_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/msmq/simple_type_compressionleveltype/" },
{ "*manual-wix3/msmq_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/msmq/simple_type_diskidtype/" },
{ "*manual-wix3/msmq_xsd_simple_type_exittype.htm": "/docs/v3/xsd/msmq/simple_type_exittype/" },
{ "*manual-wix3/msmq_xsd_simple_type_guid.htm": "/docs/v3/xsd/msmq/simple_type_guid/" },
{ "*manual-wix3/msmq_xsd_simple_type_hextype.htm": "/docs/v3/xsd/msmq/simple_type_hextype/" },
{ "*manual-wix3/msmq_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/msmq/simple_type_installuninstalltype/" },
{ "*manual-wix3/msmq_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/msmq/simple_type_localizableinteger/" },
{ "*manual-wix3/msmq_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/msmq/simple_type_longfilenametype/" },
{ "*manual-wix3/msmq_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/msmq/" },
{ "*manual-wix3/msmq_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/msmq/simple_type_preprocessorvariables/" },
{ "*manual-wix3/msmq_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/msmq/simple_type_registryroottype/" },
{ "*manual-wix3/msmq_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/msmq/simple_type_sequencetype/" },
{ "*manual-wix3/msmq_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/msmq/simple_type_shortfilenametype/" },
{ "*manual-wix3/msmq_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/msmq/simple_type_versiontype/" },
{ "*manual-wix3/msmq_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/msmq/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/msmq_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/msmq/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/msmq/simple_type_yesnobuttontype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/msmq/simple_type_yesnobuttontype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/msmq/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/msmq/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/msmq/simple_type_yesnotype/" },
{ "*manual-wix3/msmq_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/msmq/simple_type_yesnotype/" },
{ "*manual-wix3/nant.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_configuration.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_conventions.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_task_reference_candle.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_task_reference_light.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_task_reference_lit.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/nant_task_reference_toc.htm": "/docs/v3/msbuild/" },
{ "*manual-wix3/netfx_xsd_index.htm": "/docs/v3/xsd/netfx/" },
{ "*manual-wix3/netfx_xsd_nativeimage.htm": "/docs/v3/xsd/netfx/nativeimage/" },
{ "*manual-wix3/netfx_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/netfx/simple_type_yesnotype/" },
{ "*manual-wix3/ngen_managed_assemblies.htm": "/docs/v3/howtos/files_and_registry/ngen_managed_assemblies/" },
{ "*manual-wix3/officeaddin_xsd_application.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_description.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_details.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_entrypoint.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_extendsapplication.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_feed.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_icon.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_id.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_index.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_manufacturer.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_name.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_officeaddin.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_package.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_previousfeed.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_simple_type_supportedofficeapplications.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_simple_type_uuid.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_source.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_updaterate.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/officeaddin_xsd_version.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/optimizing_builds.htm": "/docs/v3/howtos/general/optimizing_builds/" },
{ "*manual-wix3/osinfo.htm": "/docs/v3/customactions/osinfo/" },
{ "*manual-wix3/overview.htm": "/docs/v3/overview/" },
{ "*manual-wix3/parentdirectorysearch.htm": "/docs/v3/howtos/files_and_registry/parentdirectorysearch/" },
{ "*manual-wix3/patching.htm": "/docs/v3/patching/" },
{ "*manual-wix3/patch_building.htm": "/docs/v3/patching/patch_building/" },
{ "*manual-wix3/patch_restrictions.htm": "/docs/v3/patching/patch_restrictions/" },
{ "*manual-wix3/perfmon.htm": "/docs/v3/customactions/perfmon/" },
{ "*manual-wix3/preprocessor.htm": "/docs/v3/overview/preprocessor/" },
{ "*manual-wix3/ps_xsd_formatsfile.htm": "/docs/v3/xsd/ps/formatsfile/" },
{ "*manual-wix3/ps_xsd_index.htm": "/docs/v3/xsd/ps/" },
{ "*manual-wix3/ps_xsd_requiredversion.htm": "/docs/v3/xsd/ps/requiredversion/" },
{ "*manual-wix3/ps_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/ps/simple_type_autogenguid/" },
{ "*manual-wix3/ps_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/ps/simple_type_burncontainertype/" },
{ "*manual-wix3/ps_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/ps/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/ps_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/ps/simple_type_componentguid/" },
{ "*manual-wix3/ps_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/ps/simple_type_compressionleveltype/" },
{ "*manual-wix3/ps_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/ps/simple_type_compressionleveltype/" },
{ "*manual-wix3/ps_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/ps/simple_type_diskidtype/" },
{ "*manual-wix3/ps_xsd_simple_type_embeddedresource.htm": "/docs/v3/xsd/ps/simple_type_embeddedresource/" },
{ "*manual-wix3/ps_xsd_simple_type_exittype.htm": "/docs/v3/xsd/ps/simple_type_exittype/" },
{ "*manual-wix3/ps_xsd_simple_type_guid.htm": "/docs/v3/xsd/ps/simple_type_guid/" },
{ "*manual-wix3/ps_xsd_simple_type_hextype.htm": "/docs/v3/xsd/ps/simple_type_hextype/" },
{ "*manual-wix3/ps_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/ps/simple_type_installuninstalltype/" },
{ "*manual-wix3/ps_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/ps/simple_type_localizableinteger/" },
{ "*manual-wix3/ps_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/ps/simple_type_longfilenametype/" },
{ "*manual-wix3/ps_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/ps/" },
{ "*manual-wix3/ps_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/ps/simple_type_preprocessorvariables/" },
{ "*manual-wix3/ps_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/ps/simple_type_registryroottype/" },
{ "*manual-wix3/ps_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/ps/simple_type_sequencetype/" },
{ "*manual-wix3/ps_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/ps/simple_type_shortfilenametype/" },
{ "*manual-wix3/ps_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/ps/simple_type_versiontype/" },
{ "*manual-wix3/ps_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/ps/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/ps_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/ps/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/ps/simple_type_yesnobuttontype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/ps/simple_type_yesnobuttontype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/ps/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/ps/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/ps/simple_type_yesnotype/" },
{ "*manual-wix3/ps_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/ps/simple_type_yesnotype/" },
{ "*manual-wix3/ps_xsd_snapin.htm": "/docs/v3/xsd/ps/snapin/" },
{ "*manual-wix3/ps_xsd_typesfile.htm": "/docs/v3/xsd/ps/typesfile/" },
{ "*manual-wix3/qtexec.htm": "/docs/v3/customactions/qtexec/" },
{ "*manual-wix3/read_a_registry_entry.htm": "/docs/v3/howtos/files_and_registry/read_a_registry_entry/" },
{ "*manual-wix3/redistributables_and_install_checks_toc.htm": "/docs/v3/howtos/redistributables_and_install_checks/" },
{ "*manual-wix3/resources.htm": "/docs/v3/" },
{ "*manual-wix3/run_program_after_install.htm": "/docs/v3/howtos/ui_and_localization/run_program_after_install/" },
{ "*manual-wix3/schema_index.htm": "/docs/v3/xsd/" },
{ "*manual-wix3/shellexec.htm": "/docs/v3/customactions/shellexec/" },
{ "*manual-wix3/specifying_cultures_to_build.htm": "/docs/v3/howtos/ui_and_localization/specifying_cultures_to_build/" },
{ "*manual-wix3/specifying_source_files.htm": "/docs/v3/howtos/general/specifying_source_files/" },
{ "*manual-wix3/sql_xsd_index.htm": "/docs/v3/xsd/sql/" },
{ "*manual-wix3/sql_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/sql/simple_type_autogenguid/" },
{ "*manual-wix3/sql_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/sql/simple_type_burncontainertype/" },
{ "*manual-wix3/sql_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/sql/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/sql_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/sql/simple_type_componentguid/" },
{ "*manual-wix3/sql_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/sql/simple_type_compressionleveltype/" },
{ "*manual-wix3/sql_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/sql/simple_type_compressionleveltype/" },
{ "*manual-wix3/sql_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/sql/simple_type_diskidtype/" },
{ "*manual-wix3/sql_xsd_simple_type_exittype.htm": "/docs/v3/xsd/sql/simple_type_exittype/" },
{ "*manual-wix3/sql_xsd_simple_type_guid.htm": "/docs/v3/xsd/sql/simple_type_guid/" },
{ "*manual-wix3/sql_xsd_simple_type_hextype.htm": "/docs/v3/xsd/sql/simple_type_hextype/" },
{ "*manual-wix3/sql_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/sql/simple_type_installuninstalltype/" },
{ "*manual-wix3/sql_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/sql/simple_type_localizableinteger/" },
{ "*manual-wix3/sql_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/sql/simple_type_longfilenametype/" },
{ "*manual-wix3/sql_xsd_simple_type_patchclassificationtype.htm": "/docs/v3/xsd/sql/" },
{ "*manual-wix3/sql_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/sql/simple_type_preprocessorvariables/" },
{ "*manual-wix3/sql_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/sql/simple_type_registryroottype/" },
{ "*manual-wix3/sql_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/sql/simple_type_sequencetype/" },
{ "*manual-wix3/sql_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/sql/simple_type_shortfilenametype/" },
{ "*manual-wix3/sql_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/sql/simple_type_versiontype/" },
{ "*manual-wix3/sql_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/sql/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/sql_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/sql/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/sql/simple_type_yesnobuttontype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/sql/simple_type_yesnobuttontype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/sql/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/sql/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/sql/simple_type_yesnotype/" },
{ "*manual-wix3/sql_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/sql/simple_type_yesnotype/" },
{ "*manual-wix3/sql_xsd_sqldatabase.htm": "/docs/v3/xsd/sql/sqldatabase/" },
{ "*manual-wix3/sql_xsd_sqlfilespec.htm": "/docs/v3/xsd/sql/sqlfilespec/" },
{ "*manual-wix3/sql_xsd_sqllogfilespec.htm": "/docs/v3/xsd/sql/sqllogfilespec/" },
{ "*manual-wix3/sql_xsd_sqlscript.htm": "/docs/v3/xsd/sql/sqlscript/" },
{ "*manual-wix3/sql_xsd_sqlstring.htm": "/docs/v3/xsd/sql/sqlstring/" },
{ "*manual-wix3/standard_customactions.htm": "/docs/v3/customactions/" },
{ "*manual-wix3/tag_xsd_index.htm": "/docs/v3/xsd/tag/" },
{ "*manual-wix3/tag_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/tag/simple_type_autogenguid/" },
{ "*manual-wix3/tag_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/tag/simple_type_burncontainertype/" },
{ "*manual-wix3/tag_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/tag/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/tag_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/tag/simple_type_componentguid/" },
{ "*manual-wix3/tag_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/tag/simple_type_compressionleveltype/" },
{ "*manual-wix3/tag_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/tag/simple_type_compressionleveltype/" },
{ "*manual-wix3/tag_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/tag/simple_type_diskidtype/" },
{ "*manual-wix3/tag_xsd_simple_type_exittype.htm": "/docs/v3/xsd/tag/simple_type_exittype/" },
{ "*manual-wix3/tag_xsd_simple_type_guid.htm": "/docs/v3/xsd/tag/simple_type_guid/" },
{ "*manual-wix3/tag_xsd_simple_type_hextype.htm": "/docs/v3/xsd/tag/simple_type_hextype/" },
{ "*manual-wix3/tag_xsd_simple_type_installuninstalltype.htm": "/docs/v3/xsd/tag/simple_type_installuninstalltype/" },
{ "*manual-wix3/tag_xsd_simple_type_localizableinteger.htm": "/docs/v3/xsd/tag/simple_type_localizableinteger/" },
{ "*manual-wix3/tag_xsd_simple_type_longfilenametype.htm": "/docs/v3/xsd/tag/simple_type_longfilenametype/" },
{ "*manual-wix3/tag_xsd_simple_type_preprocessorvariables.htm": "/docs/v3/xsd/tag/simple_type_preprocessorvariables/" },
{ "*manual-wix3/tag_xsd_simple_type_registryroottype.htm": "/docs/v3/xsd/tag/simple_type_registryroottype/" },
{ "*manual-wix3/tag_xsd_simple_type_sequencetype.htm": "/docs/v3/xsd/tag/simple_type_sequencetype/" },
{ "*manual-wix3/tag_xsd_simple_type_shortfilenametype.htm": "/docs/v3/xsd/tag/simple_type_shortfilenametype/" },
{ "*manual-wix3/tag_xsd_simple_type_tagtype.htm": "/docs/v3/xsd/tag/simple_type_tagtype/" },
{ "*manual-wix3/tag_xsd_simple_type_tagtypetypeunion.htm": "/docs/v3/xsd/tag/simple_type_tagtype/" },
{ "*manual-wix3/tag_xsd_simple_type_tagtypeunion.htm": "/docs/v3/xsd/tag/simple_type_tagtype/" },
{ "*manual-wix3/tag_xsd_simple_type_versiontype.htm": "/docs/v3/xsd/tag/simple_type_versiontype/" },
{ "*manual-wix3/tag_xsd_simple_type_wildcardlongfilenametype.htm": "/docs/v3/xsd/tag/simple_type_wildcardlongfilenametype/" },
{ "*manual-wix3/tag_xsd_simple_type_wildcardshortfilenametype.htm": "/docs/v3/xsd/tag/simple_type_wildcardshortfilenametype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnobuttontype.htm": "/docs/v3/xsd/tag/simple_type_yesnobuttontype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnobuttontypeunion.htm": "/docs/v3/xsd/tag/simple_type_yesnobuttontype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnodefaulttype.htm": "/docs/v3/xsd/tag/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnodefaulttypeunion.htm": "/docs/v3/xsd/tag/simple_type_yesnodefaulttype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/tag/simple_type_yesnotype/" },
{ "*manual-wix3/tag_xsd_simple_type_yesnotypeunion.htm": "/docs/v3/xsd/tag/simple_type_yesnotype/" },
{ "*manual-wix3/tag_xsd_tag.htm": "/docs/v3/xsd/tag/tag/" },
{ "*manual-wix3/tag_xsd_tagref.htm": "/docs/v3/xsd/tag/tagref/" },
{ "*manual-wix3/tests_runningtests.htm": "/docs/v3/wixdev/tests/tests_runningtests/" },
{ "*manual-wix3/tests_testingwix.htm": "/docs/v3/wixdev/tests/" },
{ "*manual-wix3/tests_writingtests.htm": "/docs/v3/wixdev/tests/tests_writingtests/" },
{ "*manual-wix3/thmutil_xsd_billboard.htm": "/docs/v3/xsd/thmutil/billboard/" },
{ "*manual-wix3/thmutil_xsd_button.htm": "/docs/v3/xsd/thmutil/button/" },
{ "*manual-wix3/thmutil_xsd_checkbox.htm": "/docs/v3/xsd/thmutil/checkbox/" },
{ "*manual-wix3/thmutil_xsd_column.htm": "/docs/v3/xsd/thmutil/column/" },
{ "*manual-wix3/thmutil_xsd_editbox.htm": "/docs/v3/xsd/thmutil/editbox/" },
{ "*manual-wix3/thmutil_xsd_font.htm": "/docs/v3/xsd/thmutil/font/" },
{ "*manual-wix3/thmutil_xsd_hyperlink.htm": "/docs/v3/xsd/thmutil/hyperlink/" },
{ "*manual-wix3/thmutil_xsd_hypertext.htm": "/docs/v3/xsd/thmutil/hypertext/" },
{ "*manual-wix3/thmutil_xsd_image.htm": "/docs/v3/xsd/thmutil/image/" },
{ "*manual-wix3/thmutil_xsd_imagelist.htm": "/docs/v3/xsd/thmutil/imagelist/" },
{ "*manual-wix3/thmutil_xsd_index.htm": "/docs/v3/xsd/thmutil/" },
{ "*manual-wix3/thmutil_xsd_listview.htm": "/docs/v3/xsd/thmutil/listview/" },
{ "*manual-wix3/thmutil_xsd_page.htm": "/docs/v3/xsd/thmutil/page/" },
{ "*manual-wix3/thmutil_xsd_progressbar.htm": "/docs/v3/xsd/thmutil/progressbar/" },
{ "*manual-wix3/thmutil_xsd_richedit.htm": "/docs/v3/xsd/thmutil/richedit/" },
{ "*manual-wix3/thmutil_xsd_simple_type_yesnotype.htm": "/docs/v3/xsd/thmutil/simple_type_yesnotype/" },
{ "*manual-wix3/thmutil_xsd_static.htm": "/docs/v3/xsd/thmutil/static/" },
{ "*manual-wix3/thmutil_xsd_tab.htm": "/docs/v3/xsd/thmutil/tab/" },
{ "*manual-wix3/thmutil_xsd_text.htm": "/docs/v3/xsd/thmutil/text/" },
{ "*manual-wix3/thmutil_xsd_theme.htm": "/docs/v3/xsd/thmutil/theme/" },
{ "*manual-wix3/thmutil_xsd_treeview.htm": "/docs/v3/xsd/thmutil/treeview/" },
{ "*manual-wix3/thmutil_xsd_window.htm": "/docs/v3/xsd/thmutil/window/" },
{ "*manual-wix3/toc.htm": "/docs/v3/" },
{ "*manual-wix3/tools.htm": "/docs/v3/overview/tools/" },
{ "*manual-wix3/ui_and_localization_toc.htm": "/docs/v3/howtos/ui_and_localization/" },
{ "*manual-wix3/updates_toc.htm": "/docs/v3/howtos/updates/" },
{ "*manual-wix3/using_custom_actions.htm": "/docs/v3/customactions/using_custom_actions/" },
{ "*manual-wix3/using_standard_customactions.htm": "/docs/v3/customactions/using_standard_customactions/" },
{ "*manual-wix3/util_xsd_closeapplication.htm": "/docs/v3/xsd/util/closeapplication/" },
{ "*manual-wix3/util_xsd_componentsearch.htm": "/docs/v3/xsd/util/componentsearch/" },
{ "*manual-wix3/util_xsd_componentsearchref.htm": "/docs/v3/xsd/util/componentsearchref/" },
{ "*manual-wix3/util_xsd_directorysearch.htm": "/docs/v3/xsd/util/directorysearch/" },
{ "*manual-wix3/util_xsd_directorysearchref.htm": "/docs/v3/xsd/util/directorysearchref/" },
{ "*manual-wix3/util_xsd_eventmanifest.htm": "/docs/v3/xsd/util/eventmanifest/" },
{ "*manual-wix3/util_xsd_eventsource.htm": "/docs/v3/xsd/util/eventsource/" },
{ "*manual-wix3/util_xsd_filesearch.htm": "/docs/v3/xsd/util/filesearch/" },
{ "*manual-wix3/util_xsd_filesearchref.htm": "/docs/v3/xsd/util/filesearchref/" },
{ "*manual-wix3/util_xsd_fileshare.htm": "/docs/v3/xsd/util/fileshare/" },
{ "*manual-wix3/util_xsd_filesharepermission.htm": "/docs/v3/xsd/util/filesharepermission/" },
{ "*manual-wix3/util_xsd_group.htm": "/docs/v3/xsd/util/group/" },
{ "*manual-wix3/util_xsd_groupref.htm": "/docs/v3/xsd/util/groupref/" },
{ "*manual-wix3/util_xsd_index.htm": "/docs/v3/xsd/util/" },
{ "*manual-wix3/util_xsd_internetshortcut.htm": "/docs/v3/xsd/util/internetshortcut/" },
{ "*manual-wix3/util_xsd_perfcounter.htm": "/docs/v3/xsd/util/perfcounter/" },
{ "*manual-wix3/util_xsd_perfcountermanifest.htm": "/docs/v3/xsd/util/perfcountermanifest/" },
{ "*manual-wix3/util_xsd_performancecategory.htm": "/docs/v3/xsd/util/performancecategory/" },
{ "*manual-wix3/util_xsd_performancecounter.htm": "/docs/v3/xsd/util/performancecounter/" },
{ "*manual-wix3/util_xsd_permissionex.htm": "/docs/v3/xsd/util/permissionex/" },
{ "*manual-wix3/util_xsd_productsearch.htm": "/docs/v3/xsd/util/productsearch/" },
{ "*manual-wix3/util_xsd_productsearchref.htm": "/docs/v3/xsd/util/productsearchref/" },
{ "*manual-wix3/util_xsd_registrysearch.htm": "/docs/v3/xsd/util/registrysearch/" },
{ "*manual-wix3/util_xsd_registrysearchref.htm": "/docs/v3/xsd/util/registrysearchref/" },
{ "*manual-wix3/util_xsd_removefolderex.htm": "/docs/v3/xsd/util/removefolderex/" },
{ "*manual-wix3/util_xsd_restartresource.htm": "/docs/v3/xsd/util/restartresource/" },
{ "*manual-wix3/util_xsd_serviceconfig.htm": "/docs/v3/xsd/util/serviceconfig/" },
{ "*manual-wix3/util_xsd_simple_type_autogenguid.htm": "/docs/v3/xsd/util/simple_type_autogenguid/" },
{ "*manual-wix3/util_xsd_simple_type_burncontainertype.htm": "/docs/v3/xsd/util/simple_type_burncontainertype/" },
{ "*manual-wix3/util_xsd_simple_type_burnexeprotocoltype.htm": "/docs/v3/xsd/util/simple_type_burnexeprotocoltype/" },
{ "*manual-wix3/util_xsd_simple_type_componentguid.htm": "/docs/v3/xsd/util/simple_type_componentguid/" },
{ "*manual-wix3/util_xsd_simple_type_compressionleveltype.htm": "/docs/v3/xsd/util/simple_type_compressionleveltype/" },
{ "*manual-wix3/util_xsd_simple_type_compressionleveltypeunion.htm": "/docs/v3/xsd/util/simple_type_compressionleveltype/" },
{ "*manual-wix3/util_xsd_simple_type_diskidtype.htm": "/docs/v3/xsd/util/simple_type_diskidtype/" },
{ "*manual-wix3/util_xsd_simple_type_exittype.htm": "/docs/v3/xsd/util/simple_type_exittype/" },
{ "*manual-wix3/util_xsd_simple_type_guid.htm": "/docs/v3/xsd/util/simple_type_guid/" },
{ "*manual-wix3/util_xsd_simple_type_hextype.htm": "/docs/v3/xsd/util/simple_type_hextype/" },