XML tags, properties and their definitions?

I know this probably sounds like a newbie question, but I looked and “Googled” everything I know on “Google” and I still can’t find anything.

I am looking for somewhere that has only a list of all the XML tags, their properties and the definitions of these properties (for example, what they affect / do).

I realized that MSDN, W3C, or even here on SO, it would be somewhere, but I could not find it in any place or in others. And maybe I’m looking at the wrong place on these sites or just don’t find something on Google, as this will give me what I’m looking for, but I did everything I know.

So, I was wondering if anyone has any links that they knew about what gave the list of XML tags and their sub-properties / corresponding definitions?

In particular, I was provided with an XML example on this question that I asked earlier, and its long and short: I am trying to integrate some code metric software tools in automated assembly in TFS 2010, and I'm very close to this - it's just a matter of including the correct one XML to point to this code metrics software. But through this whole process, I found out that I don’t know what many XML tags / properties actually do. Some of them are self-evident, but others are not many.

So again, I ask, can someone tell me (some) sites that have a list of XML tags, their properties and what the tags / properties actually do?

Again, I know it sounds like a rookie because it is. I am a very inexperienced programmer, and I admit it. And I'm just looking for some help because I keep learning more. I just ask you not just to delete it or to ignore it just because it is a simpler / lower question. I have done everything I know, and I need help, and what this site is for.

+2
source share
2 answers

There is no authoritative source of all XML tags.

XML stands for Extensible Markup Language. This is a way to annotate text so that machines can exchange information.

There are many (thousands? Millions?) Schemes, each of which describes a different dictionary.

You can talk about a set of allowed elements (tags) and attributes (properties) only for this dictionary. For example, Visual Studio stores most of its configuration and project information in XML files, but each type has a different schema, so there is a different set of tags.

Often, in addition to the schema, there is some kind of documentation that explains the use of various elements and their attributes.

XML can be used for many purposes; some of them include programming languages ​​(e.g. XSLT ), configuration files, documents (Word, Excel and Powerpoint files now all XML files encrypted in packages) and log files.

+6
source

I am trying to integrate some metric software code into an automated build in TFS 2010, and I'm really close to doing this - it's just a matter of incorporating the correct XML to the point of this code metrics software

That's right, so this is not the XML you follow, it is the specific schema used by TFS 2010. So you may need the msbuild documentation . In previous versions of TFS, this was also used for the Team Build file, but IIRC Team Build in TFS2010 is based on the Workflow Foundation, so you'd probably be better off using a constructor (haven't used it yet, so I can't offer more help than that).

+1
source

Source: https://habr.com/ru/post/1334585/


All Articles