Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit cf2ac40

Browse files
committed
Fixed up all existing NuGet packages and added several more. All but UI dll's are now packaged in NuGet.
1 parent 94d3bb7 commit cf2ac40

21 files changed

Lines changed: 312 additions & 89 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: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@
1010
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
1111
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>Contains core assemblies of DotNetOpenOAuth library.</description>
13+
<summary>Contains core assemblies of DotNetOpenOAuth library.</summary>
14+
<description>Shared library implementing the messaging pipeline used by auxiliary DotNetOpenAuth libraries.</description>
15+
<language>en-US</language>
1416
<frameworkAssemblies>
15-
<frameworkAssembly assemblyName="System.Configuration" targetFramework=".NETFramework4.0" />
17+
<frameworkAssembly assemblyName="System.Configuration" targetFramework="net40" />
1618
</frameworkAssemblies>
1719
</metadata>
1820
<files>
19-
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.Messaging.dll" target="lib\net40\DotNetOpenAuth.Messaging.dll" />
20-
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.dll" target="lib\net40\DotNetOpenAuth.OAuth.dll" />
21-
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.dll" target="lib\net40\DotNetOpenAuth.OpenId.dll" />
21+
<file src="$OutputPath35$signed\DotNetOpenAuth.Core.dll" target="lib\net35-full\DotNetOpenAuth.Core.dll" />
22+
<file src="$OutputPath40$signed\DotNetOpenAuth.Core.dll" target="lib\net40-full\DotNetOpenAuth.Core.dll" />
23+
24+
<file src="$OutputPath35$DotNetOpenAuth.Core.xml" target="lib\net35-full\DotNetOpenAuth.Core.xml" />
25+
<file src="$OutputPath40$DotNetOpenAuth.Core.xml" target="lib\net40-full\DotNetOpenAuth.Core.xml" />
26+
27+
<file src="content\Core\web.config.transform" target="content\web.config.transform" />
2228
</files>
2329
</package>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.InfoCard</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth InfoCard</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10+
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
11+
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Contains assemblies that are required to implement an InfoCard relying party.</description>
14+
<dependencies>
15+
<dependency id="DotNetOpenAuth.Core" version="[$version$]" />
16+
</dependencies>
17+
</metadata>
18+
<files>
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.InfoCard.dll" target="lib\net35-full\DotNetOpenAuth.InfoCard.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.InfoCard.dll" target="lib\net40-full\DotNetOpenAuth.InfoCard.dll" />
21+
<file src="$OutputPath35$DotNetOpenAuth.InfoCard.xml" target="lib\net35-full\DotNetOpenAuth.InfoCard.xml" />
22+
<file src="$OutputPath40$DotNetOpenAuth.InfoCard.xml" target="lib\net40-full\DotNetOpenAuth.InfoCard.xml" />
23+
</files>
24+
</package>

