Sha256: ca6b0667c3e374df065f3324bdf593be238313add5875c6b49a2e63ea367ed3e
Contents?: true
Size: 635 Bytes
Versions: 1
Compression:
Stored size: 635 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 = ENV['DATABASE_INSTANCE'] || '(local)' t.name = 'MyDatabase' t.project = 'Basic.Migrations1\Basic.Migrations1.csproj' end s.fluently_migrate do |t| t.task_alias = 'server' t.instance = ENV['DATABASE_INSTANCE'] || '(local)' t.name = 'MyDatabase' t.project = 'Basic.Migrations2\Basic.Migrations2.csproj' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
physique-0.4.0 | spec/test_data/solutions/multiple-fluent-migrator/Rakefile.rb |