diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-25 21:37:04 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-29 10:38:44 -0800 |
commit | bb9e8847c4d41df4e28874acce756eb47ad2e7af (patch) | |
tree | 8e826dd861fe425c27e0149a5a076147f1de34f3 | |
parent | 82dd0d58b6fece4c2c98e75b8b17b0ef3c7d360e (diff) | |
download | DotNetOpenAuth-bb9e8847c4d41df4e28874acce756eb47ad2e7af.zip DotNetOpenAuth-bb9e8847c4d41df4e28874acce756eb47ad2e7af.tar.gz DotNetOpenAuth-bb9e8847c4d41df4e28874acce756eb47ad2e7af.tar.bz2 |
Fixed nightly build so that it completes.
-rw-r--r-- | build.proj | 11 | ||||
-rw-r--r-- | samples/OAuthAuthorizationServer/OAuthAuthorizationServer.csproj | 2 |
2 files changed, 9 insertions, 4 deletions
@@ -4,16 +4,21 @@ <Import Project="$(ProjectRoot)tools\Translation.targets"/> <ItemGroup> + <!--Removed from NightlyProjects until it can be fixed up. samples\tools.proj;--> <NightlyProjects Include=" - samples\tools.proj; - tools\drop.proj; nuget\nuget.proj; " /> <NightlyProjects Include=" + tools\drop.proj; + "> + <BuildOnlyOnClr2>true</BuildOnlyOnClr2> + </NightlyProjects> + <NightlyProjects Include=" samples\samples.proj; doc\doc.proj; "> <Targets>DeployableArchive</Targets> + <BuildOnlyOnClr2>true</BuildOnlyOnClr2> </NightlyProjects> <ProjectsToClean Include=" @@ -44,7 +49,7 @@ <NightlyProjects> <Properties>TargetFrameworkVersion=v3.5</Properties> </NightlyProjects> - <NightlyProjects Include="@(NightlyProjects)"> + <NightlyProjects Include="@(NightlyProjects)" Condition=" '%(NightlyProjects.BuildOnlyOnClr2)' != 'true' "> <Properties>TargetFrameworkVersion=v4.0</Properties> </NightlyProjects> <ProjectsToClean> diff --git a/samples/OAuthAuthorizationServer/OAuthAuthorizationServer.csproj b/samples/OAuthAuthorizationServer/OAuthAuthorizationServer.csproj index 6c57c76..8dff7d5 100644 --- a/samples/OAuthAuthorizationServer/OAuthAuthorizationServer.csproj +++ b/samples/OAuthAuthorizationServer/OAuthAuthorizationServer.csproj @@ -63,7 +63,7 @@ <Reference Include="System.Web.Extensions"> <RequiredTargetFramework>3.5</RequiredTargetFramework> </Reference> - <Reference Include="System.Web.Abstractions" Condition=" '$(ClrVersion)' == '2' " /> + <Reference Include="System.Web.Abstractions" /> <Reference Include="System.Web.Routing" /> <Reference Include="System.Xml" /> <Reference Include="System.Configuration" /> |