diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-23 23:45:49 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-29 10:38:37 -0800 |
commit | af677bf167c52727f8e0d38c5939a42eb4b32e15 (patch) | |
tree | e507381f279713742ac6c8458aff34ecc2835176 | |
parent | d4c1934aeaa8659644e7bc6d70964f8ef620b508 (diff) | |
download | DotNetOpenAuth-af677bf167c52727f8e0d38c5939a42eb4b32e15.zip DotNetOpenAuth-af677bf167c52727f8e0d38c5939a42eb4b32e15.tar.gz DotNetOpenAuth-af677bf167c52727f8e0d38c5939a42eb4b32e15.tar.bz2 |
Created a non-unified ultimate sku nuget package.
-rw-r--r-- | nuget/DotNetOpenAuth.Ultimate.nuspec | 20 | ||||
-rw-r--r-- | nuget/DotNetOpenAuth.nuspec | 29 |
2 files changed, 38 insertions, 11 deletions
diff --git a/nuget/DotNetOpenAuth.Ultimate.nuspec b/nuget/DotNetOpenAuth.Ultimate.nuspec index f982e59..40ff627 100644 --- a/nuget/DotNetOpenAuth.Ultimate.nuspec +++ b/nuget/DotNetOpenAuth.Ultimate.nuspec @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <metadata> - <id>DotNetOpenAuth</id> + <id>DotNetOpenAuth.Ultimate</id> <version>$version$</version> <title>DotNetOpenAuth Ultimate</title> <authors>Andrew Arnott</authors> @@ -13,17 +13,15 @@ <summary>OpenID, OAuth, & InfoCard library for web sites/services and apps.</summary> <description>A C# library that adds OpenID 2.0 Provider and Relying Party, OAuth Consumer and Service Provider, and InfoCard Selector support to your web site both programmatically and through convenient drop-in ASP.NET controls.</description> <language>en-US</language> - <frameworkAssemblies> - <frameworkAssembly assemblyName="System.Configuration" targetFramework="net40" /> - </frameworkAssemblies> + <dependencies> + <dependency id="DotNetOpenAuth.OpenId.RelyingParty.UI" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OpenId.Provider.UI" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OAuth.Consumer" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OAuth.ServiceProvider" version="[$version$]" /> + <dependency id="DotNetOpenAuth.OpenIdInfoCard.UI" version="[$version$]" /> + </dependencies> </metadata> <files> - <file src="$OutputPath35$unified\signed\DotNetOpenAuth.dll" target="lib\net35-full\DotNetOpenAuth.dll" /> - <file src="$OutputPath40$unified\signed\DotNetOpenAuth.dll" target="lib\net40-full\DotNetOpenAuth.dll" /> - - <file src="$OutputPath35$unified\DotNetOpenAuth.xml" target="lib\net35-full\DotNetOpenAuth.xml" /> - <file src="$OutputPath40$unified\DotNetOpenAuth.xml" target="lib\net40-full\DotNetOpenAuth.xml" /> - - <file src="content\Ultimate\web.config.transform" target="content\web.config.transform" /> + <!-- this area intentionally left blank (so that nuget pack doesn't include all files and folders under this one in the package. --> </files> </package>
\ No newline at end of file diff --git a/nuget/DotNetOpenAuth.nuspec b/nuget/DotNetOpenAuth.nuspec new file mode 100644 index 0000000..6612b7c --- /dev/null +++ b/nuget/DotNetOpenAuth.nuspec @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> + <metadata> + <id>DotNetOpenAuth</id> + <version>$version$</version> + <title>DotNetOpenAuth Ultimate (unified)</title> + <authors>Andrew Arnott</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>OpenID, OAuth, & InfoCard library for web sites/services and apps.</summary> + <description>A C# library that adds OpenID 2.0 Provider and Relying Party, OAuth Consumer and Service Provider, and InfoCard Selector support to your web site both programmatically and through convenient drop-in ASP.NET controls.</description> + <language>en-US</language> + <frameworkAssemblies> + <frameworkAssembly assemblyName="System.Configuration" targetFramework="net40" /> + </frameworkAssemblies> + </metadata> + <files> + <file src="$OutputPath35$unified\signed\DotNetOpenAuth.dll" target="lib\net35-full\DotNetOpenAuth.dll" /> + <file src="$OutputPath40$unified\signed\DotNetOpenAuth.dll" target="lib\net40-full\DotNetOpenAuth.dll" /> + + <file src="$OutputPath35$unified\DotNetOpenAuth.xml" target="lib\net35-full\DotNetOpenAuth.xml" /> + <file src="$OutputPath40$unified\DotNetOpenAuth.xml" target="lib\net40-full\DotNetOpenAuth.xml" /> + + <file src="content\Ultimate\web.config.transform" target="content\web.config.transform" /> + </files> +</package>
\ No newline at end of file |