diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:50:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:50:45 -0700 |
commit | 89c2167a677ebb23aca7f1e9592af7954a093fff (patch) | |
tree | 37c513a0cfae1cee641051d345b6cbffd5216538 /nuget | |
parent | c74bede6f773bd0a0c6362a6647a2939554ccd9a (diff) | |
download | DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.zip DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.tar.gz DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.tar.bz2 |
Removes Microsoft AspNet project.
Compatibility with it is broken due to the async changes in DNOA.
Diffstat (limited to 'nuget')
-rw-r--r-- | nuget/DotNetOpenAuth.AspNet.nuspec | 31 | ||||
-rw-r--r-- | nuget/nuget.proj | 14 |
2 files changed, 0 insertions, 45 deletions
diff --git a/nuget/DotNetOpenAuth.AspNet.nuspec b/nuget/DotNetOpenAuth.AspNet.nuspec deleted file mode 100644 index ff0db0d..0000000 --- a/nuget/DotNetOpenAuth.AspNet.nuspec +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0"?> -<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> - <metadata> - <id>$identity$</id> - <version>$version$</version> - <title>DotNetOpenAuth extensions for ASP.NET (WebPages)</title> - <authors>Microsoft</authors> - <owners>Outercurve Foundation</owners> - <projectUrl>http://www.dotnetopenauth.net/</projectUrl> - <iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl> - <licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl> - <requireLicenseAcceptance>false</requireLicenseAcceptance> - <summary>Allow your web visitors to log into your web site using accounts they already have with popular services.</summary> - <description> - Enables web site visitors to log into an ASP.NET web application via popular identity providers, - including Google, Yahoo!, Windows Live, Facebook, LinkedIn and Twitter. - </description> - <dependencies> - <dependency id="DotNetOpenAuth.OpenId.RelyingParty" version="[$version$]" /> - <dependency id="DotNetOpenAuth.OAuth.Consumer" version="[$version$]" /> - </dependencies> - </metadata> - <files> - <file src="$OutputPath45$$signedSubPath$$identity$.dll" target="lib\net45-full\" /> - <file src="$OutputPath45$$identity$.pdb" target="lib\net45-full\" /> - <file src="$OutputPath45$$identity$.xml" target="lib\net45-full\" /> - - <file src="..\src\$Identity$\**\*.cs" target="src" exclude="..\src\$Identity$\obj\**" /> - <file src="$GeneratedAssemblyInfoSourceFile$" target="src" /> - </files> -</package>
\ No newline at end of file diff --git a/nuget/nuget.proj b/nuget/nuget.proj index d2ebfc1..c080e46 100644 --- a/nuget/nuget.proj +++ b/nuget/nuget.proj @@ -7,8 +7,6 @@ <ItemGroup> <ProductTargets Include="BuildUnifiedProduct;ResignShippingDelaySignedAssemblies" Condition=" '$(SkipNugetDependenciesBuild)' != 'true' " /> <ProductTargets Include="GetOutputPath" /> - <AspNetTargets Include="Build;Sign" Condition=" '$(SkipNugetDependenciesBuild)' != 'true' " /> - <AspNetTargets Include="GetOutputPath" /> </ItemGroup> <!-- We build the entire unified, signed product targeting both CLRs, since NuGet supports packages that contain both, @@ -20,18 +18,6 @@ BuildInParallel="$(BuildInParallel)"> <Output TaskParameter="TargetOutputs" ItemName="TargetOutputs45"/> </MSBuild> - <MSBuild - Projects="$(ProjectRoot)src\DotNetOpenAuth.AspNet\DotNetOpenAuth.AspNet.csproj" - Targets="@(AspNetTargets)" - Properties="TargetFrameworkVersion=v4.5" - BuildInParallel="$(BuildInParallel)"> - </MSBuild> - <MSBuild - Projects="$(ProjectRoot)src\DotNetOpenAuth.AspNet\DotNetOpenAuth.AspNet.csproj" - Targets="@(AspNetTargets)" - Properties="TargetFrameworkVersion=v4.5" - BuildInParallel="$(BuildInParallel)"> - </MSBuild> <ItemGroup> <ResignedAssembliesOutputs Include="@(TargetOutputs45)" Condition=" '%(MSBuildSourceTargetName)' == 'Sign' "> |