thomhurst / TUnit

A modern, fast and flexible .NET testing framework
MIT License
2.31k stars 37 forks source link

`dotnet new` TUnit Templates #1138

Open thomhurst opened 1 week ago

alexeyzimarev commented 1 week ago

I believe that Rider and Visual Studio use dotnet templates anyway.

thomhurst commented 1 week ago

I believe that Rider and Visual Studio use dotnet templates anyway.

Ah that simplifies things then. Do you know how to go about setting them up? I take it Microsoft control the repository of templates?

alexeyzimarev commented 1 week ago

They do, those default templates are included in SDKs (WebAPI, console app, etc) and additional workloads (like Aspire or MAUI). Test project templates are separate though, located here https://github.com/dotnet/test-templates

thomhurst commented 1 week ago

They do, those default templates are included in SDKs (WebAPI, console app, etc) and additional workloads (like Aspire or MAUI). Test project templates are separate though, located here https://github.com/dotnet/test-templates

Thank you that's helpful! 😄