summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-26 23:35:23 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-26 23:35:23 -0700
commitcd5f593a5401cd0708f70c37400f35575c255321 (patch)
tree7d2dd5929030f581bfbd6396348abf07f7f539c7
parent3de12922c5a4ae03148471e431221ea5a8a9cc7f (diff)
downloadDotNetOpenAuth-cd5f593a5401cd0708f70c37400f35575c255321.zip
DotNetOpenAuth-cd5f593a5401cd0708f70c37400f35575c255321.tar.gz
DotNetOpenAuth-cd5f593a5401cd0708f70c37400f35575c255321.tar.bz2
Removes project templates from the nightly build.
-rw-r--r--tools/drop.proj12
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/drop.proj b/tools/drop.proj
index f194b52..ea03d89 100644
--- a/tools/drop.proj
+++ b/tools/drop.proj
@@ -3,6 +3,10 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), EnlistmentInfo.props))\EnlistmentInfo.props" Condition=" '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), EnlistmentInfo.props))' != '' " />
<Import Project="$(MSBuildProjectDirectory)\DotNetOpenAuth.automated.props"/>
+ <PropertyGroup>
+ <BuildProjectTemplates>false</BuildProjectTemplates>
+ </PropertyGroup>
+
<Target Name="LayoutDependencies">
<MSBuild Projects="$(ProjectRoot)src\$(ProductName)\$(ProductName).proj"
Properties="TargetFrameworkVersion=v4.5"
@@ -19,10 +23,10 @@
<!-- Note that we use an MSBuild task for these dependencies rather than individual DependsOnTargets entries
so that these builds can be executed in parallel. -->
<ItemGroup>
- <ProjectsToBuild Include="
- $(ProjectRoot)vsix\vsix.proj;
- $(ProjectRoot)samples\samples.proj;
- ">
+ <ProjectsToBuild Include="$(ProjectRoot)vsix\vsix.proj" Condition=" '$(BuildProjectTemplates)' == 'true' ">
+ <Properties>TargetFrameworkVersion=v4.5</Properties>
+ </ProjectsToBuild>
+ <ProjectsToBuild Include="$(ProjectRoot)samples\samples.proj">
<Properties>TargetFrameworkVersion=v4.5</Properties>
</ProjectsToBuild>