You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update solution file references to .slnx in CI and docs
All dotnet commands and documentation now reference KZDev.PerfUtils.slnx instead of KZDev.PerfUtils.sln. This ensures consistency across CI workflows and README instructions following the solution file rename.
Copy file name to clipboardExpand all lines: Source/Tst/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This document covers **local `dotnet test`** workflows (standard vs Explicit) and **Linux Docker** runs.
4
4
5
-
Unless noted otherwise, run commands from the **`Source`** directory (the folder that contains `KZDev.PerfUtils.sln`). The solution uses **artifacts output** (`UseArtifactsOutput`); test build outputs live under **`artifacts/bin/<ProjectName>/release_net*`** at the repository root, not under each project’s `bin` folder.
5
+
Unless noted otherwise, run commands from the **`Source`** directory (the folder that contains `KZDev.PerfUtils.slnx`). The solution uses **artifacts output** (`UseArtifactsOutput`); test build outputs live under **`artifacts/bin/<ProjectName>/release_net*`** at the repository root, not under each project’s `bin` folder.
6
6
7
7
---
8
8
@@ -13,17 +13,17 @@ Restores, builds, and runs **non-Explicit** tests with the defaults wired in `Di
13
13
**PowerShell or cmd (from `Source`):**
14
14
15
15
```cmd
16
-
dotnet restore KZDev.PerfUtils.sln
17
-
dotnet build KZDev.PerfUtils.sln -c Release
18
-
dotnet test KZDev.PerfUtils.sln -c Release --no-build
16
+
dotnet restore KZDev.PerfUtils.slnx
17
+
dotnet build KZDev.PerfUtils.slnx -c Release
18
+
dotnet test KZDev.PerfUtils.slnx -c Release --no-build
19
19
```
20
20
21
21
**bash (from `Source`):**
22
22
23
23
```bash
24
-
dotnet restore KZDev.PerfUtils.sln
25
-
dotnet build KZDev.PerfUtils.sln -c Release
26
-
dotnet test KZDev.PerfUtils.sln -c Release --no-build
24
+
dotnet restore KZDev.PerfUtils.slnx
25
+
dotnet build KZDev.PerfUtils.slnx -c Release
26
+
dotnet test KZDev.PerfUtils.slnx -c Release --no-build
27
27
```
28
28
29
29
`[Fact(Explicit = true)]` tests are **skipped** in this default configuration.
@@ -39,13 +39,13 @@ This repository’s `dotnet test` path uses **VSTest** (not Microsoft Testing Pl
39
39
**One-shot command (from `Source`, after a Release build):**
0 commit comments