nuget/DotNetOpenAuth.OAuth.Consumer.nuspec

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>Contains assemblies that are required to implement an OAuth consumer.</description>
1414
<dependencies>
15-
<dependency id="DotNetOpenAuth.Core" version="$version$" />
15+
<dependency id="DotNetOpenAuth.OAuth.Core" version="[$version$]" />
1616
</dependencies>
1717
</metadata>
1818
<files>
19-
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OAuth.Consumer.dll" target="lib\net40\DotNetOpenAuth.OAuth.Consumer.dll" />
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OAuth.Consumer.dll" target="lib\net35-full\DotNetOpenAuth.OAuth.Consumer.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OAuth.Consumer.dll" target="lib\net40-full\DotNetOpenAuth.OAuth.Consumer.dll" />
21+
22+
<file src="$OutputPath35$DotNetOpenAuth.OAuth.Consumer.xml" target="lib\net35-full\DotNetOpenAuth.OAuth.Consumer.xml" />
23+
<file src="$OutputPath40$DotNetOpenAuth.OAuth.Consumer.xml" target="lib\net40-full\DotNetOpenAuth.OAuth.Consumer.xml" />
2024
</files>
2125
</package>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OAuth.Core</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OAuth 1.0(a)</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10+
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
11+
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Contains assemblies that are required to implement an OAuth consumer or service provider.</description>
14+
<dependencies>
15+
<dependency id="DotNetOpenAuth.Core" version="[$version$]" />
16+
</dependencies>
17+
</metadata>
18+
<files>
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OAuth.dll" target="lib\net35-full\DotNetOpenAuth.OAuth.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OAuth.dll" target="lib\net40-full\DotNetOpenAuth.OAuth.dll" />
21+
22+
<file src="$OutputPath35$DotNetOpenAuth.OAuth.xml" target="lib\net35-full\DotNetOpenAuth.OAuth.xml" />
23+
<file src="$OutputPath40$DotNetOpenAuth.OAuth.xml" target="lib\net40-full\DotNetOpenAuth.OAuth.xml" />
24+
25+
<file src="content\OAuth.Core\web.config.transform" target="content\web.config.transform" />
26+
</files>
27+
</package>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OAuth.ServiceProvider</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OAuth 1.0(a) Service Provider</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10+
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
11+
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Contains assemblies that are required to implement an OAuth consumer.</description>
14+
<dependencies>
15+
<dependency id="DotNetOpenAuth.OAuth.Core" version="[$version$]" />
16+
</dependencies>
17+
</metadata>
18+
<files>
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OAuth.ServiceProvider.dll" target="lib\net35-full\DotNetOpenAuth.OAuth.ServiceProvider.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OAuth.ServiceProvider.dll" target="lib\net40-full\DotNetOpenAuth.OAuth.ServiceProvider.dll" />
21+
22+
<file src="$OutputPath35$DotNetOpenAuth.OAuth.ServiceProvider.xml" target="lib\net35-full\DotNetOpenAuth.OAuth.ServiceProvider.xml" />
23+
<file src="$OutputPath40$DotNetOpenAuth.OAuth.ServiceProvider.xml" target="lib\net40-full\DotNetOpenAuth.OAuth.ServiceProvider.xml" />
24+
</files>
25+
</package>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OpenId.Core</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OpenID Core</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10+
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
11+
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Contains assemblies that are required to implement an OpenID Relying Party or Provider.</description>
14+
<dependencies>
15+
<dependency id="DotNetOpenAuth.Core" version="[$version$]" />
16+
</dependencies>
17+
</metadata>
18+
<files>
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OpenId.dll" target="lib\net35-full\DotNetOpenAuth.OpenId.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OpenId.dll" target="lib\net40-full\DotNetOpenAuth.OpenId.dll" />
21+
<file src="$OutputPath35$DotNetOpenAuth.OpenId.xml" target="lib\net35-full\DotNetOpenAuth.OpenId.xml" />
22+
<file src="$OutputPath40$DotNetOpenAuth.OpenId.xml" target="lib\net40-full\DotNetOpenAuth.OpenId.xml" />
23+
24+
<file src="$OutputPath35$signed\Org.Mentalis.Security.Cryptography.dll" target="lib\net35-full\Org.Mentalis.Security.Cryptography.dll" />
25+
<file src="$OutputPath40$signed\Org.Mentalis.Security.Cryptography.dll" target="lib\net40-full\Org.Mentalis.Security.Cryptography.dll" />
26+
<file src="$OutputPath35$Org.Mentalis.Security.Cryptography.xml" target="lib\net35-full\Org.Mentalis.Security.Cryptography.xml" />
27+
<file src="$OutputPath40$Org.Mentalis.Security.Cryptography.xml" target="lib\net40-full\Org.Mentalis.Security.Cryptography.xml" />
28+
29+
<file src="$OutputPath35$signed\Mono.Math.dll" target="lib\net35-full\Mono.Math.dll" />
30+
<file src="$OutputPath40$signed\Mono.Math.dll" target="lib\net40-full\Mono.Math.dll" />
31+
<file src="$OutputPath35$Mono.Math.xml" target="lib\net35-full\Mono.Math.xml" />
32+
<file src="$OutputPath40$Mono.Math.xml" target="lib\net40-full\Mono.Math.xml" />
33+
34+
<file src="content\OpenId.Core\web.config.transform" target="content\web.config.transform" />
35+
</files>
36+
</package>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>DotNetOpenAuth.OpenId.Provider</id>
5+
<version>$version$</version>
6+
<title>DotNetOpenAuth OpenID Provider</title>
7+
<authors>Andrew Arnott</authors>
8+
<owners>Outercurve Foundation</owners>
9+
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
10+
<iconUrl>https://github.com/AArnott/dotnetopenid/raw/v3.4/doc/logo/dnoa-logo_32x32.png</iconUrl>
11+
<licenseUrl>http://www.opensource.org/licenses/ms-pl.html</licenseUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Contains assemblies that are required to implement an OpenID Provider.</description>
14+
<dependencies>
15+
<dependency id="DotNetOpenAuth.OpenId.Core" version="[$version$]" />
16+
</dependencies>
17+
</metadata>
18+
<files>
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OpenId.Provider.dll" target="lib\net35-full\DotNetOpenAuth.OpenId.Provider.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OpenId.Provider.dll" target="lib\net40-full\DotNetOpenAuth.OpenId.Provider.dll" />
21+
22+
<file src="$OutputPath35$DotNetOpenAuth.OpenId.Provider.xml" target="lib\net35-full\DotNetOpenAuth.OpenId.Provider.xml" />
23+
<file src="$OutputPath40$DotNetOpenAuth.OpenId.Provider.xml" target="lib\net40-full\DotNetOpenAuth.OpenId.Provider.xml" />
24+
25+
<file src="content\OpenId.Provider\web.config.transform" target="content\web.config.transform" />
26+
</files>
27+
</package>

nuget/DotNetOpenAuth.OpenId.RelyingParty.nuspec

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>Contains assemblies that are required to implement an OpenID Relying Party.</description>
1414
<dependencies>
15-
<dependency id="DotNetOpenAuth.Core" version="$version$" />
15+
<dependency id="DotNetOpenAuth.OpenId.Core" version="[$version$]" />
1616
</dependencies>
1717
</metadata>
1818
<files>
19-
<file src="..\..\bin\v4.0\Release\DotNetOpenAuth.OpenId.RelyingParty.dll" target="lib\net40\DotNetOpenAuth.OpenId.RelyingParty.dll" />
19+
<file src="$OutputPath35$signed\DotNetOpenAuth.OpenId.RelyingParty.dll" target="lib\net35-full\DotNetOpenAuth.OpenId.RelyingParty.dll" />
20+
<file src="$OutputPath40$signed\DotNetOpenAuth.OpenId.RelyingParty.dll" target="lib\net40-full\DotNetOpenAuth.OpenId.RelyingParty.dll" />
21+
22+
<file src="$OutputPath35$DotNetOpenAuth.OpenId.RelyingParty.xml" target="lib\net35-full\DotNetOpenAuth.OpenId.RelyingParty.xml" />
23+
<file src="$OutputPath40$DotNetOpenAuth.OpenId.RelyingParty.xml" target="lib\net40-full\DotNetOpenAuth.OpenId.RelyingParty.xml" />
24+
25+
<file src="content\OpenId.RelyingParty\web.config.transform" target="content\web.config.transform" />
2026
</files>
2127
</package>

0 commit comments

Comments
 (0)