Skip to content

Commit 935afe8

Browse files
committed
Fix up packaging.
1 parent d90dd97 commit 935afe8

File tree

6 files changed

+4
-7
lines changed

6 files changed

+4
-7
lines changed

lib/DotNetOpenAuth.BuildTasks.dll

2 KB
Binary file not shown.

lib/DotNetOpenAuth.BuildTasks.pdb

6 KB
Binary file not shown.

lib/DotNetOpenAuth.BuildTasks.targets

+1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@
3030
<UsingTask AssemblyFile="DotNetOpenAuth.BuildTasks.dll" TaskName="PrepareOhlohRelease" />
3131
<UsingTask AssemblyFile="DotNetOpenAuth.BuildTasks.dll" TaskName="AddFilesTo7Zip" />
3232
<UsingTask AssemblyFile="DotNetOpenAuth.BuildTasks.dll" TaskName="NuGetPack" />
33+
<UsingTask AssemblyFile="DotNetOpenAuth.BuildTasks.dll" TaskName="RegexFileReplace" />
3334
</Project>

nuget/DotNetOpenAuth.nuspec

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>DotNetOpenAuth</id>
5-
<version>$version$</version>
5+
<version>$version$-refresh3</version>
66
<authors>Andrew Arnott</authors>
77
<owners>Andrew Arnott</owners>
88
<projectUrl>http://www.dotnetopenauth.net/</projectUrl>
@@ -12,9 +12,5 @@
1212
<summary>OpenID, OAuth, &amp; InfoCard library for web sites/services and apps.</summary>
1313
<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>
1414
<language>en-US</language>
15-
<dependencies>
16-
<!-- optional -->
17-
<!--<dependency id="log4net" version="1.2.10" />-->
18-
</dependencies>
1915
</metadata>
2016
</package>

src/DotNetOpenAuth.BuildTasks/NuGetPack.cs

+2-2
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)