Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / C#

XSLTs to Assembly using XSLTC and ILMerge

Rate me:
Please Sign up or sign in to vote.
4.00/5 (3 votes)
12 Jun 2008CPOL3 min read 33.6K   403   12  
This article is used to convert XSLT files into .NET assembly using XSLTC.exe and ILMerge.exe utility
<?xml version="1.0"?>
<catalog>
   <book id="bk101">
      <author>Gambardella, Matthew</author>
      <title>XML Developer's Guide</title>
      <genre>Computer</genre>
      <price>$44.95</price>
      <publish_date>2000-10-01</publish_date>
   </book>
   <book id="bk102">
      <author>Ralls, Kim</author>
      <title>Midnight Rain</title>
      <genre>Fantasy</genre>
      <price>$5.95</price>
      <publish_date>2000-12-16</publish_date>
   </book>
   <book id="bk103">
      <author>Corets, Eva</author>
      <title>Maeve Ascendant</title>
      <genre>Fantasy</genre>
      <price>$5.95</price>
      <publish_date>2000-11-17</publish_date>
   </book>
   <book id="bk106">
      <author>Randall, Cynthia</author>
      <title>Lover Birds</title>
      <genre>Romance</genre>
      <price>$4.95</price>
      <publish_date>2000-09-02</publish_date>
   </book>
   <book id="bk107">
      <author>Thurman, Paula</author>
      <title>Splish Splash</title>
      <genre>Romance</genre>
      <price>$4.95</price>
      <publish_date>2000-11-02</publish_date>
   </book>
</catalog>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
I am a MCAD .NET web professional and working for Indian based MNC Company.
http://saravanaprakashp.blogspot.com
-Trust in Technology

Comments and Discussions