diff options
Diffstat (limited to 'nuget')
-rw-r--r-- | nuget/DotNetOpenAuth.Ultimate.nuspec | 3 | ||||
-rw-r--r-- | nuget/DotNetOpenAuth.nuspec | 7 | ||||
-rw-r--r-- | nuget/nuget.proj | 8 |
3 files changed, 8 insertions, 10 deletions
diff --git a/nuget/DotNetOpenAuth.Ultimate.nuspec b/nuget/DotNetOpenAuth.Ultimate.nuspec index 9ce6996..6432868 100644 --- a/nuget/DotNetOpenAuth.Ultimate.nuspec +++ b/nuget/DotNetOpenAuth.Ultimate.nuspec @@ -13,8 +13,7 @@ <summary>OpenID, OAuth, & InfoCard library for web and desktop applications.</summary> <description> A single assembly that adds OpenID 1.1/2.0, OAuth 1.0(a)/2.0, & InfoCard authentication and authorization functionality for client and server applications. - This allows your (web) application to issue identities or accept issued identites from other web applications, and even access your users' - data on other services. + This allows your (web) application to issue identities or accept issued identites from other web applications, and even access your users' data on other services. </description> <language>en-US</language> </metadata> diff --git a/nuget/DotNetOpenAuth.nuspec b/nuget/DotNetOpenAuth.nuspec index 938a9b1..2895b00 100644 --- a/nuget/DotNetOpenAuth.nuspec +++ b/nuget/DotNetOpenAuth.nuspec @@ -13,8 +13,7 @@ <summary>OpenID, OAuth, & InfoCard library for web and desktop applications.</summary> <description> Add OpenID 1.1/2.0, OAuth 1.0(a), & InfoCard authentication and authorization functionality for client and server applications. - This allows your (web) application to issue identities or accept issued identites from other web applications, and even access your users' - data on other services. + This allows your (web) application to issue identities or accept issued identites from other web applications, and even access your users' data on other services. </description> <language>en-US</language> <dependencies> @@ -24,6 +23,10 @@ <dependency id="DotNetOpenAuth.OAuth.ServiceProvider" version="[$version$]" /> <dependency id="DotNetOpenAuth.OpenIdInfoCard.UI" version="[$version$]" /> <dependency id="DotNetOpenAuth.OpenIdOAuth" version="[$version$]" /> + + <dependency id="DotNetOpenAuth.OAuth2.Client.UI" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OAuth2.AuthorizationServer" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OAuth2.ResourceServer" version="[$version$]" /> </dependencies> </metadata> <files> diff --git a/nuget/nuget.proj b/nuget/nuget.proj index 4d79d1f..9c26760 100644 --- a/nuget/nuget.proj +++ b/nuget/nuget.proj @@ -68,20 +68,16 @@ <Target Name="Build" DependsOnTargets="BuildIntermediates" Returns="@(NuGetPackages)"> <ItemGroup> <NuGetProperties Include="version=$(NuGetPackageVersion)" /> - <NuGetProperties Include="oauth2version=$(OAuth2PackagesVersion)" /> + <NuGetProperties Include="oauth2version=$(NuGetPackageVersion)" /> <NuGetProperties Include="OutputPath35=$(OutputPath35)" /> <NuGetProperties Include="OutputPath40=$(OutputPath40)" /> <NuGetProperties Include="OutputPath45=$(OutputPath45)" /> <NuGetProperties Include="IntermediatePath=$(IntermediatePath40)" /> - <NuGetSpecifications Include="*.nuspec" Exclude="*oauth2*.nuspec;DotNetOpenAuth.nuspec"> + <NuGetSpecifications Include="*.nuspec" Exclude="DotNetOpenAuth.nuspec"> <Symbols>true</Symbols> <PackageVersion>$(NuGetPackageVersion)</PackageVersion> </NuGetSpecifications> - <NuGetSpecifications Include="*oauth2*.nuspec" Exclude="DotNetOpenAuth.nuspec"> - <Symbols>true</Symbols> - <PackageVersion>$(OAuth2PackagesVersion)</PackageVersion> - </NuGetSpecifications> <NuGetSpecifications Include="DotNetOpenAuth.nuspec"> <PackageVersion>$(NuGetPackageVersion)</PackageVersion> </NuGetSpecifications> |