Skip to content

Commit 98838af

Browse files
committed
Merge remote-tracking branch 'refs/remotes/Microsoft/master'
2 parents 02890eb + 56f8c76 commit 98838af

11 files changed

+3676
-174
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 86 deletions
This file was deleted.

README.md

Lines changed: 33 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,56 @@
11
# .NET Home
22

33
The dotnet repository is the starting point to engage in and learn about .NET
4-
open source projects from [Microsoft](http://microsoft.github.io) and the [.NET Foundation](http://dotnet.github.io). You can
5-
read the more detailed [Introduction to .NET Open Source](http://blogs.msdn.com/dotnet)
4+
open source projects from [Microsoft](http://microsoft.github.io) and the
5+
[.NET Foundation](http://dotnet.github.io). You can read the more detailed
6+
[.NET Core is Open Source](http://blogs.msdn.com/b/dotnet/archive/2014/11/12/net-core-is-open-source.aspx)
67
on the .NET blog.
78

89
## Finding .NET Open Source Projects
910

10-
There are several open source .NET projects from Microsoft on GitHub and
11-
CodePlex:
11+
There are many [open source .NET projects](dotnet-developer-projects.md), a few of which are listed below. Please find one to engage in or add one to the list.
1212

13+
* [.NET Compiler Platform ("Roslyn")](https://github.com/dotnet/roslyn)
14+
* [.NET Core 5](https://github.com/dotnet/core)
1315
* [ASP.NET 5](https://github.com/aspnet/home)
1416
* [EntityFramework](https://github.com/aspnet/EntityFramework)
15-
* [.NET Core 5](https://github.com/dotnet/corefx)
16-
* [.NET Compiler Platform ("Roslyn")](https://roslyn.codeplex.com)
17-
18-
Each one of these projects maps to one or more [.NET NuGet packages](http://blogs.msdn.com/b/dotnet/p/nugetpackages.aspx)
19-
that are published on [NuGet.org](http://nuget.org/).
20-
21-
There are also many great open source .NET community projects, such as:
22-
23-
* [Mono Project](https://github.com/mono/)
17+
* [Exceptionless](https://github.com/exceptionless/Exceptionless)
18+
* [Glimpse](http://getglimpse.com)
2419
* [JSON.NET](http://json.net/)
20+
* [MonoGame](http://monogame.net)
21+
* [Mono Project](https://github.com/mono/)
2522
* [MVVM Cross](https://github.com/MvvmCross/MvvmCross)
2623
* [MVVM Light Toolkit](http://www.mvvmlight.net)
27-
* [Glimpse](http://getglimpse.com)
24+
25+
For a longer list, see:
26+
27+
* [.NET developer projects](dotnet-developer-projects.md)
28+
* [.NET consumer projects](dotnet-consumer-projects.md)
29+
30+
For a list of free services and tools for open source .NET projects, see:
31+
32+
* [Free Services & Tools for Open Source .NET Projects](dotnet-free-oss-services.md)
2833

2934
## How to Engage, Contribute and Provide Feedback
3035

31-
.NET open source projects from Microsoft (gladly) accept PRs and other contributions. To contribute to
32-
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).
36+
.NET open source projects from Microsoft (gladly) accept PRs and other
37+
contributions. To contribute to ASP.NET 5 or EntityFramework, see
38+
[the ASP.NET Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md).
39+
To contribute to .NET Core 5, see the
40+
[.NET Core Contributing Guide](https://github.com/dotnet/corefx/wiki/Contributing).
3341

34-
You are also encouraged to start a discussion by posting on the [.NET Foundation Forums](http://forums.dotnetfoundation.org/) or filing an issue in the corresponding GitHub project. See the contributing guides for more details.
42+
You are also encouraged to start a discussion by posting on the
43+
[.NET Foundation Forums](http://forums.dotnetfoundation.org/) or filing an issue
44+
in the corresponding GitHub project. See the contributing guides for more
45+
details.
3546

3647
## .NET Foundation
3748

38-
Most .NET open source projects at Microsoft have been contributed to the [.NET Foundation](http://www.dotnetfoundation.org/projects). There are two main .NET Foundation projects for Microsoft open source projects:
39-
[ASP.NET Core 5 project](http://www.dotnetfoundation.org/aspnet-vnext)
40-
and the [.NET Core 5 project](http://www.dotnetfoundation.org/netcore5).
49+
Most .NET open source projects at Microsoft have been contributed to the
50+
[.NET Foundation](http://www.dotnetfoundation.org/projects). There are two main
51+
.NET Foundation projects for Microsoft open source projects:
52+
[ASP.NET Core 5 project](http://www.dotnetfoundation.org/aspnet-5)
53+
and the [.NET Core project](http://www.dotnetfoundation.org/netcore).
4154

4255
## License
4356

@@ -46,23 +59,3 @@ and the [.NET Core 5 project](http://www.dotnetfoundation.org/netcore5).
4659
projects license documentation and other forms of content under
4760
[Creative Commons Attribution 4.0](http://creativecommons.org/licenses/by/4.0/).
4861
See specific projects to understand the license used.
49-
50-
## Understanding the Relationship between .NET Core and the .NET Framework
51-
52-
.NET Core and the .NET Framework have (for the most part) a subset-superset relationship. .NET Core is named "Core" since it contains the core features from the .NET Framework, for both the runtime and framework libraries. For example, .NET Core and the .NET Framework share the GC, the JIT and types such as String and List<T>. We'll continue improving these components for both .NET Core and .NET Framework.
53-
54-
.NET Core was created so that .NET could be open source, cross platform and be used in more resource-constrained environments. We have also published [.NET Reference Source](https://github.com/Microsoft/referencesource) under the MIT license, so that you and the community can port additional .NET Framework features to .NET Core.
55-
56-
## Understanding the Relationship between .NET Core and Mono
57-
58-
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.
59-
60-
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.
61-
62-
## Learning about ASP.NET 5 and .NET Core 5
63-
64-
ASP.NET 5 is a new cross-platform version of ASP.NET that is designed for
65-
the cloud, and runs on Windows, Linux and Mac. It uses the .NET Framework to run on Windows, and can also run on .NET Core 5 for greater deployment flexibility 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.
66-
67-
68-
[ASP.NET 5](https://github.com/aspnet/home) and [.NET Core 5](https://github.com/dotnet/corefx) libraries are open source on GitHub. At present, only a few .NET Core 5 libraries are available on GitHub. The rest of the libraries, including the base runtime, will be added in the coming months.

0 commit comments

Comments
 (0)