This snippet provides a very small internal DSL for creating and querying XML using the underlying XLinq classes.
373 people like thisPosted: 13 years ago by Blake Coverett
This program reads all *.csproj-files from a path and then uses Linq2Xml to show data about the projects. This should be a good template for scripts to manage tons of c#-project files. F# and LINQ-to-XML is very powerful combination.
9 people like thisPosted: 13 years ago by Tuomas Hietanen
This program reads all *.csproj-files from a path and then uses Linq2Xml to show or modify data about the projects. This should be a good template for scripts to manage tons of c#-project files. F# and LINQ-to-XML is very powerful combination.
7 people like thisPosted: 12 years ago by Tuomas Hietanen
A simple library that reads XML documents into user-defined F# types. The user defines a set of discriminated unions that model the elements of the file and a library automatically creates these types from a XML file.
10 people like thisPosted: 11 years ago by Tomas Petricek
Uses dynamic operator to quickly create XML
3 people like thisPosted: 11 years ago by David Grenier
Turn a project based nuspec into a project type paket template (see http://fsprojects.github.io/Paket/template-files.html )
3 people like thisPosted: 9 years ago by mavnn
This can be used to generate F# code from an XSD schema. Similar to xsd.exe, this can be wrapped in a console application and used for generator XML or SOAP service clients to facilitate serialization/deserialization of XML into objects.
5 people like thisPosted: 4 years ago by Aaron M Eshbach
This snippet shows how to construct and query XML using XLinq without too many helper functions.
26 people like thisPosted: 13 years ago by Taha Hachana
A light domain specific language for declaring xml in F# as code.
9 people like thisPosted: 12 years ago by Huw Simpson
A Lazy Xml structure for processing large xml documents.
11 people like thisPosted: 12 years ago by Nick Palladinos
A minimalist XML Parser
11 people like thisPosted: 11 years ago by Fabio Galuppo
XmlSchemas are used to validate XML documents. Following demonstrates how to infer a schema from sample documents. They are also used to visualize the structure of a class of documents.
2 people like thisPosted: 10 years ago by Jonathan Leaver
Using F# 4.0 Automatic Quotations to mutate provided XML documents with static type checking
2 people like thisPosted: 9 years ago by Green Eagle Solutions