diff options
-rw-r--r-- | projecttemplates/projecttemplates.proj | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/projecttemplates/projecttemplates.proj b/projecttemplates/projecttemplates.proj index 9907d6b..6b8605b 100644 --- a/projecttemplates/projecttemplates.proj +++ b/projecttemplates/projecttemplates.proj @@ -42,6 +42,7 @@ <Output TaskParameter="TargetOutputs" ItemName="SignedProductAssemblies" /> </MSBuild> <ItemGroup> + <UnifiedSignedProductAssembly Include="@(SignedProductAssemblies)" Condition=" '%(SignedProductAssemblies.FileName)' == '$(ProductName)' " /> <TemplateProjects Include="**\*.csproj" Exclude="$(MSBuildThisFile)"> <AfterTokens>$safeprojectname$</AfterTokens> <!-- Projects can get changed after the transform+copy operation, so don't skip copying them. --> @@ -53,9 +54,9 @@ <TemplateProjectsLayout Include="@(TemplateProjects->'$(ProjectTemplatesLayoutPath)%(RecursiveDir)%(FileName)%(Extension)')"/> <!-- Add external libraries and their symbols --> - <ProjectTemplateLibraries Include="@(SignedProductAssemblies)" /> - <ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(SymbolPath)')" /> - <ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(XmlDocumentationFile)')" /> + <ProjectTemplateLibraries Include="@(UnifiedSignedProductAssembly)" /> + <ProjectTemplateLibraries Include="@(UnifiedSignedProductAssembly->'%(SymbolPath)')" /> + <ProjectTemplateLibraries Include="@(UnifiedSignedProductAssembly->'%(XmlDocumentationFile)')" /> <!-- ... and log4net --> <ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.dll" /> <ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.xml" /> |