Skip to content

Commit 93ef04d

Browse files
authored
Update Home for 1.0.0 (#1597)
1 parent 1ad677e commit 93ef04d

File tree

1 file changed

+33
-32
lines changed

1 file changed

+33
-32
lines changed

README.md

+33-32
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,51 @@
11

2+
# ASP.NET Core
23
[![Join the chat at https://gitter.im/aspnet/Home](https://badges.gitter.im/aspnet/Home.svg)](https://gitter.im/aspnet/Home?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
34

4-
We are pleased to [announce](https://blogs.msdn.microsoft.com/webdev/2016/05/16/announcing-asp-net-core-rc2/) the release of ASP.NET Core RC2!
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.
56

6-
[Get started with ASP.NET Core RC2](https://docs.asp.net/en/1.0.0-rc2/getting-started.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.asp.net/en/latest/intro.html).
78

8-
If you are looking for the homepage of .NET Core, with getting started guides and downloads for released versions of ASP.NET Core then you should go to http://dot.net. This is the home page of our source code repositories and is intended for those contributing to ASP.NET Core or using bleeding edge nightly builds.
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!
910

10-
If you want a more stable, released, experience or getting started instructions then go to one of the following:
11+
## Get Started
1112

12-
- [.NET Homepage](http://dot.net)
13-
Check out dot.net for released versions of .NET, getting started guides, and learning resources.
13+
Follow the [Getting Started](https://docs.asp.net/en/latest/getting-started.html) instructions in the [ASP.NET Core docs](https://docs.asp.net).
1414

15-
- [ASP.NET Core Documentation](http://docs.asp.net) or [.NET Core Documentation](http://microsoft.com/net/core). We intend to merge these in the future.
15+
Also checkout the [.NET Homepage](http://dot.net) for released versions of .NET, getting started guides, and learning resources.
1616

17-
If you want to follow along with development of ASP.NET Core then go to:
17+
## Builds
1818

19-
- [Community Standup](http://live.asp.net)
20-
The community standup is held every week and streamed live to YouTube. You can view past standups in the linked playlist.
21-
- [Roadmap](https://github.com/aspnet/Home/wiki/Roadmap)
22-
The schedule and milestone themes for ASP.NET Core.
19+
If you want to use the latest dev build then you need to:
2320

24-
## Getting ASP.NET Core
25-
26-
- Stable builds of ASP.NET Core should be obtained from http://dot.net.
27-
- If you want to use nightlies then you need to:
28-
- Obtain the latest nightly CLI from http://github.com/dotnet/cli
29-
- Add a NuGet.Config to your app with the following content:
21+
- Obtain the latest [build of the .NET Core SDK](https://github.com/dotnet/cli#installers-and-binaries)
22+
- Add a NuGet.Config to your app with the following content:
3023

31-
```xml
32-
<?xml version="1.0" encoding="utf-8"?>
33-
<configuration>
34-
<packageSources>
35-
<clear />
36-
<add key="AspNetCI" value="https://www.myget.org/F/aspnetvnext/api/v3/index.json" />
37-
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
38-
</packageSources>
39-
</configuration>
40-
```
24+
```xml
25+
<?xml version="1.0" encoding="utf-8"?>
26+
<configuration>
27+
<packageSources>
28+
<clear />
29+
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v3/index.json" />
30+
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
31+
</packageSources>
32+
</configuration>
33+
```
4134

42-
*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.*
35+
*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.*
4336

44-
- Change your applications dependencies to have a `*` to get the latest version, `1.0.0-*` for example.
45-
- Prerelease tooling builds for Visual Studio are available from the [Tooling](https://github.com/aspnet/tooling/#pre-release-builds) repo.
37+
- Change your applications dependencies to have a `*` to get the latest version (ex. `1.0.0-*`).
38+
39+
Prerelease tooling builds for Visual Studio are available from the [Tooling](https://github.com/aspnet/tooling/#pre-release-builds) repo.
40+
41+
## Community and roadmap
42+
43+
To follow along with the development of ASP.NET Core:
44+
45+
- [Community Standup](http://live.asp.net): The community standup is held every week and streamed live to YouTube. You can view past standups in the linked playlist.
46+
- [Roadmap](https://github.com/aspnet/Home/wiki/Roadmap): The schedule and milestone themes for ASP.NET Core.
4647

47-
## Repos and Projects
48+
## Repos and projects
4849

4950
These are some of the most common repos:
5051

0 commit comments

Comments
 (0)