diff options
-rw-r--r-- | build.proj | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -67,13 +67,12 @@ </Target> <Target Name="BuildTests" DependsOnTargets="SkipVerification"> - <MSBuild Projects="$(SolutionPath)" /> <!-- broken in Dev10 RC: Targets="DotNetOpenAuth_Test;DotNetOpenAuth_TestWeb" --> + <MSBuild Projects="$(SolutionPath)" Targets="DotNetOpenAuth_Test;DotNetOpenAuth_TestWeb" /> </Target> <Target Name="BuildSamples" DependsOnTargets="SkipVerification"> - <!--<MSBuild Projects="@(SampleProjects)" /> - <MSBuild Projects="$(SolutionPath)" Targets="@(SampleSites)" /> BROKEN IN DEV10 RC --> - <MSBuild Projects="$(SolutionPath)" /> + <MSBuild Projects="@(SampleProjects)" /> + <MSBuild Projects="$(SolutionPath)" Targets="@(SampleSites)" /> </Target> <Target Name="Build" DependsOnTargets="SkipVerification"> |