Minor doc updates (#34003)
authorJan Kotas <jkotas@microsoft.com>
Tue, 24 Mar 2020 12:47:28 +0000 (05:47 -0700)
committerGitHub <noreply@github.com>
Tue, 24 Mar 2020 12:47:28 +0000 (08:47 -0400)
docs/workflow/building/coreclr/linux-instructions.md
docs/workflow/debugging/libraries/debugging-vscode.md

index bbc0a78..0588657 100644 (file)
@@ -130,7 +130,7 @@ To build the runtime on Linux, run build.sh to build the CoreCLR subset category
 ./build.sh -subsetCategory coreclr
 ```
 
-After the build is completed, there should some files placed in `runtime/artifacts/bin/coreclr/Linux.x64.Debug`.  The ones we are most interested in are:
+After the build is completed, there should some files placed in `artifacts/bin/coreclr/Linux.x64.Debug`.  The ones we are most interested in are:
 
 * `corerun`: The command line host.  This program loads and starts the CoreCLR runtime and passes the managed program you want to run to it.
 * `libcoreclr.so`: The CoreCLR runtime itself.
index 169a639..a27aa1d 100644 (file)
@@ -8,9 +8,9 @@
 - In the `.NET Core Launch (console)` configuration do the following
   - delete the `preLaunchTask` property
   - set `program` to the full path to `dotnet` in the artifacts/bin/testhost directory.
-    - something like `runtime/artifacts/bin/testhost/netcoreapp-{OS}-{Configuration}-{Architecture}`, plus the full path to your corefx directory.
+    - something like `artifacts/bin/testhost/netcoreapp-{OS}-{Configuration}-{Architecture}`, plus the full path to your dotnet/runtime directory.
   - set `cwd` to the test bin directory.
-    - using the System.Net.Sockets example, it should be something like `runtime/artifacts/bin/System.Net.Sockets.Tests/netcoreapp-{OS}-{Configuration}-{Architecture}`, plus the full path to your corefx directory.
+    - using the System.Net.Sockets example, it should be something like `artifacts/bin/System.Net.Sockets.Tests/netcoreapp-{OS}-{Configuration}-{Architecture}`, plus the full path to your dotnet/runtime directory.
   - set `args` to the command line arguments to pass to the test
     - something like: `[ "exec", "--runtimeconfig", "{TestProjectName}.runtimeconfig.json", "xunit.console.dll", "{TestProjectName}.dll", "-notrait", ... ]`, where TestProjectName would be `System.Net.Sockets.Tests`
     - to run a specific test, you can append something like: `[ "method", "System.Net.Sockets.Tests.{ClassName}.{TestMethodName}", ...]`