Skip to content

Commit 822eca6

Browse files
committedDec 4, 2009
Adding rake sln to launch sln file
1 parent 5a74d5d commit 822eca6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎RakeFile

+8-1
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,11 @@ task :coverage_for_inspection_dsl do
213213
'.*\.AcceptVisitor', # AcceptVisitor
214214
'.*\.I.*Alteration\..*'] # Any IXAlteration explicit implementations
215215
ncover.run
216-
end
216+
end
217+
218+
desc "Open solution in VS"
219+
task :sln do
220+
Thread.new do
221+
system "devenv src/FluentNHibernate.sln"
222+
end
223+
end

0 commit comments

Comments
 (0)
Please sign in to comment.