Skip to content

Commit

Permalink
Fix framework in dotnet store command topic (dotnet#3188)
Browse files Browse the repository at this point in the history
Reported by @pauliusnorkus. Thanks to @dasMulli for reminding me about the framework problem here. Using `netstandard2.0` worked during pre-release but no more.
  • Loading branch information
guardrex authored and mairaw committed Sep 22, 2017
1 parent 2b5135e commit dbf6d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core/deploying/runtime-store.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dotnet store --manifest <PATH_TO_MANIFEST_FILE> --runtime <RUNTIME_IDENTIFIER> -
**Example**

```console
dotnet store --manifest packages.csproj --runtime win10-x64 --framework netstandard2.0 --framework-version 2.0.0
dotnet store --manifest packages.csproj --runtime win10-x64 --framework netcoreapp2.0 --framework-version 2.0.0
```

You can pass multiple target package store manifest paths to a single [`dotnet store`](../tools/dotnet-store.md) command by repeating the option and path in the command.
Expand Down

0 comments on commit dbf6d46

Please sign in to comment.