Adam Reed
Adam Reed

Reputation: 3314

Is there a way to get Visual Studio 2010 to support XML Schema 1.1

So I am working on a bit of a side project that requires an xml schema, which I am quite unfamiliar with.

I want to be able to set the schema to choose between two sets of attributes, which from what I have researched is not directly possible in XSD 1.0, but is apparently a feature of XSD 1.1.

Currently I am using Visual Studio to do my work, and it seems to be stuck in XSD 1.0 mode, which makes sense since XSD 1.1 is apparently a recent development.

My question is, is there a plugin/extension available that can allow me to work with XSD 1.1 in Visual Studio?

Upvotes: 3

Views: 1551

Answers (3)

Beth Lang
Beth Lang

Reputation: 1905

There isn't currently but if enough of us vote for it on this MSDN site maybe it will happen sooner?

Upvotes: 1

Miika L.
Miika L.

Reputation: 3353

From wikipedia: "XSD 1.1 became a W3C Recommendation in April 2012, which means it is an approved W3C specification." source

So if it was only recently completed, it is only natural that visual studio does not yet offer support for it. So you are left with the choice of a) writing your app using XSD 1.0, b) Writing your app using XSD 1.1, in the hope that support for it is released before its too late for you. The safer choice would be to stick with XSD 1.0 for now, unless you have solid information on when 1.1 support is released.

Upvotes: 2

tom redfern
tom redfern

Reputation: 31760

No, Microsoft has no products which support XSD 1.1 (or xslt2, or xpath2, or xquery3)

Upvotes: 2

Related Questions