Identifying “Project Template”(s) “Visual Studio 2019”

Pedro III 1 Reputation point
2021-02-24T16:12:22.593+00:00

I need help Identifying what "Project Template"(s) were used in a "Visual Studio 2019 Solution". Is there a way to look into the properties, settings, etc. to Identify those templates the original developer used in order to build the entire solution?

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,581 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Tianyu Sun-MSFT 27,106 Reputation points Microsoft Vendor
    2021-02-25T07:32:05.937+00:00

    Hi @Pedro III ,

    Welcome to Microsoft Q&A forum.

    To directly identify the project template used from an existing project in a solution is a little difficult, sometimes. One way is to match and check the <ProjectTypeGuids> tag in .xxproj file(right-click the project > Unload Project > right-click the project again > Edit XXX.xxproj or open and view it from your project folder). For example if you see 60dc8134-eba5-43b8-bcc9-bb4bc16c2548, it represents Windows Presentation Foundation (WPF), and FAE04EC0-301F-11D3-BF4B-00C04F79EFBC represents C#.

    Of course, there are some indirect ways to identify the project type. For example, you can right-click the project > click properties > select Application and see(refer to) the related information, for example, Output type -- Windows Application, Console Application, Class Library… Or you can find some related information about the project type from items, files etc. like XXX.svc file is a type of WCF Web Service type and XXX.asmx file is a type of ASP .NET Web Service type.

    Best Regards,
    Tianyu

    • If the answer is helpful, please click "Accept Answer" and upvote it.
      Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
    0 comments No comments