From 1799a41138ade71885d2534d28577f713c8b1592 Mon Sep 17 00:00:00 2001 From: Richard Lander Date: Sat, 5 Sep 2015 21:53:51 -0700 Subject: [PATCH 1/3] Add .NET Core roadmap. --- roadmap.md | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 roadmap.md diff --git a/roadmap.md b/roadmap.md new file mode 100644 index 0000000000..fecf7a7ba9 --- /dev/null +++ b/roadmap.md @@ -0,0 +1,87 @@ +.NET Core Roadmap +================= + +.NET Core is a general purpose, modular, cross-platform and open source implementation of .NET. The .NET Core team (anyone contributing to .NET Core) aspires to enable it to work for many interesting scenarios. Some of those are already part-way to completion. Nice work, team! + +This roadmap is intended to communicate the team's priorities for evolving and extending the scope of .NET Core. + +Microsoft is very invested in .NET Core and makes multiple "official Microsoft" .NET Core distributions available to its customers. Sweet! It is expected (and desired) that other groups (corporations or otherwise) will also become significantly invested in .NET Core, possibly making other distros available. As a result, this roadmap is written from a neutral perspective, not a Microsoft one (unless specifically called out). This document is therefore naturally open to PRs. + +Project Goals +============= + +Broad goals: + +- .NET Core code is high quality (important consideration for contributions). +- .NET Core can be ported to a broad set of OS platforms and chip architectures. +- .NET Core has compelling performance and is highly reliable. +- Developers can acquire a .NET Core developer environment quickly and intuitively. +- Developers can productively and intuitively build apps, using documentation, samples and NuGet components. + +Active ports: + +- OSes: Linux, OS X, FreeBSD, Rasberry Pi2 (Linux) and Windows. +- Linux distros: Debian family, CentOS. +- Windows versions: Win7+ (client and server). +- Chips: X64, X86, ARM32. + +Microsoft Distro +================ + +Microsoft ships multiple .NET Core distros. It is important that Microsoft can successfully ship .NET Core at quality and meet it's desired dates. + +Goals +----- + +- There are high-quality ports for Linux, OS X and Windows. +- There are high-quality ports for X64, X86 and ARM32. +- .NET Core can be shipped on a schedule that aligns with ASP.NET and Windows 10 UWP dates and quality (e.g. Beta, RTM) requirements. +- Contributions should be prioritized that align with these goals. + +Ship Dates +---------- + +At Microsoft, .NET has always been an important component of other teams' products and has largely shipped on their schedules. It's important to have customers! It means that we have to take their dates seriously and integrate them into the .NET Core schedule. + +|Milestone|Release Date|Partner|Quality| +|---------|------------|-------|-------| +|Beta8 | Oct 2015|ASP.NET|Beta | +|RC1 | Nov 2015|ASP.NET|RC | +|v5 RTM | Q1 2016|ASP.NET|RTM | + +Notes: + +- The RC1 release candidate will be a supported and production ready cross-platform release. +- Depending on feedback from RC1, we will ship additional release candidates as necessary. +- The RTM release is **CY** Q1 2016. +- CoreFX API contracts may need to be at RTM quality in RC releases, to support the already RTM Windows 10 UWP release. +- The [ASP.NET 5 roadmap](https://github.com/aspnet/Home/wiki/Roadmap) articulates the ASP.NET projects's roadmap and dates. +- More partners will be added to this list over time. + +Feature Roadmaps +================ + +This is where links to feature-area roadmaps would go. + +TBD +=== + +There are several areas of the product that are TBD. This designation doesn't mean that they are not important, just that there is no plan in place yet. Feel free to contribute that plan. + +- Console appmodel. +- F# suppport for .NET Core. +- OS package manager support (e.g. apt-get, brew). +- Broader Linux distro support (beyond Debian and CentOS). +- Create low-level FX APIs for Linux (e.g. daemon support) and OSX, much like exists for Windows (e.g. Windows registry). + +Contributions +============= + +The .NET Core maintainers have taken a liberal approach to contributions since the outset of the .NET Core open source project and have taken changes outside of the published [priorities](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/project-priorities.md). That approach isn't intended to change. + +Contribution goals: + +- Encourage an active community. +- Make changes easy to code review (smaller vs. bigger). +- Keep a single "repo of truth" for the project. +- Support multiple release trains (released, about to release, vNext). From 20c07c2c92e4e1ea0b434fffe8c598aeb779f708 Mon Sep 17 00:00:00 2001 From: Richard Lander Date: Thu, 10 Sep 2015 22:26:18 -0700 Subject: [PATCH 2/3] Respond to feedback --- roadmap.md | 57 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 24 deletions(-) diff --git a/roadmap.md b/roadmap.md index fecf7a7ba9..68ee41026e 100644 --- a/roadmap.md +++ b/roadmap.md @@ -1,11 +1,13 @@ .NET Core Roadmap ================= -.NET Core is a general purpose, modular, cross-platform and open source implementation of .NET. The .NET Core team (anyone contributing to .NET Core) aspires to enable it to work for many interesting scenarios. Some of those are already part-way to completion. Nice work, team! +.NET Core is a general purpose, modular, cross-platform and open source implementation of .NET. It includes a set of [framework libraries](https://github.com/dotnet/corefx) and a [runtime](https://github.com/dotnet/coreclr). Both together support a set of OS platforms and chip architectures, enabling a broad set of .NET apps to be built and run. Much of this support is in progress. -This roadmap is intended to communicate the team's priorities for evolving and extending the scope of .NET Core. +The team (anyone contributing to .NET Core) is composed of many individuals and groups. They (separately) have been adding support for the scenarios they are most interested in. That ranges from Windows to FreeBSD. Some of the projects are half-way to completion. Nice work, team! Some contributors, likely companies, will create official distributions (AKA "distros") that they support and potentially sell as part of some offering. A distro is an official build of .NET Core (e.g. zip, apt-get, brew, msi), much like Linux distros. + +Microsoft makes multiple "official" .NET Core distributions (libraries and/or runtime) available to its customers. It is expected (and desired) that other groups (corporations or otherwise) will also become significantly invested in .NET Core, making other distros available. -Microsoft is very invested in .NET Core and makes multiple "official Microsoft" .NET Core distributions available to its customers. Sweet! It is expected (and desired) that other groups (corporations or otherwise) will also become significantly invested in .NET Core, possibly making other distros available. As a result, this roadmap is written from a neutral perspective, not a Microsoft one (unless specifically called out). This document is therefore naturally open to PRs. +This roadmap is intended to communicate the team's priorities for evolving and extending the scope of .NET Core. Project Goals ============= @@ -23,7 +25,19 @@ Active ports: - OSes: Linux, OS X, FreeBSD, Rasberry Pi2 (Linux) and Windows. - Linux distros: Debian family, CentOS. - Windows versions: Win7+ (client and server). -- Chips: X64, X86, ARM32. +- Chips: X64, X86, ARM32, ARM64. + +Contributions +============= + +The .NET Core maintainers have taken a liberal approach to contributions since the outset of the .NET Core open source project and have taken changes outside of the published [priorities](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/project-priorities.md). That approach isn't intended to change. + +Contribution goals: + +- Encourage an active community. +- Make changes easy to code review (smaller vs. bigger). +- Keep a single "repo of truth" for the project. +- Support multiple release trains (released, about to release, vNext). Microsoft Distro ================ @@ -38,25 +52,32 @@ Goals - .NET Core can be shipped on a schedule that aligns with ASP.NET and Windows 10 UWP dates and quality (e.g. Beta, RTM) requirements. - Contributions should be prioritized that align with these goals. +Workloads +--------- + +The Microsoft distro currently supports the following workloads. + +- Console +- ASP.NET 5 +- Windows 10 UWP + Ship Dates ---------- -At Microsoft, .NET has always been an important component of other teams' products and has largely shipped on their schedules. It's important to have customers! It means that we have to take their dates seriously and integrate them into the .NET Core schedule. +At Microsoft, .NET has always been an important component of other teams' products and has largely shipped on their schedules. It means that we have to take their dates seriously and integrate them into the .NET Core schedule. -|Milestone|Release Date|Partner|Quality| -|---------|------------|-------|-------| -|Beta8 | Oct 2015|ASP.NET|Beta | -|RC1 | Nov 2015|ASP.NET|RC | -|v5 RTM | Q1 2016|ASP.NET|RTM | +|Milestone|Release Date| +|---------|------------| +|Beta8 | Oct 2015| +|RC1 | Nov 2015| +|RTM | Q1 2016| Notes: - The RC1 release candidate will be a supported and production ready cross-platform release. - Depending on feedback from RC1, we will ship additional release candidates as necessary. -- The RTM release is **CY** Q1 2016. - CoreFX API contracts may need to be at RTM quality in RC releases, to support the already RTM Windows 10 UWP release. - The [ASP.NET 5 roadmap](https://github.com/aspnet/Home/wiki/Roadmap) articulates the ASP.NET projects's roadmap and dates. -- More partners will be added to this list over time. Feature Roadmaps ================ @@ -73,15 +94,3 @@ There are several areas of the product that are TBD. This designation doesn't me - OS package manager support (e.g. apt-get, brew). - Broader Linux distro support (beyond Debian and CentOS). - Create low-level FX APIs for Linux (e.g. daemon support) and OSX, much like exists for Windows (e.g. Windows registry). - -Contributions -============= - -The .NET Core maintainers have taken a liberal approach to contributions since the outset of the .NET Core open source project and have taken changes outside of the published [priorities](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/project-priorities.md). That approach isn't intended to change. - -Contribution goals: - -- Encourage an active community. -- Make changes easy to code review (smaller vs. bigger). -- Keep a single "repo of truth" for the project. -- Support multiple release trains (released, about to release, vNext). From 029d54dbb2af33251faa386655c12505cbc87515 Mon Sep 17 00:00:00 2001 From: Richard Lander Date: Thu, 10 Sep 2015 22:30:00 -0700 Subject: [PATCH 3/3] Move RPi2 to new line --- roadmap.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roadmap.md b/roadmap.md index 68ee41026e..cf97e6a48d 100644 --- a/roadmap.md +++ b/roadmap.md @@ -22,10 +22,11 @@ Broad goals: Active ports: -- OSes: Linux, OS X, FreeBSD, Rasberry Pi2 (Linux) and Windows. +- OSes: Linux, OS X, FreeBSD and Windows. - Linux distros: Debian family, CentOS. - Windows versions: Win7+ (client and server). - Chips: X64, X86, ARM32, ARM64. +- Specialized hardware: RPi2 Contributions =============