Skip to content

Commit 64ccf5a

Browse files
committed
Created several NuGet packages.
Updated nuget.exe.
1 parent af21cda commit 64ccf5a

9 files changed

Lines changed: 61 additions & 4 deletions

lib/DotNetOpenAuth.BuildTasks.dll

512 Bytes
Binary file not shown.

lib/DotNetOpenAuth.BuildTasks.pdb

0 Bytes
Binary file not shown.

nuget/DotNetOpenAuth.Core.nuspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.Core</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth Core</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>Contains core assemblies of DotNetOpenOAuth library.</description>
11+
<frameworkAssemblies>
12+
<frameworkAssembly assemblyName="System.Configuration" targetFramework=".NETFramework4.0" />
13+
</frameworkAssemblies>
14+
</metadata>
15+
<files>
16+
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.Messaging.dll" target="lib\net40\DotNetOpenAuth.Messaging.dll" />
17+
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.dll" target="lib\net40\DotNetOpenAuth.OAuth.dll" />
18+
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.dll" target="lib\net40\DotNetOpenAuth.OpenId.dll" />
19+
</files>
20+
</package>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OAuth.Consumer</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OAuth 1.0(a) Consumer</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>Contains assemblies that are required to implement an OAuth consumer.</description>
11+
<dependencies>
12+
<dependency id="DotNetOpenAuth.Core" version="$version$" />
13+
</dependencies>
14+
</metadata>
15+
<files>
16+
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.Consumer.dll" target="lib\net40\DotNetOpenAuth.OAuth.Consumer.dll" />
17+
</files>
18+
</package>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OpenId.RelyingParty</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OpenID Relying Party</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>Contains assemblies that are required to implement an OpenID Relying Party.</description>
11+
<dependencies>
12+
<dependency id="DotNetOpenAuth.Core" version="$version$" />
13+
</dependencies>
14+
</metadata>
15+
<files>
16+
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.RelyingParty.dll" target="lib\net40\DotNetOpenAuth.OpenId.RelyingParty.dll" />
17+
</files>
18+
</package>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
<metadata>
44
<id>DotNetOpenAuth</id>
55
<version>$version$</version>
6+
<title>DotNetOpenAuth Ultimate</title>
67
<authors>Andrew Arnott</authors>
7-
<owners>Andrew Arnott</owners>
8+
<owners>Outercurve Foundation</owners>
89
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
910
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
1011
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>

nuget/nuget.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<TargetPath>$(NuGetLayoutPath)content\%(RecursiveDir)%(FileName)%(Extension)</TargetPath>
2828
</NuGetSource>
2929

30-
<NuSpecSource Include="DotNetOpenAuth.nuspec">
30+
<NuSpecSource Include="DotNetOpenAuth.Ultimate.nuspec">
3131
<LayoutPath>$(NuGetLayoutPath)</LayoutPath>
3232
<BeforeTokens>$version$</BeforeTokens>
3333
<AfterTokens>$(BuildVersion)</AfterTokens>

src/DotNetOpenAuth.BuildTasks/NuGetPack.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ protected override string GenerateCommandLineCommands() {
8686

8787
args.AppendSwitch("pack");
8888
args.AppendFileNameIfNotNull(this.NuSpec);
89-
args.AppendSwitchIfNotNull("-b ", this.BaseDirectory);
90-
args.AppendSwitchIfNotNull("-o ", this.OutputPackageDirectory);
89+
args.AppendSwitchIfNotNull("-BasePath ", this.BaseDirectory);
90+
args.AppendSwitchIfNotNull("-OutputDirectory ", this.OutputPackageDirectory);
9191

9292
return args.ToString();
9393
}

tools/NuGet/NuGet.exe

350 KB
Binary file not shown.

0 commit comments

Comments
 (0)