forked from dotnet/AspNetCore.Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
docs/dotnetcore/introducing-dotnetcore/introducing-dotnetcore.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Introducing .NET Core | ||
===================== | ||
By `Steve Smith`_ | Originally Published: 1 June 2015 | ||
|
||
.. _`Steve Smith`: Author_ | ||
|
||
.NET Core is a small, optimized runtime that can be targeted by ASP.NET 5 applications. In fact, the new ASP.NET 5 project templates target .NET Core by default, in addition to the full .NET Framework. Learn what targeting .NET Core, or *dnxcore50*, means for your ASP.NET 5 application. | ||
|
||
This article covers the following topics: | ||
- What is .NET Core? | ||
- Motivation Behind .NET Core | ||
- .NET Core and ASP.NET | ||
- .NET Core and NuGet | ||
- Additional Reading | ||
|
||
What is .NET Core | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
.NET Core 5 is a modular runtime and library implementation that includes a subset of the full .NET Framework. Currently it builds and runs on Windows, but support for Linux and Mac is under development. .NET Core consists of a set of libraries, called "CoreFX", and a small, optimized runtime, called "CoreCLR". .NET Core is open-source, so you can follow progress on the project and contribute to it on GitHub: | ||
- `.NET Core Libraries <https://github.com/dotnet/corefx>`_ | ||
- `.NET Core Common Language Runtime (CoreCLR) <https://github.com/dotnet/coreCLR>`_ | ||
|
||
The CoreCLR runtime is made available via NuGet (Microsoft.CoreCLR); the CoreFX library is also available as a set of individual NuGet packages, factored according to functionality. These packages are named "System.[module]" on `Nuget.org <http://www.nuget.org/>`_. | ||
|
||
|
||
|
||
Motivation Behind .NET Core | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
asdf | ||
|
||
.NET Core and ASP.NET | ||
^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
asdf | ||
|
||
.NET Core and NuGet | ||
^^^^^^^^^^^^^^^^^^^ | ||
|
||
asdf | ||
|
||
Additional Reading | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
Learn more about .NET Core: | ||
- `Immo Landwerth Explains .NET Core <http://blogs.msdn.com/b/dotnet/archive/2014/12/04/introducing-net-core.aspx>`_ | ||
- `What is .NET Core 5 and ASP.NET 5 <http://blogs.msdn.com/b/cesardelatorre/archive/2014/11/18/what-is-net-core-5-and-asp-net-5-within-net-2015-preview.aspx>`_ | ||
- `.NET Core 5 on dotnetfoundation.org <https://www.dotnetfoundation.org/netcore5>`_ | ||
- `.NET Core is Open Source <http://blogs.msdn.com/b/dotnet/archive/2014/11/12/net-core-is-open-source.aspx>`_ | ||
- `.NET Core on GitHub <https://github.com/dotnet/corefx>`_ | ||
|
||
|
||
Summary | ||
^^^^^^^ | ||
|
||
asdf | ||
|
||
.. include:: /_authors/steve-smith.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters