0
I’m trying to create a project template
in vs 2017 using the SideWaffle
, the problem is that it references existing projects in separate folders. ex:
sln: project A project b libraries project libraries c
project b and project c are in previous folders and these should be shared and referenced in project A, the template should create sln that way, currently either he creates project A without the other projects but with the reference or he recreates the other projects by duplicating the entire code for each project.
Does anyone know any way to create this template?
If other projects are libraries and you don’t want projects to be included in your Solution, they should be included only as a reference. Ideally you would have a nuget repository to make your binaries available and include in your project only the dependencies of Packages.
– Leandro Angelo
Actually it’s the opposite, I want them to be included, without being recreated, they are projects in other folders (never change), I needed to create the template with them already included
– Victor Ochoa
And how do you versioning? You’re using TFS, GIT, or SVN?
– Leandro Angelo
use TFS for versioning
– Victor Ochoa