I have a project template where some references are defined. How to make the referenced files are being copied to the Lib folder in my newly created solution while the sources are somwhere with the template being put together?
My references are as follows:
<Project language="C#">
<ProjectItems>
...
<Reference Include=".\Lib\Spring.Core.dll" />
<Reference Include=".\Lib\Spring.Aop.dll" />
<Reference Include=".\Lib\Spring.Web.dll" />
<Reference Include=".\Lib\Spring.Data.dll" />
<Reference Include=".\Lib\Spring.Data.NHibernate12.dll" />
<Reference Include=".\Lib\Spring.Data.FirebirdProvider.dll" />
<Reference Include=".\Lib\Spring.antlr.runtime.dll" />
<Reference Include=".\Lib\Common.Logging.dll" />
<Reference Include=".\Lib\Common.Logging.Log4Net129.dll" />
<Reference Include=".\Lib\Castle.DynamicProxy.dll" />
<Reference Include=".\Lib\Iesi.Collections.dll" />
<Reference Include=".\Lib\log4net.dll" />
<Reference Include=".\Lib\NHibernate.dll" />
</ProjectItems>
I've been trying to put file elements but they are being added to the project which I don't want to be done.
Or perhaps there is any better way?