ignore all

This commit is contained in:
Tommy Parnell
2015-05-07 23:31:09 -04:00
parent 6055f16e91
commit 73a3afd61f
4 changed files with 15 additions and 0 deletions

8
Rakefile.rb Normal file
View File

@@ -0,0 +1,8 @@
# A rake task to build all packages in a folder
desc "Build the nuget packages"
task :package do
FileList["*.nuspec"].each do |spec|
sh "nuget pack #{spec} -Version %APPVEYOR_BUILD_VERSION%"
end
end