References, element (szablony visual studio)
Grupuje odwołania do zestawów, które szablon dodaje do projektów.
<Odwołania do szablonu VSTemplateContent><><>
Składnia
<References>
<Reference>... </Reference>
<Reference>... </Reference>
...
</References>
Atrybuty i elementy
W poniższych sekcjach opisano atrybut, elementy podrzędne i elementy nadrzędne.
Atrybuty
Brak.
Elementy podrzędne
Element | opis |
---|---|
Odwołanie | Element wymagany. Określa odwołanie do zestawu, które ma zostać dodane po dodaniu elementu do projektu. Element musi zawierać co najmniej jeden Reference element References . |
Elementy nadrzędne
Element | opis |
---|---|
Templatecontent | Określa zawartość szablonu. |
Uwagi
References
jest opcjonalnym elementem podrzędnym elementu TemplateContent
.
Reference
Elementy i References
mogą być używane tylko w plikach vstemplate, które mają Type
wartość atrybutu Item
.
Przykład
Poniższy przykład ilustruje TemplateContent
element szablonu elementu. Ten kod XML dodaje odwołania do zestawów System.dll i System.Data.dll .
<TemplateContent>
<References>
<Reference>
<Assembly>
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
</Assembly>
</Reference>
<Reference>
<Assembly>
System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
</Assembly>
</Reference>
</References>
...
</TemplateContent>