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