You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,25 +4,25 @@
4
4
5
5
This is the home page of the ASP.NET Core source code repositories and is intended for those contributing to ASP.NET Core or using bleeding edge nightly builds.
6
6
7
-
ASP.NET Core is a new open-source and cross-platform framework for building modern cloud based internet connected applications, such as web apps, IoT apps and mobile backends. ASP.NET Core apps can run on .NET Core or on the full .NET Framework. It was architected to provide an optimized development framework for apps that are deployed to the cloud or run on-premises. It consists of modular components with minimal overhead, so you retain flexibility while constructing your solutions. You can develop and run your ASP.NET Core apps cross-platform on Windows, Mac and Linux. [Learn more about ASP.NET Core](https://docs.asp.net/en/latest/intro.html).
7
+
ASP.NET Core is a new open-source and cross-platform framework for building modern cloud based internet connected applications, such as web apps, IoT apps and mobile backends. ASP.NET Core apps can run on .NET Core or on the full .NET Framework. It was architected to provide an optimized development framework for apps that are deployed to the cloud or run on-premises. It consists of modular components with minimal overhead, so you retain flexibility while constructing your solutions. You can develop and run your ASP.NET Core apps cross-platform on Windows, Mac and Linux. [Learn more about ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/).
8
8
9
9
We are pleased to [announce](https://blogs.msdn.microsoft.com/webdev/2016/06/27/announcing-asp-net-core-1-0/) the release of ASP.NET Core 1.0! Check our [releases](https://github.com/aspnet/home/releases) for the latest patch release.
10
10
11
11
ASP.NET Core 1.1 is now available! See the [release notes](https://github.com/aspnet/Home/releases/tag/1.1.0) for further details.
12
12
13
13
## Get Started
14
14
15
-
Follow the [Getting Started](https://docs.asp.net/en/latest/getting-started.html) instructions in the [ASP.NET Core docs](https://docs.asp.net).
15
+
Follow the [Getting Started](https://docs.microsoft.com/en-us/aspnet/core/getting-started) instructions in the [ASP.NET Core docs](https://docs.microsoft.com/en-us/aspnet/index).
16
16
17
-
Also checkout the [.NET Homepage](http://dot.net) for released versions of .NET, getting started guides, and learning resources.
17
+
Also checkout the [.NET Homepage](https://www.microsoft.com/net) for released versions of .NET, getting started guides, and learning resources.
18
18
19
19
## Builds
20
20
21
21
If you want to use the latest dev build then you need to:
22
22
23
23
- Obtain the latest [build of the .NET Core SDK](https://github.com/dotnet/cli#installers-and-binaries)
24
24
- Add a NuGet.Config to your app with the following content:
25
-
25
+
26
26
```xml
27
27
<?xml version="1.0" encoding="utf-8"?>
28
28
<configuration>
@@ -33,9 +33,9 @@ If you want to use the latest dev build then you need to:
33
33
</packageSources>
34
34
</configuration>
35
35
```
36
-
36
+
37
37
*NOTE: This NuGet.Config should be with your application unless you want nightly packages to potentially start being restored for other apps on the machine.*
38
-
38
+
39
39
- Change your applications dependencies to have a `*` to get the latest version (ex. `1.0.0-*`).
40
40
41
41
Prerelease tooling builds for Visual Studio are available from the [Tooling](https://github.com/aspnet/tooling/#pre-release-builds) repo.
@@ -52,7 +52,7 @@ To follow along with the development of ASP.NET Core:
52
52
These are some of the most common repos:
53
53
54
54
*[DependencyInjection](https://github.com/aspnet/DependencyInjection) - basic dependency injection infrastructure and default implementation
55
-
*[Docs](https://github.com/aspnet/Docs) - documentation sources for https://docs.asp.net/en/latest/
55
+
*[Docs](https://github.com/aspnet/Docs) - documentation sources for https://docs.microsoft.com/en-us/aspnet/core/
56
56
*[EntityFramework](https://github.com/aspnet/EntityFramework) - data access technology
57
57
*[Identity](https://github.com/aspnet/Identity) - users and membership system
58
58
*[MVC](https://github.com/aspnet/Mvc) - MVC framework for web apps and services
0 commit comments