I am trying to rebuild an existing solution from scratch. I know that the main project is created from a ASP.NET web application template.
But I am stuck when I want to create another project for unit testing as there are a bunch of templates to choose from (MSTest, NUnit, xUnit, etc.)
From the project type GUIDs and this overview of Visual Studio Project Type Guids I know that the project is of type
- C# (GUID: FAE04EC0-301F-11D3-BF4B-00C04F79EFBC) and
- Test (GUID: 3AC096D0-A1C2-E12C-1390-A8335801FDAB)
But this information does not help me in choosing the exact same template of the original project.
Is there any way to get information on the very template that was used for the original project?
Any help is much appreciated!