From 0fcb6f2c0a9579c6ce1bd193269410f6c6b851b9 Mon Sep 17 00:00:00 2001 From: Endel Dreyer Date: Sun, 2 Oct 2016 13:57:19 +0200 Subject: [PATCH] add config for nuget package. --- .gitignore | 82 ++++++++++++++++++++++++---------------------- FossilDelta.nuspec | 21 ++++++++++++ Makefile | 9 +++++ README.md | 2 +- 4 files changed, 73 insertions(+), 41 deletions(-) create mode 100644 FossilDelta.nuspec create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 7bbcfed..6f231df 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/FossilDelta.nuspec b/FossilDelta.nuspec new file mode 100644 index 0000000..12d34a3 --- /dev/null +++ b/FossilDelta.nuspec @@ -0,0 +1,21 @@ + + + + FossilDelta + 0.1.0 + FossilDelta + Endel Dreyer + Endel Dreyer + https://github.com/endel/FossilDelta/blob/master/LICENSE + https://github.com/endel/FossilDelta/ + false + An efficient delta compression algorithm written in C# + + Copyright 2016 Endel Dreyer + delta patch binary + + + + + + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..46dc605 --- /dev/null +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 5ebc0ea..c7ecff7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Other implementations: - [JavaScript](https://github.com/dchest/fossil-delta-js) -Installation (comming soon) +Installation --- ### NuGet Gallery