diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-06-10 15:09:19 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-06-10 15:09:19 -0700 |
commit | f70166165c385afa52393bbe384f65c100ef94e5 (patch) | |
tree | e64b47bab434c94901cbbb9d543e33844d6baf8a | |
parent | 9e1aae0b28f8ea1f08008cce2666cfa2b6d9ea90 (diff) | |
download | DotNetOpenAuth-f70166165c385afa52393bbe384f65c100ef94e5.zip DotNetOpenAuth-f70166165c385afa52393bbe384f65c100ef94e5.tar.gz DotNetOpenAuth-f70166165c385afa52393bbe384f65c100ef94e5.tar.bz2 |
Project templates no longer contain both unified and individual assemblies.
Fixes #106
-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" /> |