Greens
Greens

Reputation: 3067

LINQ to XSD in VS 2010

how do I use Linq to XSD in VS2010. The last I know is to Install LINQtoXSD in VS2008 . Are there any updated in VS2010?.

Upvotes: 4

Views: 2136

Answers (2)

Sergey Shandar
Sergey Shandar

Reputation: 2387

You could use command line:

LinqToXsd <schemaFile> [one or more schema files] [/fileName:<csFileName>.cs] [/lib:<assemblyName>] [/config:<configFileName>.xml] [/enableServiceReference] [/nameMangler2]

I do not know how to integrate it into Visual Studio 2010 since I've got only Express Edition.

Upvotes: 1

Preet Sangha
Preet Sangha

Reputation: 65556

The current version 2.x is for .net 4.0

alt text

There are samples and docs if you download the source.

Upvotes: 1

Related Questions