Skip to content
Open
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
4 changes: 2 additions & 2 deletions NuGet.Docs/Create/nuget3-packages-walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ This is the simplest type of package. You wish to ship a portable class library

The below sample illustrates the dependencies of a project.json based PCL targeting .NET Framework 4.6, Windows Universal 10.0, and ASP.NET Core 5.0. The dependency section can be generated using the third party [NuSpec.ReferenceGenerator](https://www.nuget.org/packages/NuSpec.ReferenceGenerator/) package.
```
<depenedencies>
<dependencies>
<group targetFramework="dotnet">
<dependency id="System.IO" version="4.0.10"/>
<dependency id="System.Runtime" version="4.0.20"/>
</group>
</depenedencies>
</dependencies>

lib/dotnet/System.Banana.dll
```
Expand Down