Sha256: f8a73d8dca398541551c4ed93bd234482e56e438f623cb5e9a62702abf4cbe60

Contents?: true

Size: 400 Bytes

Versions: 1

Compression:

Stored size: 400 Bytes

Contents

require 'physique'

Physique::Solution.new do |s|
  s.file = 'Basic.sln'

  s.use_nuget do |n|
    n.exe = '../.nuget/nuget.exe'
    n.restore_location = 'packages'
  end

  s.run_tests do |t|
    t.runner = :nspec
  end

  s.fluently_migrate do |t|
    t.instance = ENV['DATABASE_INSTANCE'] || '(local)'
    t.name = 'MyDatabase'
    t.project = 'Basic.Migrations/Basic.Migrations.csproj'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
physique-0.4.0 spec/test_data/solutions/fluent-migrator/Rakefile.rb