dotnet/README.md

61 lines
3.4 KiB
Markdown
Raw Normal View History

2014-10-24 06:49:41 +08:00
# .NET Home
The dotnet repository is the starting point to engage in and learn about .NET
open source projects from Microsoft and part of the .NET Foundation. You can
read the more detailed [Introduction to .NET Open Source](http://blogs.msdn.com/dotnet)
on the .NET blog.
2014-10-25 03:43:32 +08:00
2014-10-30 05:26:02 +08:00
## License
All .NET open source projects are licensed under either the [MIT](LICENSE) or
[Apache 2](http://www.apache.org/licenses/LICENSE-2.0) licenses for code. Some
projects license documentation and other forms of content under
[Creative Commons Attribution 4.0](http://creativecommons.org/licenses/by/4.0/).
See specific projects to understand the license used.
2014-10-30 05:26:02 +08:00
## .NET Foundation
All projects have been contributed to the [.NET Foundation](http://www.dotnetfoundation.org/projects). There are two main .NET Foundation projects for Microsoft open source projects:
[ASP.NET Core 5 project](http://www.dotnetfoundation.org/prjaspnetvnext.aspx)
and the [.NET Core 5 project](http://www.dotnetfoundation.org/prjaspnetvnext.aspx).
2014-10-24 06:49:41 +08:00
## How to Engage, Contribute and Provide Feedback
2014-10-24 06:49:41 +08:00
All projects (gladly) accept PRs and other contributions. To contribute to
ASP.NET 5 or EntityFramework, see [the ASP.NET Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md). To contribute to .NET Core 5, see the [.NET Core Contributing Guide](CONTRIBUTING.md).
You are also encouraged to start a discussion by filing an issue or creating a
gist. See the contributing guides for more details. You can discuss .NET OSS
more generally in the [.NET Foundation forums](http://www.dotnetfoundation.org/).
2014-10-24 06:49:41 +08:00
## Finding .NET Open Source Projects
2014-10-25 03:43:32 +08:00
There are several open source .NET projects from Microsoft on GitHub and
CodePlex:
* [ASP.NET 5](https://github.com/aspnet/home)
* [EntityFramework](https://github.com/aspnet/EntityFramework)
* [.NET Core 5](https://github.com/Microsoft/dotnet-corefx)
* [.NET Compiler Platform ("Roslyn")](https://roslyn.codeplex.com)
Each one of these projects maps to one or more [.NET NuGet package](http://blogs.msdn.com/b/dotnet/p/nugetpackages.aspx)
that are published on [NuGet.org](http://nuget.org/).
They are also many great open source .NET community projects, such as:
* [Mono Project](https://github.com/mono/)
* [JSON.NET](http://json.codeplex.com/)
## Understanding the Relationship between .NET Core and Mono
Mono is an important part of the .NET ecosystem, particularly for client scenarios (ex: Xamarin). We will look for ways to collaborate with Mono developers and encourage them to take our code to improve Mono. We will also look for opportunities to improve .NET Core with MIT-licensed Mono code.
An important collaboration opportunity is making .NET Core NuGet packages (produced from this code) work on Mono. The SIMD NuGet package is a perfect example.
2014-10-24 06:49:41 +08:00
2014-10-30 05:26:02 +08:00
## Learning about ASP.NET Core 5 and .NET Core 5
ASP.NET Core 5 is a new cross-platform version of ASP.NET that is designed for
2014-11-03 23:38:31 +08:00
the cloud, and runs on Windows, Linux and Mac. It uses the .NET Core 5 runtime and framework for running on Windows. It currently uses Mono for Linux and Mac support but will move to .NET Core 5 for those platforms when they are supported.
[ASP.NET Core 5](https://github.com/aspnet/home) and [.NET Core 5 libraries](https://github.com/Microsoft/dotnet-corefx) are open source on GitHub. At present, only a few libraries are available on GitHub. The rest of the libraries, including the base runtime, will be added in the coming months.