diff options
author | Jeremy Meng <yumeng@microsoft.com> | 2018-04-04 12:01:05 -0700 |
---|---|---|
committer | Brian Robbins <brianrob@microsoft.com> | 2018-04-04 12:01:05 -0700 |
commit | b71cdf136064407b495e57e10f43b701c952c955 (patch) | |
tree | 8c99873b06f5ae2869fc36cfeec2fee008524204 /Documentation/project-docs | |
parent | 3ad2307879516df7ff4f6936d4d24c28b866d964 (diff) | |
download | coreclr-b71cdf136064407b495e57e10f43b701c952c955.tar.gz coreclr-b71cdf136064407b495e57e10f43b701c952c955.tar.bz2 coreclr-b71cdf136064407b495e57e10f43b701c952c955.zip |
Correct the path to NuGet cache (#17400)
Diffstat (limited to 'Documentation/project-docs')
-rw-r--r-- | Documentation/project-docs/linux-performance-tracing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/project-docs/linux-performance-tracing.md b/Documentation/project-docs/linux-performance-tracing.md index 34a7a786f2..b9e336c22a 100644 --- a/Documentation/project-docs/linux-performance-tracing.md +++ b/Documentation/project-docs/linux-performance-tracing.md @@ -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. |