Skip to content

Commit

Permalink
Fixing csproj reference layout problems
Browse files Browse the repository at this point in the history
  • Loading branch information
blackdwarf committed Feb 8, 2017
1 parent 930fa69 commit b868d45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/core/preview3/tools/csproj.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ Item that specifies a NuGet dependency in the project. The `Include` attribute s
<PackageReference Include="<package-id>" Version="" PrivateAssets="" IncludeAssets="" ExcludeAssets="" />
```

*# Version
## Version
`Version` specifies the version of the package to restore. The element respects the rules of the NuGet versioning scheme.

*# IncludeAssets
## IncludeAssets
`IncludeAssets` attribute specifies what assets belonging to the package specified by `<PackageReference>` should be
consumed.

Expand All @@ -49,7 +49,7 @@ Alternatively, the attribute can contain:
* `None` – none of the assets are used.
* `All` – all assets are used.

*# ExcludeAssets
## ExcludeAssets
`ExcludeAssets` attribute specifies what assets belonging to the package specified by `<PackageReference>` should not
be consumed.

Expand All @@ -67,7 +67,7 @@ Alternatively, the element can contain:
* `None` – none of the assets are used.
* `All` – all assets are used.

*# PrivateAssets
## PrivateAssets
`PrivateAssets` attribute specifies what assets belonging to the package specified by `<PackageReference>` should be
consumed but that they should not flow to the next project.

Expand Down Expand Up @@ -96,7 +96,7 @@ a replacement for the `tools` node in `project.json`.
<DotnetCliToolReference Include="<package-id>" Version="" />
```

*# Version
## Version
`Version` specifies the version of the package to restore. The attribute respect the rules of the NuGet versioning scheme.

* RuntimeIdentifiers
Expand Down

0 comments on commit b868d45

Please sign in to comment.