I am using code generation and after the completion of the generation, I would like to add new files automatically to new files. If I add files by modifying the file, they do not get a plus icon, like they add through the IDE. As a result, when I check the files, they are not added to the source control.
Is there any way to add a program file to a file the way it plus plus to add it to the source control?
The reason this view is seeing is that the Visual Studio Source Control Provider interface is only available through Solution Explorer Is applied by adding the file to. Modifying the project file will not directly inform the source control provider that it requires adding a new file in the source control. If you create new files, then you will need to call the Source Control Library (usually through the command line interface, but it can also have a net API) according to the rules generating those files. Source Control
Comments
Post a Comment