diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-08 20:52:34 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-08 20:52:34 -0800 |
commit | deb2cb0d860f117ec69c87d010bcedd6187f750c (patch) | |
tree | 42d0addc5c89819c59d90d1b8ebddb7b27b40f80 | |
parent | 76370230623ec676c29dbcaad8b32be4ccbaae6a (diff) | |
download | DotNetOpenAuth-deb2cb0d860f117ec69c87d010bcedd6187f750c.zip DotNetOpenAuth-deb2cb0d860f117ec69c87d010bcedd6187f750c.tar.gz DotNetOpenAuth-deb2cb0d860f117ec69c87d010bcedd6187f750c.tar.bz2 |
Workaround for Dev10 RC bug.
-rw-r--r-- | build.proj | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -65,8 +65,9 @@ </Target> <Target Name="BuildSamples" DependsOnTargets="SkipVerification"> - <MSBuild Projects="@(SampleProjects)" /> - <MSBuild Projects="$(SolutionPath)" Targets="@(SampleSites)" /> + <!--<MSBuild Projects="@(SampleProjects)" /> + <MSBuild Projects="$(SolutionPath)" Targets="@(SampleSites)" /> BROKEN IN DEV10 RC --> + <MSBuild Projects="$(SolutionPath)" /> </Target> <Target Name="Build" DependsOnTargets="SkipVerification"> |