-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
73 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters