Skip to content

Commit e6bf065

Browse files
committed
Merge pull request #4 from Iristyle/master
Nuspec'd up
2 parents adcc7ae + adb442c commit e6bf065

37 files changed

Lines changed: 477 additions & 8231 deletions

.gitignore

Lines changed: 73 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,25 @@ latest/
55
/env-vars.bat
66
*.suo
77
#ignore thumbnails created by windows
8-
Thumbs.db
8+
[Tt]humbs.db
99
#Ignore files build by Visual Studio
10-
*.obj
10+
*.[Oo]bj
1111
*.exe
1212
*.pdb
1313
*.user
1414
*.aps
1515
*.pch
1616
*.vspscc
17+
*.scc
18+
*.*scc
1719
*_i.c
1820
*_p.c
1921
*.ncb
2022
*.suo
2123
*.tlb
2224
*.tlh
2325
*.bak
24-
*.cache
26+
*.[Cc]ache
2527
*.ilk
2628
*.log
2729
[Bb]in
@@ -31,6 +33,73 @@ Thumbs.db
3133
*.resharper.user
3234
obj/
3335
[Rr]elease*/
34-
_ReSharper*/
36+
_[Rr]e[Ss]harper*/
37+
*.resharper
3538
[Tt]est[Rr]esult*
3639
App_Data/
40+
*.tli
41+
*.sdf
42+
*.opensdf
43+
*.unsuccessfulbuild
44+
*.opt
45+
*.plg
46+
ipch/
47+
Ankh.Load
48+
Ankh.NoLoad
49+
*.vshost.*
50+
*.FileListAbsolute.txt
51+
*.clw
52+
*.eto
53+
*.vsmdi
54+
*.dbmdl
55+
*.dbproj.schemaview
56+
*DXCore.Solution
57+
*.sln.docstates
58+
*.fbpInf
59+
lint.db
60+
61+
#OS junk files
62+
*.DS_Store
63+
[Ii]ndex.dat
64+
[Ss]torage.dat
65+
66+
#ASP.NET
67+
[Pp]recompiled[Ww]eb/
68+
UpgradeLog*.*
69+
_[Uu]pgradeReport_[Ff]iles
70+
*.[Pp]ublish.xml
71+
72+
#Silverlight
73+
[Cc]lientBin/
74+
*.xap
75+
76+
#WCF
77+
*.svclog
78+
79+
#SSRS and SSMS
80+
*.rdl.data
81+
*.sqlsuo
82+
83+
#TFS Files
84+
*.nlb
85+
86+
#Other Source Control
87+
*.orig
88+
CVS/
89+
.svn
90+
91+
# Office Temp Files
92+
~$*
93+
94+
#NuGet
95+
packages/
96+
*.nupkg
97+
98+
#Miscellaneous Files
99+
*.exe
100+
*.fb6lck
101+
*.fbl6
102+
*.patch
103+
*.sig
104+
*.tmp
105+
Backup*

build/NuGetPack.ps1

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
param(
2+
[Parameter(Mandatory = $true, ValueFromPipeline = $true)]
3+
[string]
4+
$apiKey
5+
)
6+
7+
del *.nupkg
8+
9+
$nuget = '..\src\.nuget\nuget'
10+
11+
Get-ChildItem -Path .. -Include *.nuspec -Recurse | % { Start-Process $nuget -ArgumentList "pack $(Join-Path ([IO.Path]::GetDirectoryName($_)) ([IO.Path]::GetFileNameWithoutExtension($_) + '.csproj')) -Build -Prop Configuration=Release -Exclude '**\*.CodeAnalysisLog.xml'" -NoNewWindow -Wait }
12+
Get-ChildItem *.nupkg | % { &$nuget push $_ $apiKey }
13+
del *.nupkg

build/deploy.bat

Lines changed: 0 additions & 9 deletions
This file was deleted.
-323 KB
Binary file not shown.

lib/Elmah.dll

-172 KB
Binary file not shown.

lib/NLog.dll

-297 KB
Binary file not shown.

lib/ServiceStack.Interfaces.dll

-68 KB
Binary file not shown.

lib/log4net.dll

-264 KB
Binary file not shown.

lib/tests/Rhino.Mocks.dll

-254 KB
Binary file not shown.

0 commit comments

Comments
 (0)