Sha256: 1beab84b2e0a9101ebb84ee0799cc487a4d723b33e0856f3f6d9e60bde46aa15

Contents?: true

Size: 607 Bytes

Versions: 6

Compression:

Stored size: 607 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.task_alias = 'client'
    t.instance = '(local)'
    t.name = 'MyDatabase'
    t.project = 'Basic.Migrations1\Basic.Migrations1.csproj'
  end

  s.fluently_migrate do |t|
    t.task_alias = 'server'
    t.instance = '(local)'
    t.name = 'MyDatabase'
    t.project = 'Basic.Migrations2\Basic.Migrations2.csproj'
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
physique-0.3.10 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb
physique-0.3.9 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb
physique-0.3.8 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb
physique-0.3.7 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb
physique-0.3.6 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb
physique-0.3.5 spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb