I am looking for the list of assemblies in the ".NET for Windows 8" profile. This is the profile used for WIndows 8 Metro-style applications, and like Silverlight doesn't use the full .NET framework.

link|improve this question

64% accept rate
Technically, it's called ".NET 4.5 Core" (or at least that's what Object Browser calls it). – Pavel Minaev Sep 19 '11 at 8:23
That is what Krzysztof told me the offical name was when I asked him at Build. – Jonathan Allen Sep 19 '11 at 8:37
feedback

3 Answers

up vote 6 down vote accepted

.NET for Metro style apps — list of namespaces

Converting your existing .NET Framework code — changes to the various APIs.

link|improve this answer
feedback

I don't see any list currently... and WinRT is expected to change alot till the official release in 2012... current information about assemblies/not available in the "Metro/WinRT Client profile":

http://blogs.microsoft.co.il/blogs/sasha/archive/2011/09/17/metro-net-framework-profile-windows-tailored.aspx

link|improve this answer
feedback

The parts of the full profile that are available in the Metro-profile aren't delimited by some assemblies or namespaces. For example, the constructor StremReader(Stream) is present in the Metro-profile, but StreamReader(string) isn't.

Because of that, you would have to look at the documentation to find out what exactly is available and what isn't.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.