Skip to content

Commit

Permalink
Correct the path to NuGet cache (dotnet#17400)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymeng authored and brianrob committed Apr 4, 2018
1 parent 3ad2307 commit b71cdf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/project-docs/linux-performance-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The easiest way to generate framework symbols is to have perfcollect do it for y
This will create a bin/*/netcoreapp2.0/Linux-x64/publish directory which contains all of the files required to run your app including the .NET runtime and framework. As a side-effect, the dotnet CLI downloads and extracts the CoreCLR nuget package. You should be able to find crossgen at:

> ```bash
> ~/packages/runtime.linux-x64.microsoft.netcore.app/2.0.0/tools/crossgen
> ~/.nuget/packages/runtime.linux-x64.microsoft.netcore.app/2.0.0/tools/crossgen
> ```

2. Copy crossgen next to libcoreclr.so. If you run your application out of the publish directory, you can copy it into the directory that you just created during step # 1. If you run your application using the dotnet CLI, then you likely need to copy it to /usr/share/dotnet/shared/Microsoft.NETCore.App/<Version> where <Version> is the version number of CoreCLR. This should match the version number in the path to crossgen from step # 1.
Expand Down

0 comments on commit b71cdf1

Please sign in to comment.