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
> On macOS, if `pwsh` is not installed, install PowerShell via Homebrew (`brew install powershell`) or use `dotnet tool install --global Microsoft.Playwright.CLI` and then `playwright install`.
@@ -146,7 +146,7 @@ dotnet build Tests.csproj
146
146
2.**Install Playwright browsers** (first time or after browser updates):
@@ -467,7 +467,7 @@ In short, `obj/` is MSBuild’s working directory; you almost never touch files
467
467
`Tests.csproj` is the **project file** that tells the .NET SDK how to build and run the test suite:
468
468
469
469
-**Target and language**
470
-
-`TargetFramework` is set to `net10.0`, so the project compiles against .NET 10.
470
+
-`TargetFramework` is set to `net8.0`, so the project compiles against .NET 10.
471
471
-`LangVersion` is `latest`, enabling the newest C# language features supported by the installed SDK.
472
472
-`ImplicitUsings` is `enable`, so common namespaces are added automatically (and emitted into `Tests.GlobalUsings.g.cs`).
473
473
-`Nullable` is `enable`, turning on nullable reference type analysis for safer APIs.
@@ -492,9 +492,9 @@ Together, **`Tests.csproj`** defines *what* to build and *which libraries* to us
492
492
493
493
## Understanding the `bin` Folder
494
494
495
-
Where `obj/` holds **intermediate build artifacts**, the `bin/` folder contains the **final, runnable outputs** for each configuration (`Debug` / `Release`) and target framework (`net10.0` in this project).
495
+
Where `obj/` holds **intermediate build artifacts**, the `bin/` folder contains the **final, runnable outputs** for each configuration (`Debug` / `Release`) and target framework (`net8.0` in this project).
496
496
497
-
For example, under `bin/Debug/net10.0` you’ll find:
497
+
For example, under `bin/Debug/net80.0` you’ll find:
498
498
499
499
-**`Tests.dll` and `Tests.pdb`**
500
500
-`Tests.dll` is the **compiled test assembly** that `dotnet test` executes.
@@ -519,7 +519,7 @@ For example, under `bin/Debug/net10.0` you’ll find:
519
519
-`playwright.ps1` – PowerShell script entry point to the Playwright CLI for this project; used in CI and local setup to install browsers:
0 commit comments