MSTest SDK #4065
-
Is MSTest.Sdk a recommended approach for the new projects? Should I update my existing ones? Is .NET 9 required? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @avivanoff, Ideally this is the solution we would like to recommend but it is facing some limitations in the integration with NuGet which can turn off some the users (e.g. you cannot update the version through VS or dotnet/nuget CLIs), it also has a small performance overhead due to how NuGet/MSBuild resolution is working. This being said, if you don't mind updating manually or using Dependabot, we would strongly advise to use it as it removes a lot of boilerplate from your projects and provides good defaults. As for .NET version there is no requirement outside having SDK style project (i.e. you can use |
Beta Was this translation helpful? Give feedback.
Hi @avivanoff,
Ideally this is the solution we would like to recommend but it is facing some limitations in the integration with NuGet which can turn off some the users (e.g. you cannot update the version through VS or dotnet/nuget CLIs), it also has a small performance overhead due to how NuGet/MSBuild resolution is working.
This being said, if you don't mind updating manually or using Dependabot, we would strongly advise to use it as it removes a lot of boilerplate from your projects and provides good defaults.
As for .NET version there is no requirement outside having SDK style project (i.e. you can use
MSTest.Sdk
for .NET 462+ without problem).