<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx</link><description>We're nearly code complete on the next version of Visual Studio, and will soon be releasing a Community Technology Preview (CTP) so that you can take a look, work on prototypes, and think about how the new features might fit into your development plans.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1586207</link><pubDate>Sat, 03 Feb 2007 04:27:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1586207</guid><dc:creator>Stuart Ballard</dc:creator><description>&lt;p&gt;Is there going to be an XmlNodeWriter in Orcas? It's a fairly glaring hole, especially if you've ever wanted to apply an XSL transformation to an in-memory XmlDocument and get the result as another in-memory XmlDocument. You can pass the input to the transform via XmlNodeReader, but to get it back out again you just have to feed your XmlWriter to a StringBuilder and then parse it...&lt;/p&gt;
&lt;p&gt;Fortunately my use case wasn't performance-critical, but it's still ugly...&lt;/p&gt;
</description></item><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1588657</link><pubDate>Sat, 03 Feb 2007 11:22:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1588657</guid><dc:creator>Oleg Tkachenko</dc:creator><description>&lt;p&gt;Stuart, XmlNodeWriter in .NET 2.0 is hiding in&lt;/p&gt;
&lt;p&gt;xmlNode.createNavigator().AppendChild() method. It can be used to populate XmlNode via XmlWriter API and so you can&lt;/p&gt;
&lt;p&gt;XmlDocument doc = new XmlDocument();&lt;/p&gt;
&lt;p&gt;using (XmlWriter writer = doc.CreateNavigator().AppendChild()) {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;xslt.Transform(input, (XsltArgumentList)null, writer);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Mike, am I right that &amp;nbsp;Orcas January CTP includes none of these coolness?&lt;/p&gt;
</description></item><item><title>On embedding XSLT stylesheets into assemblies</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1597939</link><pubDate>Sun, 04 Feb 2007 18:25:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1597939</guid><dc:creator>Signs on the Sand</dc:creator><description>&lt;p&gt;I was writing about loading XSLT stylesheets embedded into assemblies (dll or exe) recently and Richard Quinn asked this very legitimate question: But why oh why would anyone embed their XSLT in the assembly? The point is to separate design from logic.&lt;/p&gt;
</description></item><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1598684</link><pubDate>Sun, 04 Feb 2007 21:06:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1598684</guid><dc:creator>XmlTeam</dc:creator><description>&lt;p&gt;Oleg, to be honest I don't know for sure, but I don't think so &amp;nbsp;- &amp;nbsp;the February CTP is the release where we will present what all is ready to show, what has been documented, what has been tested end-to-end, etc. &amp;nbsp;&lt;/p&gt;
</description></item><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1604369</link><pubDate>Mon, 05 Feb 2007 17:25:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1604369</guid><dc:creator>Fred</dc:creator><description>&lt;p&gt;Any sign of XSLT 2.0 support?&lt;/p&gt;</description></item><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1604619</link><pubDate>Mon, 05 Feb 2007 17:55:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1604619</guid><dc:creator>Steve</dc:creator><description>&lt;p&gt;This post implies that the next CTP is soon and the link below states that the FEB CTP has been delayed to March.&lt;/p&gt;
&lt;p&gt;Will there be a release in Feb? &amp;nbsp;Will it have WPF support?&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://oakleafblog.blogspot.com/2007/02/orcas-february-2007-ctp-delayed-to.html"&gt;http://oakleafblog.blogspot.com/2007/02/orcas-february-2007-ctp-delayed-to.html&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: XML Features in the February CTP of Visual Studio “Orcas”</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1604797</link><pubDate>Mon, 05 Feb 2007 18:41:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1604797</guid><dc:creator>XmlTeam</dc:creator><description>&lt;p&gt;I don't know anything about the eventual ship date for the &amp;quot;February&amp;quot; CTP. &amp;nbsp;All the XML code that is going in is loaded on board, but I don't know when the train will leave the station. &amp;nbsp;We'll update if we hear anything. &amp;nbsp;The whole point of the Feb CTP, however, is not so much to have the train run ontime but to make sure that all the May 2006 prototype cargo has been remanufactured to production spec and carefully reloaded. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;As for XSLT 2, the short answer is &amp;quot;Not in Orcas, therefore not in the Feb CTP&amp;quot;. &amp;nbsp;See the previous XML Team post.&lt;/p&gt;
</description></item><item><title>Now Available: March CTP of Visual Studio "Orcas"</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1772971</link><pubDate>Wed, 28 Feb 2007 11:38:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1772971</guid><dc:creator>Guy Burstein's Blog</dc:creator><description>&lt;p&gt;I've been waiting for quite some time for this release. For start, I've been playing a lot with Linq&lt;/p&gt;
</description></item><item><title>Now Available: March CTP of Visual Studio "Orcas"</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1773028</link><pubDate>Wed, 28 Feb 2007 11:57:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1773028</guid><dc:creator>Guy Burstein's Blog</dc:creator><description>&lt;p&gt;I've been waiting for quite some time for this release. For start, I've been playing a lot with Linq&lt;/p&gt;
</description></item><item><title>February CTP of Visual Studio "Orcas" / .NET 3.5 is out</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1775992</link><pubDate>Thu, 01 Mar 2007 01:26:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1775992</guid><dc:creator>Microsoft XML Team's WebLog</dc:creator><description>&lt;p&gt;The Community Technology Preview of the next version of the .NET components that the XML team ships is&lt;/p&gt;
</description></item><item><title>The new LINQ to XML “Bridge Classes” to System.Xml</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#1802099</link><pubDate>Sun, 04 Mar 2007 09:06:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1802099</guid><dc:creator>Microsoft XML Team's WebLog</dc:creator><description>&lt;p&gt;In a previous post we presented an overview of the XML Features in the &amp;quot;Orcas&amp;quot; Community Technology Preview&lt;/p&gt;
</description></item><item><title>nXSLTC - an experimental XSLT compiler for .NET 3.5</title><link>http://blogs.msdn.com/xmlteam/archive/2007/02/02/xml-features-in-the-february-ctp-of-visual-studio-orcas.aspx#2035656</link><pubDate>Fri, 06 Apr 2007 01:35:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2035656</guid><dc:creator>Signs on the Sand</dc:creator><description>&lt;p&gt;So here is nXSLTC.exe v1.0b - an experimental XSLT compiler for .NET 3.5 (Visual Studio &amp;quot;Orcas&amp;quot;). Get it here (free open-source). I probably shouldn't be building this tool, but I have my reasons. Why not? As a matter of fact, Mike Champion has announced&lt;/p&gt;
</description></item></channel></rss>