Add info for tooling prereleases. (#1570)
This commit is contained in:
parent
40343cc79b
commit
1ad677e752
26
README.md
26
README.md
|
|
@ -27,18 +27,22 @@ The schedule and milestone themes for ASP.NET Core.
|
||||||
- If you want to use nightlies then you need to:
|
- If you want to use nightlies then you need to:
|
||||||
- Obtain the latest nightly CLI from http://github.com/dotnet/cli
|
- Obtain the latest nightly CLI from http://github.com/dotnet/cli
|
||||||
- Add a NuGet.Config to your app with the following content:
|
- Add a NuGet.Config to your app with the following content:
|
||||||
```xml
|
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
```xml
|
||||||
<configuration>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packageSources>
|
<configuration>
|
||||||
<clear />
|
<packageSources>
|
||||||
<add key="AspNetCI" value="https://www.myget.org/F/aspnetvnext/api/v3/index.json" />
|
<clear />
|
||||||
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
|
<add key="AspNetCI" value="https://www.myget.org/F/aspnetvnext/api/v3/index.json" />
|
||||||
</packageSources>
|
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
|
||||||
</configuration>
|
</packageSources>
|
||||||
```
|
</configuration>
|
||||||
*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.*
|
```
|
||||||
|
|
||||||
|
*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.*
|
||||||
|
|
||||||
- Change your applications dependencies to have a `*` to get the latest version, `1.0.0-*` for example.
|
- Change your applications dependencies to have a `*` to get the latest version, `1.0.0-*` for example.
|
||||||
|
- Prerelease tooling builds for Visual Studio are available from the [Tooling](https://github.com/aspnet/tooling/#pre-release-builds) repo.
|
||||||
|
|
||||||
## Repos and Projects
|
## Repos and Projects
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue