Display name
Display name

Reputation: 1552

What is included in the released .NET source code from Microsoft?

General question about what Microsoft has released and how to get the code.

I've been looking for solid answers on exactly what source code Microsoft has released for the .NET open source or .NET CORE, as I believe they call it.

Specifically, I am acutely interested in the System.Windows namespace and the Dispatcher class therein.

Is there any official word from Microsoft in which they enumerate the various parts that have been and will be released?

Upvotes: 1

Views: 43

Answers (1)

Marty
Marty

Reputation: 7522

The official list of what has been released is the source itself!

https://github.com/dotnet/corefx/tree/master/src

Looks like nothing for System.Windows.

There's also a list of what's coming, and there's nothing about System.Windows there either, so you may be out of luck, at least for the immediate future.

Upvotes: 3

Related Questions