Skip to content

Commit

Permalink
add config for nuget package.
Browse files Browse the repository at this point in the history
  • Loading branch information
endel committed Oct 2, 2016
1 parent 87642e7 commit 0fcb6f2
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 41 deletions.
82 changes: 42 additions & 40 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,42 @@
#Autosave files
*~

#build
[Oo]bj/
[Bb]in/
packages/
TestResults/

# globs
Makefile.in
*.DS_Store
*.sln.cache
*.suo
*.cache
*.pidb
*.userprefs
*.usertasks
config.log
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.user
*.tar.gz
tarballs/
test-results/
Thumbs.db

#Mac bundle stuff
*.dmg
*.app

#resharper
*_Resharper.*
*.Resharper

#dotCover
*.dotCover
#Autosave files
*~

#build
[Oo]bj/
[Bb]in/
packages/
TestResults/
TestResult.xml
*.nupkg

# globs
Makefile.in
*.DS_Store
*.sln.cache
*.suo
*.cache
*.pidb
*.userprefs
*.usertasks
config.log
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.user
*.tar.gz
tarballs/
test-results/
Thumbs.db

#Mac bundle stuff
*.dmg
*.app

#resharper
*_Resharper.*
*.Resharper

#dotCover
*.dotCover
21 changes: 21 additions & 0 deletions FossilDelta.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<package>
<metadata>
<id>FossilDelta</id>
<version>0.1.0</version>
<title>FossilDelta</title>
<authors>Endel Dreyer</authors>
<owners>Endel Dreyer</owners>
<licenseUrl>https://github.com/endel/FossilDelta/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/endel/FossilDelta/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An efficient delta compression algorithm written in C#</description>
<releaseNotes></releaseNotes>
<copyright>Copyright 2016 Endel Dreyer</copyright>
<tags>delta patch binary</tags>
</metadata>
<files>
<file src="*.cs;Source/Properties/AssemblyInfo.cs" target="Source" />
<file src="Source/bin/Release/Delta.dll" target="lib/net35" />
</files>
</package>
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
default: none

none:
$(error "To publish the package, run `make publish`")

publish:
rm *.nupkg
nuget pack FossilDelta.nuspec
nuget push *.nupkg
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Other implementations:

- [JavaScript](https://github.com/dchest/fossil-delta-js)

Installation (comming soon)
Installation
---

### NuGet Gallery
Expand Down

0 comments on commit 0fcb6f2

Please sign in to comment.