Skip to content

Commit 56aa187

Browse files
committed
Fix NuGet Packaging
1 parent 6876d8d commit 56aa187

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

Build/ICSharpCode.SharpZipLib.nuspec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
<tags>Compression Library Zip GZip BZip2 Tar</tags>
2424
</metadata>
2525
<files>
26-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.dll" target="lib\Net45\" />
27-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.pdb" target="lib\Net45\" />
28-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.xml" target="lib\Net45\" />
29-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.dll" target="lib\dnx451\" />
30-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.pdb" target="lib\dnx451\" />
31-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.xml" target="lib\dnx451\" />
32-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.dll" target="lib\dnxcore50\" />
33-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.pdb" target="lib\dnxcore50\" />
34-
<file src="..\bin\Release\ICSharpCode.SharpZipLib.xml" target="lib\dnxcore50\" />
26+
<file src="ICSharpCode.SharpZipLib.dll" target="lib\Net45\" />
27+
<file src="ICSharpCode.SharpZipLib.pdb" target="lib\Net45\" />
28+
<file src="ICSharpCode.SharpZipLib.xml" target="lib\Net45\" />
29+
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnx451\" />
30+
<file src="ICSharpCode.SharpZipLib.pdb" target="lib\dnx451\" />
31+
<file src="ICSharpCode.SharpZipLib.xml" target="lib\dnx451\" />
32+
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnxcore50\" />
33+
<file src="ICSharpCode.SharpZipLib.pdb" target="lib\dnxcore50\" />
34+
<file src="ICSharpCode.SharpZipLib.xml" target="lib\dnxcore50\" />
3535
</files>
3636
</package>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ before_test:
156156

157157
# scripts to run after tests
158158
after_test:
159-
- cmd: nuget pack Build\ICSharpCode.SharpZipLib.nuspec -BasePath Build -OutputDirectory bin\Release
159+
- cmd: nuget pack Build\ICSharpCode.SharpZipLib.nuspec -BasePath bin\Release\ -OutputDirectory bin\Release\
160160
- cmd: packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"packages\NUnit.ConsoleRunner.3.2.1\tools\nunit3-console.exe" -targetargs:"--domain=Single ICSharpCode.SharpZipLib.Tests/bin/Release/ICSharpCode.SharpZipLib.Tests.dll --testlist=./ICSharpCode.SharpZipLib.Tests/PassingTests.txt" -output:coverage.xml
161161
- cmd: packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
162162

0 commit comments

Comments
 (0)