-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathXAML Syntax1.xamlcfg
47 lines (44 loc) · 2.09 KB
/
XAML Syntax1.xamlcfg
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
<xamlConfiguration>
<!-- Add ancestor classes here that should not get XAML syntax even though they otherwise satisfy the
XAML-ness algorithm. These classes, their descendants, and all of their members will not get a XAML
syntax section. You only need to add a class here if you see it get XAML syntax and it should not. -->
<xamlExcludedAncestors>
<!--
<class api="T:MyNamespace.MyNonXamlClass1"/>
<class api="T:MyNamespace.MyNonXamlClass2"/>
<class api="T:MyNamespace.MyNonXamlClass3"/>
-->
</xamlExcludedAncestors>
<!-- Add the assemblies containing types for which the syntax generator should generates XAML syntax. Types in
all other assemblies will get no XAML syntax. -->
<xamlAssemblies>
<!-- Specify the assembly name without the extension. -->
<assembly name="OneNoteTaggingKit">
<!-- Add an XML namespace entry for each namespace that you want to see after the "XMLNS for XAML" label
in the API topics. -->
<!--<xmlns uri="http://schemas.microsoft.com/winfx/2006/xaml/presentation">-->
<!-- Types and their members in these namespaces will include the XML namespace after the label. These
can appear in multiple XML namespace elements to include multiple XML namespaces in the list. -->
<!--
<clrNamespace name="MyNamespace.Controls"/>
<clrNamespace name="MyNamespace.UserControls"/>
-->
<!--</xmlns>-->
<!--
<xmlns uri="http://schemas.microsoft.com/winfx/2006/xaml">
<clrNamespace name="MyNamespace.Controls"/>
<clrNamespace name="MyNamespace.UserControls"/>
</xmlns>
<xmlns uri="clr-namespace:MyNamespace.Controls">
<clrNamespace name="MyNamespace.Controls"/>
</xmlns>
-->
<xmlns uri="clr-namespace:WetHatLab.OneNote.TaggingKit.common.ui">
<clrNamespace name="WetHatLab.OneNote.TaggingKit.common.ui"/>
</xmlns>
</assembly>
<!-- If no namespace elements are listed for an assembly, the types and members will get usage syntax but
will show "Not mapped to an xmlns" after the "XMLNS for XAML" label. -->
<assembly name="OneNoteTaggingKit" />
</xamlAssemblies>
</xamlConfiguration>