From 6463a891cb6555d5a9b2ff877f998dbdb7f5159e Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 21 Apr 2024 23:19:23 +0200 Subject: [PATCH] (#80) Docs: improve the test explanation --- docs/tests.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tests.md b/docs/tests.md index 0ce7cd13..be231734 100644 --- a/docs/tests.md +++ b/docs/tests.md @@ -80,10 +80,11 @@ Compiler packing is done by 2 NUKE targets: - `PublishCompilerBundle`: a target that make platform-specific `dotnet publish` of compiler bundle to corresponding artifacts' folder. - `PackCompilerBundle`: a target that wraps a published compiler bundle into a NuGet package which is then used by SDK to deliver compiler to user's project -If you want to run these tests separately, run the targets using a shell command: +If you want to run these tests without Nuke (e.g. from the IDE), run the targets using a shell command: ```console $ dotnet nuke PackCompilerBundle ``` +After that, run the tests in your preferred way. Both targets are called automatically when `TestSdk` target is invoked.