summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-01-29 10:38:00 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-01-29 10:38:00 -0800
commit64ccf5ac32058482b03e14e882c47cbd4b2d1e3f (patch)
treea8d7b4b746e3326159d49802e1ff6168f68f4fc8
parentaf21cdaf77ca72f54e04f22268b740ce262582fa (diff)
downloadDotNetOpenAuth-64ccf5ac32058482b03e14e882c47cbd4b2d1e3f.zip
DotNetOpenAuth-64ccf5ac32058482b03e14e882c47cbd4b2d1e3f.tar.gz
DotNetOpenAuth-64ccf5ac32058482b03e14e882c47cbd4b2d1e3f.tar.bz2
Created several NuGet packages.
Updated nuget.exe.
-rw-r--r--lib/DotNetOpenAuth.BuildTasks.dllbin106496 -> 107008 bytes
-rw-r--r--lib/DotNetOpenAuth.BuildTasks.pdbbin263680 -> 263680 bytes
-rw-r--r--nuget/DotNetOpenAuth.Core.nuspec20
-rw-r--r--nuget/DotNetOpenAuth.OAuth.Consumer.nuspec18
-rw-r--r--nuget/DotNetOpenAuth.OpenId.RelyingParty.nuspec18
-rw-r--r--nuget/DotNetOpenAuth.Ultimate.nuspec (renamed from nuget/DotNetOpenAuth.nuspec)3
-rw-r--r--nuget/nuget.proj2
-rw-r--r--src/DotNetOpenAuth.BuildTasks/NuGetPack.cs4
-rw-r--r--tools/NuGet/NuGet.exebin267264 -> 625664 bytes
9 files changed, 61 insertions, 4 deletions
diff --git a/lib/DotNetOpenAuth.BuildTasks.dll b/lib/DotNetOpenAuth.BuildTasks.dll
index 57e4b3c..95bb83d 100644
--- a/lib/DotNetOpenAuth.BuildTasks.dll
+++ b/lib/DotNetOpenAuth.BuildTasks.dll
Binary files differ
diff --git a/lib/DotNetOpenAuth.BuildTasks.pdb b/lib/DotNetOpenAuth.BuildTasks.pdb
index 9e9349f..d6cdcfe 100644
--- a/lib/DotNetOpenAuth.BuildTasks.pdb
+++ b/lib/DotNetOpenAuth.BuildTasks.pdb
Binary files differ
diff --git a/nuget/DotNetOpenAuth.Core.nuspec b/nuget/DotNetOpenAuth.Core.nuspec
new file mode 100644
index 0000000..2dca1f2
--- /dev/null
+++ b/nuget/DotNetOpenAuth.Core.nuspec
@@ -0,0 +1,20 @@
+<?xml version="1.0"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
+ <metadata>
+ <id>DotNetOpenAuth.Core</id>
+ <version>$version$</version>
+ <title>DotNetOpenAuth Core</title>
+ <authors>Andrew Arnott</authors>
+ <owners>Outercurve Foundation</owners>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Contains core assemblies of DotNetOpenOAuth library.</description>
+ <frameworkAssemblies>
+ <frameworkAssembly assemblyName="System.Configuration" targetFramework=".NETFramework4.0" />
+ </frameworkAssemblies>
+ </metadata>
+ <files>
+ <file src="..\..\bin\v4.0\Release\DotNetOpenAuth.Messaging.dll" target="lib\net40\DotNetOpenAuth.Messaging.dll" />
+ <file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.dll" target="lib\net40\DotNetOpenAuth.OAuth.dll" />
+ <file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.dll" target="lib\net40\DotNetOpenAuth.OpenId.dll" />
+ </files>
+</package> \ No newline at end of file
diff --git a/nuget/DotNetOpenAuth.OAuth.Consumer.nuspec b/nuget/DotNetOpenAuth.OAuth.Consumer.nuspec
new file mode 100644
index 0000000..0573eea
--- /dev/null
+++ b/nuget/DotNetOpenAuth.OAuth.Consumer.nuspec
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
+ <metadata>
+ <id>DotNetOpenAuth.OAuth.Consumer</id>
+ <version>$version$</version>
+ <title>DotNetOpenAuth OAuth 1.0(a) Consumer</title>
+ <authors>Andrew Arnott</authors>
+ <owners>Outercurve Foundation</owners>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Contains assemblies that are required to implement an OAuth consumer.</description>
+ <dependencies>
+ <dependency id="DotNetOpenAuth.Core" version="$version$" />
+ </dependencies>
+ </metadata>
+ <files>
+ <file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.Consumer.dll" target="lib\net40\DotNetOpenAuth.OAuth.Consumer.dll" />
+ </files>
+</package> \ No newline at end of file
diff --git a/nuget/DotNetOpenAuth.OpenId.RelyingParty.nuspec b/nuget/DotNetOpenAuth.OpenId.RelyingParty.nuspec
new file mode 100644
index 0000000..51d1121
--- /dev/null
+++ b/nuget/DotNetOpenAuth.OpenId.RelyingParty.nuspec
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
+ <metadata>
+ <id>DotNetOpenAuth.OpenId.RelyingParty</id>
+ <version>$version$</version>
+ <title>DotNetOpenAuth OpenID Relying Party</title>
+ <authors>Andrew Arnott</authors>
+ <owners>Outercurve Foundation</owners>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Contains assemblies that are required to implement an OpenID Relying Party.</description>
+ <dependencies>
+ <dependency id="DotNetOpenAuth.Core" version="$version$" />
+ </dependencies>
+ </metadata>
+ <files>
+ <file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.RelyingParty.dll" target="lib\net40\DotNetOpenAuth.OpenId.RelyingParty.dll" />
+ </files>
+</package> \ No newline at end of file
diff --git a/nuget/DotNetOpenAuth.nuspec b/nuget/DotNetOpenAuth.Ultimate.nuspec
index fcf0465..b46d216 100644
--- a/nuget/DotNetOpenAuth.nuspec
+++ b/nuget/DotNetOpenAuth.Ultimate.nuspec
@@ -3,8 +3,9 @@
<metadata>
<id>DotNetOpenAuth</id>
<version>$version$</version>
+ <title>DotNetOpenAuth Ultimate</title>
<authors>Andrew Arnott</authors>
- <owners>Andrew Arnott</owners>
+ <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>
diff --git a/nuget/nuget.proj b/nuget/nuget.proj
index f8b8e93..b2faa50 100644
--- a/nuget/nuget.proj
+++ b/nuget/nuget.proj
@@ -27,7 +27,7 @@
<TargetPath>$(NuGetLayoutPath)content\%(RecursiveDir)%(FileName)%(Extension)</TargetPath>
</NuGetSource>
- <NuSpecSource Include="DotNetOpenAuth.nuspec">
+ <NuSpecSource Include="DotNetOpenAuth.Ultimate.nuspec">
<LayoutPath>$(NuGetLayoutPath)</LayoutPath>
<BeforeTokens>$version$</BeforeTokens>
<AfterTokens>$(BuildVersion)</AfterTokens>
diff --git a/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs b/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
index 356c51f..8f61874 100644
--- a/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
+++ b/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
@@ -86,8 +86,8 @@ namespace DotNetOpenAuth.BuildTasks {
args.AppendSwitch("pack");
args.AppendFileNameIfNotNull(this.NuSpec);
- args.AppendSwitchIfNotNull("-b ", this.BaseDirectory);
- args.AppendSwitchIfNotNull("-o ", this.OutputPackageDirectory);
+ args.AppendSwitchIfNotNull("-BasePath ", this.BaseDirectory);
+ args.AppendSwitchIfNotNull("-OutputDirectory ", this.OutputPackageDirectory);
return args.ToString();
}
diff --git a/tools/NuGet/NuGet.exe b/tools/NuGet/NuGet.exe
index 907d24d..74d0d57 100644
--- a/tools/NuGet/NuGet.exe
+++ b/tools/NuGet/NuGet.exe
Binary files differ