diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-21 19:11:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-21 19:11:45 -0700 |
commit | 9533f64c85a79b80fb51843d151fa2046dc62b9c (patch) | |
tree | 21a9d5e86e6d8e5c975e9701b1553745e82aeda3 /tools | |
parent | 3c09e09a3c850f2a2b86b4f97b3fbf738c436e6a (diff) | |
download | DotNetOpenAuth-9533f64c85a79b80fb51843d151fa2046dc62b9c.zip DotNetOpenAuth-9533f64c85a79b80fb51843d151fa2046dc62b9c.tar.gz DotNetOpenAuth-9533f64c85a79b80fb51843d151fa2046dc62b9c.tar.bz2 |
Downgrading VS2010 sample projects to VS2008 now happens by creating NEW project and solution files rather than wiping out the VS2010 ones.
So now VS2008 and VS2010 users have solutions and projects they can open immediately.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/drop.proj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/drop.proj b/tools/drop.proj index 6720ae3..4ceb6bd 100644 --- a/tools/drop.proj +++ b/tools/drop.proj @@ -72,7 +72,7 @@ $(ProjectRoot)**\*~; $(ProjectRoot)**\Debug\**; $(ProjectRoot)**\StyleCop.Cache; - $(ProjectRoot)Samples\_ReSharper.Samples\**; + $(ProjectRoot)Samples\_ReSharper.*\**; $(ProjectRoot)Samples\**\DotNetOpenAuth.???; $(ProjectRoot)Samples\**\DotNetOpenAuth.resources.???; $(ProjectRoot)Samples\**\log4net.???; @@ -142,6 +142,10 @@ DowngradeMvc2ToMvc1="$(DowngradeMvc2ToMvc1)" Condition=" '$(DowngradeVS2010ToVS2008)' != 'false' " /> + <ItemGroup> + <!-- Go snag the newly created files so that .zip file will include them. --> + <AllDropTargets Include="$(DropSamplesDirectory)**\*-vs2008.*" /> + </ItemGroup> </Target> <Target Name="Build" DependsOnTargets="Layout" Returns="@(RedistributableFiles)"> |