Hi,
My guidance package contains a project which is dependent on some other assemblies. These assemblies are not projects in the guidance package. So, what I want is to contain some sort of reference folder with the required assemblies into the guidance package. Right now, I added the referenced assemblies as project items into the vstemplate of the project, like this:
<Project File="MyProject.csproj" TargetFileName="$UserDefinedProjectName$.csproj" ReplaceParameters="true">
<ProjectItem TargetFileName="Bin\Debug\ReferencedAssembly.dll">Bin\ReferencedAssembly.dll</ProjectItem>
...
<Project>
This doesn't work, the referenced assembly isn't available in the bin\debug folder of a project created with the guidance package.
The referenced assemblies aren't necessarily available on the user's system, so I can't point to a certain location. I don't know if the assembly is already there. Therefore, I'm looking for some way to contain the referenced assemblies into the guidance package and put them in the right place.
Can anybody help me out?
Greets,
Nils Gruson