diff options
Diffstat (limited to 'projecttemplates/projecttemplates.proj')
-rw-r--r-- | projecttemplates/projecttemplates.proj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/projecttemplates/projecttemplates.proj b/projecttemplates/projecttemplates.proj index 27e366c..9907d6b 100644 --- a/projecttemplates/projecttemplates.proj +++ b/projecttemplates/projecttemplates.proj @@ -8,7 +8,7 @@ <LayoutDependsOn> BuildUnifiedProduct; - ReSignDelaySignedAssemblies; + ResignShippingDelaySignedAssemblies; DeploySql; LayoutProjects; </LayoutDependsOn> @@ -24,7 +24,7 @@ <ItemGroup> <ProjectTemplates Include="**\*.*proj" Exclude="$(MSBuildThisFile)" /> - <ProjectReferencesToRemove Include="..\RelyingPartyDatabase\RelyingPartyDatabase.dbproj"/> + <ProjectReferencesToRemove Include="..\RelyingPartyDatabase\RelyingPartyDatabase.sqlproj"/> <AssemblyReferencesToReplaceWith Include="REMOVE" /> </ItemGroup> @@ -34,7 +34,7 @@ <Target Name="DeploySql"> <!-- This causes the SQL script that generates the database to be deployed to the RelyingPartyLogic class library. --> - <MSBuild Projects="RelyingPartyDatabase\RelyingPartyDatabase.dbproj" Targets="Build;Deploy" BuildInParallel="$(BuildInParallel)" /> + <MSBuild Projects="RelyingPartyDatabase\RelyingPartyDatabase.sqlproj" Targets="Build" BuildInParallel="$(BuildInParallel)" /> </Target> <Target Name="LayoutProjects"> @@ -55,7 +55,7 @@ <!-- Add external libraries and their symbols --> <ProjectTemplateLibraries Include="@(SignedProductAssemblies)" /> <ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(SymbolPath)')" /> - <ProjectTemplateLibraries Include="$(OutputPath)$(ProductName).xml" /> + <ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(XmlDocumentationFile)')" /> <!-- ... and log4net --> <ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.dll" /> <ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.xml" /> |