Skip to content

Commit

Permalink
Fix first supported version for the MSTest.Sdk (dotnet#40327)
Browse files Browse the repository at this point in the history
* Update no-response.yml

* Fix first MSTest.Sdk version

* rollback wrong update

* rollback wrong update

---------

Co-authored-by: Marco Rossignoli <[email protected]>
  • Loading branch information
MarcoRossignoli and Marco Rossignoli authored Apr 4, 2024
1 parent e2b9b14 commit e95d650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/core/testing/unit-testing-mstest-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The MSTest SDK will discover and run your tests using the [`MSTest runner`](./un
How to use the `MSTest.Sdk` in a project:

```xml
<Project Sdk="MSTest.Sdk/3.3.0">
<Project Sdk="MSTest.Sdk/3.3.1">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
Expand All @@ -29,7 +29,7 @@ How to use the `MSTest.Sdk` in a project:
```

> [!NOTE]
> `/3.3.0` is given as example as it's the first version providing the SDK but it can be replaced with any newer version.
> `/3.3.1` is given as example as it's the first version providing the SDK but it can be replaced with any newer version.
> Alternatively, you can set the SDK version at solution level using the _global.json_. For more information, see [Use MSBuild project SDKs](/visualstudio/msbuild/how-to-use-project-sdk?#how-project-sdks-are-resolved).
When you `build` the project all the needed components will be restored and installed using the standard NuGet workflow set by your project.
Expand Down

0 comments on commit e95d650

Please sign in to comment.