Skip to content

Commit

Permalink
Update doc to use dotnet 8 and reference yarp 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpetit committed Jan 3, 2024
1 parent f4a74f1 commit d138075
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/docfx/articles/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ We plan on providing a project template and pre-built exe in the future.
YARP is implemented on top of .NET Core infrastructure and is usable on Windows, Linux or MacOS.
Development can be done with the SDK and your favorite editor, [Microsoft Visual Studio](https://visualstudio.microsoft.com/vs/) or [Visual Studio Code](https://code.visualstudio.com/).

YARP 2.0.0 supports ASP.NET Core 6.0 and newer.
YARP 2.1.0 supports ASP.NET Core 6.0 and newer, including ASP.NET Core 8.0.
You can download the .NET SDK from https://dotnet.microsoft.com/download/dotnet/.

Visual Studio support for .NET 6 is included in Visual Studio 2022.
Visual Studio support for .NET 8 is included in Visual Studio 2022 17.8.

### Create a new project

Expand All @@ -24,7 +24,7 @@ A complete version of the project built using the steps below can be found at [B
Start by creating an "Empty" ASP.NET Core application using the command line:

```Console
dotnet new web -n MyProxy -f net6.0
dotnet new web -n MyProxy -f net8.0
```

Or create a new ASP.NET Core web application in Visual Studio 2022, and choose "Empty" for the project template.
Expand All @@ -33,7 +33,7 @@ Or create a new ASP.NET Core web application in Visual Studio 2022, and choose "

```XML
<ItemGroup>
<PackageReference Include="Yarp.ReverseProxy" Version="1.1.0-rc.2.22152.2" />
<PackageReference Include="Yarp.ReverseProxy" Version="2.1.0" />
</ItemGroup>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/docfx/toc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- name: About YARP 2.0
- name: About YARP 2.1
href: index.md
- name: Articles
href: articles/
Expand Down

0 comments on commit d138075

Please sign in to comment.