I am trying to create a project template in c# for visual studio.
Is there a way to include only certain files from the project template in the created project based on the input from wizard?
Example - the project template has class files - class1.cs , class2.cs, class3.cs The user will be given an option to choose - 1 , 2 or 3 from the wizard while creating the project using the project template.
If the user chooses 1, only class1.cs should be added to the project created using the template. Class2.cs and Class3.cs should not be included in the project.