From 0457a709be20321771ee451cb0942974ce075b30 Mon Sep 17 00:00:00 2001 From: Zachary Becknell Date: Tue, 24 Apr 2018 21:21:34 -0400 Subject: [PATCH] Update README.md --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 875d2bf64f..6c656ac97f 100644 --- a/README.md +++ b/README.md @@ -83,24 +83,24 @@ The Blazor Visual Studio tooling will build as part of the command line build wh To use a nightly or developer CI build of the Blazor package, ensure that you have the Blazor package feed configured, and update your package version numbers. You should use developer builds only with the expectation that things will break and change without any sort of announcement. Update your projects to include the Blazor developer feed (`https://dotnet.myget.org/f/blazor-dev/api/v3/index.json`) and ASP.NET Core developer feed (`https://dotnet.myget.org/F/dotnet-core/api/v3/index.json`). You can do this in a project file with MSBuild: -``` - - $(RestoreSources); - https://api.nuget.org/v3/index.json; - https://dotnet.myget.org/F/dotnet-core/api/v3/index.json; - https://dotnet.myget.org/f/blazor-dev/api/v3/index.json; - +```xml + + $(RestoreSources); + https://api.nuget.org/v3/index.json; + https://dotnet.myget.org/F/dotnet-core/api/v3/index.json; + https://dotnet.myget.org/f/blazor-dev/api/v3/index.json; + ``` Or in a NuGet.config in the same directory as the solution file: -``` +```xml - + @@ -108,13 +108,13 @@ Or in a NuGet.config in the same directory as the solution file: You can browse https://dotnet.myget.org/gallery/blazor-dev to find the current versions of packages. We recommend picking a specific version of the packages and using it across your projects. -``` - +```xml + - + ``` To install a developer CI build of the Blazor Language Service extension for Visual Studio, add https://dotnet.myget.org/F/blazor-dev/vsix/ as an additional extension gallery by going to Tools -> Options -> Environment -> Extensions and Updates: