Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #32 from VQComms/nugetrestore
Browse files Browse the repository at this point in the history
Made the compile tasks depend on the nuget restore tasks
  • Loading branch information
thecodejunkie committed Mar 21, 2016
2 parents ae6fb57 + 36dd4c9 commit 3b6667f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rakefile.rb
Expand Up @@ -17,7 +17,7 @@
end

desc "Compiles solution and runs unit tests"
task :default => [:clean, :version, :nuget_restore, :compile, :xunit, :publish, :package]
task :default => [:clean, :version, :compile, :xunit, :publish, :package]

#Add the folders that should be cleaned as part of the clean task
CLEAN.include(OUTPUT)
Expand All @@ -38,7 +38,7 @@
end

desc "Compile solution file"
msbuild :compile => [:version] do |msb|
msbuild :compile => [:nuget_restore, :version] do |msb|
msb.properties :configuration => CONFIGURATION
msb.targets :Clean, :Build
msb.solution = SOLUTION_FILE
Expand Down

0 comments on commit 3b6667f

Please sign in to comment.