Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/src/docs/fusion/v16/adding-a-subgraph.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ Your `Shipping/Shipping.csproj` should look like this:
</ItemGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="16.0.0-p.11.36" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="16.0.0-p.11.36" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="16.0.0-p.11.36">
<PackageReference Include="HotChocolate.AspNetCore" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" />
<PackageReference Include="HotChocolate.Types.Analyzers">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion website/src/docs/fusion/v16/aspire-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the Fusion Aspire package to the AppHost project:

```bash
cd AppHost
dotnet add package HotChocolate.Fusion.Aspire --version 16.0.0-p.11.36
dotnet add package HotChocolate.Fusion.Aspire
```

Your subgraph projects need the `HotChocolate.AspNetCore.CommandLine` package so the orchestrator can extract their schemas. If you followed the [Getting Started](/docs/fusion/v16/getting-started) tutorial, your subgraphs already have this.
Expand Down
14 changes: 7 additions & 7 deletions website/src/docs/fusion/v16/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ You should see `10.0.100` or higher.
The Nitro CLI is a .NET tool that handles schema composition. Install it globally:

```bash
dotnet tool install -g ChilliCream.Nitro.CommandLine --version "16.0.0-p.11.36"
dotnet tool install -g ChilliCream.Nitro.CommandLine
```

Verify the installation:
Expand All @@ -127,10 +127,10 @@ nitro version

### Hot Chocolate Templates

Install the Hot Chocolate templates at the same preview version used in this guide:
Install the Hot Chocolate templates:

```bash
dotnet new install HotChocolate.Templates@16.0.0-p.11.36
dotnet new install HotChocolate.Templates
```

## Create Your First Subgraph (Products)
Expand Down Expand Up @@ -167,9 +167,9 @@ Your `Products/Products.csproj` should now look like this:
</ItemGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="16.0.0-p.11.36" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="16.0.0-p.11.36" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="16.0.0-p.11.36">
<PackageReference Include="HotChocolate.AspNetCore" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" />
<PackageReference Include="HotChocolate.Types.Analyzers">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down Expand Up @@ -737,7 +737,7 @@ Your `Gateway/Gateway.csproj` should look like this:
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.Fusion.AspNetCore" Version="16.0.0-p.11.36" />
<PackageReference Include="HotChocolate.Fusion.AspNetCore" />
</ItemGroup>

</Project>
Expand Down